1
0

conf: storage: use #pragma once in headers

Signed-off-by: Jonathon Jongsma <jjongsma@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Jonathon Jongsma 2019-06-07 15:20:20 -05:00 committed by Ján Tomko
parent 787be820f3
commit 5ef190a4d2
5 changed files with 31 additions and 47 deletions

View File

@ -17,12 +17,11 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBVIRT_STORAGE_ADAPTER_CONF_H #pragma once
# define LIBVIRT_STORAGE_ADAPTER_CONF_H
# include "virpci.h" #include "virpci.h"
# include "virxml.h" #include "virxml.h"
# include "virenum.h" #include "virenum.h"
typedef enum { typedef enum {
@ -81,5 +80,3 @@ virStorageAdapterValidate(virStorageAdapterPtr adapter);
void void
virStorageAdapterFormat(virBufferPtr buf, virStorageAdapterFormat(virBufferPtr buf,
virStorageAdapterPtr adapter); virStorageAdapterPtr adapter);
#endif /* LIBVIRT_STORAGE_ADAPTER_CONF_H */

View File

@ -18,10 +18,9 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBVIRT_STORAGE_CAPABILITIES_H #pragma once
# define LIBVIRT_STORAGE_CAPABILITIES_H
# include "internal.h" #include "internal.h"
typedef struct _virStoragePoolCaps virStoragePoolCaps; typedef struct _virStoragePoolCaps virStoragePoolCaps;
typedef virStoragePoolCaps *virStoragePoolCapsPtr; typedef virStoragePoolCaps *virStoragePoolCapsPtr;
@ -36,6 +35,3 @@ virStoragePoolCapsNew(virCapsPtr driverCaps);
char * char *
virStoragePoolCapsFormat(virStoragePoolCapsPtr const caps); virStoragePoolCapsFormat(virStoragePoolCapsPtr const caps);
#endif /* LIBVIRT_STORAGE_CAPABILITIES_H */

View File

@ -19,21 +19,20 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBVIRT_STORAGE_CONF_H #pragma once
# define LIBVIRT_STORAGE_CONF_H
# include "internal.h" #include "internal.h"
# include "virstorageencryption.h" #include "virstorageencryption.h"
# include "virstoragefile.h" #include "virstoragefile.h"
# include "virbitmap.h" #include "virbitmap.h"
# include "virthread.h" #include "virthread.h"
# include "device_conf.h" #include "device_conf.h"
# include "object_event.h" #include "object_event.h"
# include "storage_adapter_conf.h" #include "storage_adapter_conf.h"
# include "virautoclean.h" #include "virautoclean.h"
# include "virenum.h" #include "virenum.h"
# include <libxml/tree.h> #include <libxml/tree.h>
/* Various callbacks needed to parse/create Storage Pool XML's using /* Various callbacks needed to parse/create Storage Pool XML's using
* a private namespace */ * a private namespace */
@ -460,19 +459,19 @@ typedef enum {
} virStoragePartedFsType; } virStoragePartedFsType;
VIR_ENUM_DECL(virStoragePartedFs); VIR_ENUM_DECL(virStoragePartedFs);
# define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ACTIVE \ #define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ACTIVE \
(VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE | \ (VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE | \
VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE) VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE)
# define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_PERSISTENT \ #define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_PERSISTENT \
(VIR_CONNECT_LIST_STORAGE_POOLS_PERSISTENT | \ (VIR_CONNECT_LIST_STORAGE_POOLS_PERSISTENT | \
VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT) VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT)
# define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_AUTOSTART \ #define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_AUTOSTART \
(VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART | \ (VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART | \
VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART) VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART)
# define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_POOL_TYPE \ #define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_POOL_TYPE \
(VIR_CONNECT_LIST_STORAGE_POOLS_DIR | \ (VIR_CONNECT_LIST_STORAGE_POOLS_DIR | \
VIR_CONNECT_LIST_STORAGE_POOLS_FS | \ VIR_CONNECT_LIST_STORAGE_POOLS_FS | \
VIR_CONNECT_LIST_STORAGE_POOLS_NETFS | \ VIR_CONNECT_LIST_STORAGE_POOLS_NETFS | \
@ -487,7 +486,7 @@ VIR_ENUM_DECL(virStoragePartedFs);
VIR_CONNECT_LIST_STORAGE_POOLS_ZFS | \ VIR_CONNECT_LIST_STORAGE_POOLS_ZFS | \
VIR_CONNECT_LIST_STORAGE_POOLS_VSTORAGE) VIR_CONNECT_LIST_STORAGE_POOLS_VSTORAGE)
# define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ALL \ #define VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ALL \
(VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ACTIVE | \ (VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_ACTIVE | \
VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_PERSISTENT | \ VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_PERSISTENT | \
VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_AUTOSTART | \ VIR_CONNECT_LIST_STORAGE_POOLS_FILTERS_AUTOSTART | \
@ -496,5 +495,3 @@ VIR_ENUM_DECL(virStoragePartedFs);
VIR_DEFINE_AUTOPTR_FUNC(virStoragePoolSource, virStoragePoolSourceFree); VIR_DEFINE_AUTOPTR_FUNC(virStoragePoolSource, virStoragePoolSourceFree);
VIR_DEFINE_AUTOPTR_FUNC(virStoragePoolDef, virStoragePoolDefFree); VIR_DEFINE_AUTOPTR_FUNC(virStoragePoolDef, virStoragePoolDefFree);
VIR_DEFINE_AUTOPTR_FUNC(virStorageVolDef, virStorageVolDefFree); VIR_DEFINE_AUTOPTR_FUNC(virStorageVolDef, virStorageVolDefFree);
#endif /* LIBVIRT_STORAGE_CONF_H */

View File

@ -20,12 +20,11 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBVIRT_STORAGE_EVENT_H #pragma once
# define LIBVIRT_STORAGE_EVENT_H
# include "internal.h" #include "internal.h"
# include "object_event.h" #include "object_event.h"
# include "object_event_private.h" #include "object_event_private.h"
int int
virStoragePoolEventStateRegisterID(virConnectPtr conn, virStoragePoolEventStateRegisterID(virConnectPtr conn,
@ -60,5 +59,3 @@ virStoragePoolEventLifecycleNew(const char *name,
virObjectEventPtr virObjectEventPtr
virStoragePoolEventRefreshNew(const char *name, virStoragePoolEventRefreshNew(const char *name,
const unsigned char *uuid); const unsigned char *uuid);
#endif /* LIBVIRT_STORAGE_EVENT_H */

View File

@ -17,14 +17,13 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBVIRT_VIRSTORAGEOBJ_H #pragma once
# define LIBVIRT_VIRSTORAGEOBJ_H
# include "internal.h" #include "internal.h"
# include "storage_conf.h" #include "storage_conf.h"
# include "capabilities.h" #include "capabilities.h"
typedef struct _virStoragePoolObj virStoragePoolObj; typedef struct _virStoragePoolObj virStoragePoolObj;
typedef virStoragePoolObj *virStoragePoolObjPtr; typedef virStoragePoolObj *virStoragePoolObjPtr;
@ -256,5 +255,3 @@ virStoragePoolObjListExport(virConnectPtr conn,
virStoragePoolPtr **pools, virStoragePoolPtr **pools,
virStoragePoolObjListFilter filter, virStoragePoolObjListFilter filter,
unsigned int flags); unsigned int flags);
#endif /* LIBVIRT_VIRSTORAGEOBJ_H */