src/internal.h: use #pragma once

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:27 -05:00 committed by Ján Tomko
parent e31f3df7ca
commit 127b79f77f

View File

@ -18,101 +18,100 @@
* <http://www.gnu.org/licenses/>. * <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBVIRT_INTERNAL_H #pragma once
# define LIBVIRT_INTERNAL_H
# include <errno.h> #include <errno.h>
# include <limits.h> #include <limits.h>
# include <verify.h> #include <verify.h>
# include <stdbool.h> #include <stdbool.h>
# include <stdint.h> #include <stdint.h>
# include <stdio.h> #include <stdio.h>
# include <string.h> #include <string.h>
# if STATIC_ANALYSIS #if STATIC_ANALYSIS
# undef NDEBUG /* Don't let a prior NDEBUG definition cause trouble. */ # undef NDEBUG /* Don't let a prior NDEBUG definition cause trouble. */
# include <assert.h> # include <assert.h>
# define sa_assert(expr) assert (expr) # define sa_assert(expr) assert (expr)
# else #else
# define sa_assert(expr) /* empty */ # define sa_assert(expr) /* empty */
# endif #endif
/* The library itself is allowed to use deprecated functions / /* The library itself is allowed to use deprecated functions /
* variables, so effectively undefine the deprecated attribute * variables, so effectively undefine the deprecated attribute
* which would otherwise be defined in libvirt.h. * which would otherwise be defined in libvirt.h.
*/ */
# undef VIR_DEPRECATED #undef VIR_DEPRECATED
# define VIR_DEPRECATED /*empty*/ #define VIR_DEPRECATED /*empty*/
/* The library itself needs to know enum sizes. */ /* The library itself needs to know enum sizes. */
# define VIR_ENUM_SENTINELS #define VIR_ENUM_SENTINELS
# ifdef HAVE_LIBINTL_H #ifdef HAVE_LIBINTL_H
# define DEFAULT_TEXT_DOMAIN PACKAGE # define DEFAULT_TEXT_DOMAIN PACKAGE
# include <libintl.h> # include <libintl.h>
# define _(str) dgettext(PACKAGE, str) # define _(str) dgettext(PACKAGE, str)
# else /* HAVE_LIBINTL_H */ #else /* HAVE_LIBINTL_H */
# define _(str) str # define _(str) str
# endif /* HAVE_LIBINTL_H */ #endif /* HAVE_LIBINTL_H */
# define N_(str) str #define N_(str) str
# include "libvirt/libvirt.h" #include "libvirt/libvirt.h"
# include "libvirt/libvirt-lxc.h" #include "libvirt/libvirt-lxc.h"
# include "libvirt/libvirt-qemu.h" #include "libvirt/libvirt-qemu.h"
# include "libvirt/libvirt-admin.h" #include "libvirt/libvirt-admin.h"
# include "libvirt/virterror.h" #include "libvirt/virterror.h"
# include "c-strcase.h" #include "c-strcase.h"
# include "ignore-value.h" #include "ignore-value.h"
# include "count-leading-zeros.h" #include "count-leading-zeros.h"
/* String equality tests, suggested by Jim Meyering. */ /* String equality tests, suggested by Jim Meyering. */
# define STREQ(a, b) (strcmp(a, b) == 0) #define STREQ(a, b) (strcmp(a, b) == 0)
# define STRCASEEQ(a, b) (c_strcasecmp(a, b) == 0) #define STRCASEEQ(a, b) (c_strcasecmp(a, b) == 0)
# define STRNEQ(a, b) (strcmp(a, b) != 0) #define STRNEQ(a, b) (strcmp(a, b) != 0)
# define STRCASENEQ(a, b) (c_strcasecmp(a, b) != 0) #define STRCASENEQ(a, b) (c_strcasecmp(a, b) != 0)
# define STREQLEN(a, b, n) (strncmp(a, b, n) == 0) #define STREQLEN(a, b, n) (strncmp(a, b, n) == 0)
# define STRCASEEQLEN(a, b, n) (c_strncasecmp(a, b, n) == 0) #define STRCASEEQLEN(a, b, n) (c_strncasecmp(a, b, n) == 0)
# define STRNEQLEN(a, b, n) (strncmp(a, b, n) != 0) #define STRNEQLEN(a, b, n) (strncmp(a, b, n) != 0)
# define STRCASENEQLEN(a, b, n) (c_strncasecmp(a, b, n) != 0) #define STRCASENEQLEN(a, b, n) (c_strncasecmp(a, b, n) != 0)
# define STRPREFIX(a, b) (strncmp(a, b, strlen(b)) == 0) #define STRPREFIX(a, b) (strncmp(a, b, strlen(b)) == 0)
# define STRCASEPREFIX(a, b) (c_strncasecmp(a, b, strlen(b)) == 0) #define STRCASEPREFIX(a, b) (c_strncasecmp(a, b, strlen(b)) == 0)
# define STRSKIP(a, b) (STRPREFIX(a, b) ? (a) + strlen(b) : NULL) #define STRSKIP(a, b) (STRPREFIX(a, b) ? (a) + strlen(b) : NULL)
# define STREQ_NULLABLE(a, b) \ #define STREQ_NULLABLE(a, b) \
((a) ? (b) && STREQ((a), (b)) : !(b)) ((a) ? (b) && STREQ((a), (b)) : !(b))
# define STRNEQ_NULLABLE(a, b) \ #define STRNEQ_NULLABLE(a, b) \
((a) ? !(b) || STRNEQ((a), (b)) : !!(b)) ((a) ? !(b) || STRNEQ((a), (b)) : !!(b))
# define NUL_TERMINATE(buf) do { (buf)[sizeof(buf)-1] = '\0'; } while (0) #define NUL_TERMINATE(buf) do { (buf)[sizeof(buf)-1] = '\0'; } while (0)
# define ARRAY_CARDINALITY(Array) (sizeof(Array) / sizeof(*(Array))) #define ARRAY_CARDINALITY(Array) (sizeof(Array) / sizeof(*(Array)))
/** /**
* ATTRIBUTE_UNUSED: * ATTRIBUTE_UNUSED:
* *
* Macro to flag consciously unused parameters to functions * Macro to flag consciously unused parameters to functions
*/ */
# ifndef ATTRIBUTE_UNUSED #ifndef ATTRIBUTE_UNUSED
# define ATTRIBUTE_UNUSED __attribute__((__unused__)) # define ATTRIBUTE_UNUSED __attribute__((__unused__))
# endif #endif
/** /**
* ATTRIBUTE_NORETURN: * ATTRIBUTE_NORETURN:
* *
* Macro to indicate that a function won't return to the caller * Macro to indicate that a function won't return to the caller
*/ */
# ifndef ATTRIBUTE_NORETURN #ifndef ATTRIBUTE_NORETURN
# define ATTRIBUTE_NORETURN __attribute__((__noreturn__)) # define ATTRIBUTE_NORETURN __attribute__((__noreturn__))
# endif #endif
/** /**
* ATTRIBUTE_SENTINEL: * ATTRIBUTE_SENTINEL:
* *
* Macro to check for NULL-terminated varargs lists * Macro to check for NULL-terminated varargs lists
*/ */
# ifndef ATTRIBUTE_SENTINEL #ifndef ATTRIBUTE_SENTINEL
# define ATTRIBUTE_SENTINEL __attribute__((__sentinel__)) # define ATTRIBUTE_SENTINEL __attribute__((__sentinel__))
# endif #endif
/** /**
* ATTRIBUTE_NOINLINE: * ATTRIBUTE_NOINLINE:
@ -120,9 +119,9 @@
* Force compiler not to inline a method. Should be used if * Force compiler not to inline a method. Should be used if
* the method need to be overridable by test mocks. * the method need to be overridable by test mocks.
*/ */
# ifndef ATTRIBUTE_NOINLINE #ifndef ATTRIBUTE_NOINLINE
# define ATTRIBUTE_NOINLINE __attribute__((__noinline__)) # define ATTRIBUTE_NOINLINE __attribute__((__noinline__))
# endif #endif
/** /**
* ATTRIBUTE_FMT_PRINTF * ATTRIBUTE_FMT_PRINTF
@ -134,7 +133,7 @@
* printf format specifiers even on broken Win32 platforms * printf format specifiers even on broken Win32 platforms
* hence we have to force 'gnu_printf' for new GCC * hence we have to force 'gnu_printf' for new GCC
*/ */
# ifndef ATTRIBUTE_FMT_PRINTF #ifndef ATTRIBUTE_FMT_PRINTF
# ifndef __clang__ # ifndef __clang__
# define ATTRIBUTE_FMT_PRINTF(fmtpos, argpos) \ # define ATTRIBUTE_FMT_PRINTF(fmtpos, argpos) \
__attribute__((__format__ (__gnu_printf__, fmtpos, argpos))) __attribute__((__format__ (__gnu_printf__, fmtpos, argpos)))
@ -142,11 +141,11 @@
# define ATTRIBUTE_FMT_PRINTF(fmtpos, argpos) \ # define ATTRIBUTE_FMT_PRINTF(fmtpos, argpos) \
__attribute__((__format__ (__printf__, fmtpos, argpos))) __attribute__((__format__ (__printf__, fmtpos, argpos)))
# endif # endif
# endif #endif
# ifndef ATTRIBUTE_RETURN_CHECK #ifndef ATTRIBUTE_RETURN_CHECK
# define ATTRIBUTE_RETURN_CHECK __attribute__((__warn_unused_result__)) # define ATTRIBUTE_RETURN_CHECK __attribute__((__warn_unused_result__))
# endif #endif
/** /**
* ATTRIBUTE_PACKED * ATTRIBUTE_PACKED
@ -157,9 +156,9 @@
* ethernet packets. * ethernet packets.
* Others compiler than gcc may use something different e.g. #pragma pack(1) * Others compiler than gcc may use something different e.g. #pragma pack(1)
*/ */
# ifndef ATTRIBUTE_PACKED #ifndef ATTRIBUTE_PACKED
# define ATTRIBUTE_PACKED __attribute__((packed)) # define ATTRIBUTE_PACKED __attribute__((packed))
# endif #endif
/* gcc's handling of attribute nonnull is less than stellar - it does /* gcc's handling of attribute nonnull is less than stellar - it does
* NOT improve diagnostics, and merely allows gcc to optimize away * NOT improve diagnostics, and merely allows gcc to optimize away
@ -170,23 +169,23 @@
* based on whether we are compiling for real or for analysis, while * based on whether we are compiling for real or for analysis, while
* still requiring correct gcc syntax when it is turned off. See also * still requiring correct gcc syntax when it is turned off. See also
* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17308 */ * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17308 */
# ifndef ATTRIBUTE_NONNULL #ifndef ATTRIBUTE_NONNULL
# if STATIC_ANALYSIS # if STATIC_ANALYSIS
# define ATTRIBUTE_NONNULL(m) __attribute__((__nonnull__(m))) # define ATTRIBUTE_NONNULL(m) __attribute__((__nonnull__(m)))
# else # else
# define ATTRIBUTE_NONNULL(m) __attribute__(()) # define ATTRIBUTE_NONNULL(m) __attribute__(())
# endif # endif
# endif #endif
# ifndef ATTRIBUTE_FALLTHROUGH #ifndef ATTRIBUTE_FALLTHROUGH
# if __GNUC_PREREQ (7, 0) # if __GNUC_PREREQ (7, 0)
# define ATTRIBUTE_FALLTHROUGH __attribute__((fallthrough)) # define ATTRIBUTE_FALLTHROUGH __attribute__((fallthrough))
# else # else
# define ATTRIBUTE_FALLTHROUGH do {} while(0) # define ATTRIBUTE_FALLTHROUGH do {} while(0)
# endif # endif
# endif #endif
# if WORKING_PRAGMA_PUSH #if WORKING_PRAGMA_PUSH
# define VIR_WARNINGS_NO_CAST_ALIGN \ # define VIR_WARNINGS_NO_CAST_ALIGN \
_Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wcast-align\"") _Pragma ("GCC diagnostic ignored \"-Wcast-align\"")
@ -217,50 +216,50 @@
# define VIR_WARNINGS_RESET \ # define VIR_WARNINGS_RESET \
_Pragma ("GCC diagnostic pop") _Pragma ("GCC diagnostic pop")
# else #else
# define VIR_WARNINGS_NO_CAST_ALIGN # define VIR_WARNINGS_NO_CAST_ALIGN
# define VIR_WARNINGS_NO_DEPRECATED # define VIR_WARNINGS_NO_DEPRECATED
# define VIR_WARNINGS_NO_PRINTF # define VIR_WARNINGS_NO_PRINTF
# define VIR_WARNINGS_NO_WLOGICALOP_EQUAL_EXPR # define VIR_WARNINGS_NO_WLOGICALOP_EQUAL_EXPR
# define VIR_WARNINGS_RESET # define VIR_WARNINGS_RESET
# endif #endif
/* Workaround bogus GCC < 4.6 that produces false -Wlogical-op warnings for /* Workaround bogus GCC < 4.6 that produces false -Wlogical-op warnings for
* strchr(). Those old GCCs don't support push/pop. */ * strchr(). Those old GCCs don't support push/pop. */
# if BROKEN_GCC_WLOGICALOP_STRCHR #if BROKEN_GCC_WLOGICALOP_STRCHR
# define VIR_WARNINGS_NO_WLOGICALOP_STRCHR \ # define VIR_WARNINGS_NO_WLOGICALOP_STRCHR \
_Pragma ("GCC diagnostic ignored \"-Wlogical-op\"") _Pragma ("GCC diagnostic ignored \"-Wlogical-op\"")
# else #else
# define VIR_WARNINGS_NO_WLOGICALOP_STRCHR # define VIR_WARNINGS_NO_WLOGICALOP_STRCHR
# endif #endif
/* /*
* Use this when passing possibly-NULL strings to printf-a-likes. * Use this when passing possibly-NULL strings to printf-a-likes.
*/ */
# define NULLSTR(s) ((s) ? (s) : "<null>") #define NULLSTR(s) ((s) ? (s) : "<null>")
/* /*
* Turn a NULL string into an empty string * Turn a NULL string into an empty string
*/ */
# define NULLSTR_EMPTY(s) ((s) ? (s) : "") #define NULLSTR_EMPTY(s) ((s) ? (s) : "")
/* /*
* Turn a NULL string into a star * Turn a NULL string into a star
*/ */
# define NULLSTR_STAR(s) ((s) ? (s) : "*") #define NULLSTR_STAR(s) ((s) ? (s) : "*")
/* /*
* Turn a NULL string into a minus sign * Turn a NULL string into a minus sign
*/ */
# define NULLSTR_MINUS(s) ((s) ? (s) : "-") #define NULLSTR_MINUS(s) ((s) ? (s) : "-")
/** /**
* SWAP: * SWAP:
* *
* In place exchange of two values * In place exchange of two values
*/ */
# define SWAP(a, b) \ #define SWAP(a, b) \
do { \ do { \
(a) = (a) ^ (b); \ (a) = (a) ^ (b); \
(b) = (a) ^ (b); \ (b) = (a) ^ (b); \
@ -273,7 +272,7 @@
* Steals pointer passed as second argument into the first argument. Second * Steals pointer passed as second argument into the first argument. Second
* argument must not have side effects. * argument must not have side effects.
*/ */
# define VIR_STEAL_PTR(a, b) \ #define VIR_STEAL_PTR(a, b) \
do { \ do { \
(a) = (b); \ (a) = (b); \
(b) = NULL; \ (b) = NULL; \
@ -287,7 +286,7 @@
* freed by using VIR_AUTOPTR can be easily passed back to the caller without * freed by using VIR_AUTOPTR can be easily passed back to the caller without
* any temporary variable. @ptr is evaluated more than once. * any temporary variable. @ptr is evaluated more than once.
*/ */
# define VIR_RETURN_PTR(ptr) \ #define VIR_RETURN_PTR(ptr) \
do { \ do { \
typeof(ptr) virTemporaryReturnPointer = (ptr); \ typeof(ptr) virTemporaryReturnPointer = (ptr); \
(ptr) = NULL; \ (ptr) = NULL; \
@ -305,7 +304,7 @@
* Returns nothing. Exits the caller function if unsupported flags were * Returns nothing. Exits the caller function if unsupported flags were
* passed to it. * passed to it.
*/ */
# define virCheckFlags(supported, retval) \ #define virCheckFlags(supported, retval) \
do { \ do { \
unsigned long __unsuppflags = flags & ~(supported); \ unsigned long __unsuppflags = flags & ~(supported); \
if (__unsuppflags) { \ if (__unsuppflags) { \
@ -327,7 +326,7 @@
* Returns nothing. Jumps to a label if unsupported flags were * Returns nothing. Jumps to a label if unsupported flags were
* passed to it. * passed to it.
*/ */
# define virCheckFlagsGoto(supported, label) \ #define virCheckFlagsGoto(supported, label) \
do { \ do { \
unsigned long __unsuppflags = flags & ~(supported); \ unsigned long __unsuppflags = flags & ~(supported); \
if (__unsuppflags) { \ if (__unsuppflags) { \
@ -353,7 +352,7 @@
* This helper does an early return and therefore it has to be called * This helper does an early return and therefore it has to be called
* before anything that would require cleanup. * before anything that would require cleanup.
*/ */
# define VIR_EXCLUSIVE_FLAGS_RET(FLAG1, FLAG2, RET) \ #define VIR_EXCLUSIVE_FLAGS_RET(FLAG1, FLAG2, RET) \
do { \ do { \
if ((flags & FLAG1) && (flags & FLAG2)) { \ if ((flags & FLAG1) && (flags & FLAG2)) { \
virReportInvalidArg(ctl, \ virReportInvalidArg(ctl, \
@ -377,7 +376,7 @@
* Returns nothing. Jumps to a label if unsupported flags were * Returns nothing. Jumps to a label if unsupported flags were
* passed to it. * passed to it.
*/ */
# define VIR_EXCLUSIVE_FLAGS_GOTO(FLAG1, FLAG2, LABEL) \ #define VIR_EXCLUSIVE_FLAGS_GOTO(FLAG1, FLAG2, LABEL) \
do { \ do { \
if ((flags & FLAG1) && (flags & FLAG2)) { \ if ((flags & FLAG1) && (flags & FLAG2)) { \
virReportInvalidArg(ctl, \ virReportInvalidArg(ctl, \
@ -403,7 +402,7 @@
* This helper does an early return and therefore it has to be called * This helper does an early return and therefore it has to be called
* before anything that would require cleanup. * before anything that would require cleanup.
*/ */
# define VIR_REQUIRE_FLAG_RET(FLAG1, FLAG2, RET) \ #define VIR_REQUIRE_FLAG_RET(FLAG1, FLAG2, RET) \
do { \ do { \
if ((flags & FLAG1) && !(flags & FLAG2)) { \ if ((flags & FLAG1) && !(flags & FLAG2)) { \
virReportInvalidArg(ctl, \ virReportInvalidArg(ctl, \
@ -425,7 +424,7 @@
* *
* Returns nothing. Jumps to a label if required flag is not set. * Returns nothing. Jumps to a label if required flag is not set.
*/ */
# define VIR_REQUIRE_FLAG_GOTO(FLAG1, FLAG2, LABEL) \ #define VIR_REQUIRE_FLAG_GOTO(FLAG1, FLAG2, LABEL) \
do { \ do { \
if ((flags & FLAG1) && !(flags & FLAG2)) { \ if ((flags & FLAG1) && !(flags & FLAG2)) { \
virReportInvalidArg(ctl, \ virReportInvalidArg(ctl, \
@ -435,28 +434,28 @@
} \ } \
} while (0) } while (0)
# define virCheckNonNullArgReturn(argname, retval) \ #define virCheckNonNullArgReturn(argname, retval) \
do { \ do { \
if (argname == NULL) { \ if (argname == NULL) { \
virReportInvalidNonNullArg(argname); \ virReportInvalidNonNullArg(argname); \
return retval; \ return retval; \
} \ } \
} while (0) } while (0)
# define virCheckNullArgGoto(argname, label) \ #define virCheckNullArgGoto(argname, label) \
do { \ do { \
if (argname != NULL) { \ if (argname != NULL) { \
virReportInvalidNullArg(argname); \ virReportInvalidNullArg(argname); \
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckNonNullArgGoto(argname, label) \ #define virCheckNonNullArgGoto(argname, label) \
do { \ do { \
if (argname == NULL) { \ if (argname == NULL) { \
virReportInvalidNonNullArg(argname); \ virReportInvalidNonNullArg(argname); \
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckNonEmptyStringArgGoto(argname, label) \ #define virCheckNonEmptyStringArgGoto(argname, label) \
do { \ do { \
if (argname == NULL) { \ if (argname == NULL) { \
virReportInvalidNonNullArg(argname); \ virReportInvalidNonNullArg(argname); \
@ -467,42 +466,42 @@
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckPositiveArgGoto(argname, label) \ #define virCheckPositiveArgGoto(argname, label) \
do { \ do { \
if (argname <= 0) { \ if (argname <= 0) { \
virReportInvalidPositiveArg(argname); \ virReportInvalidPositiveArg(argname); \
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckPositiveArgReturn(argname, retval) \ #define virCheckPositiveArgReturn(argname, retval) \
do { \ do { \
if (argname <= 0) { \ if (argname <= 0) { \
virReportInvalidPositiveArg(argname); \ virReportInvalidPositiveArg(argname); \
return retval; \ return retval; \
} \ } \
} while (0) } while (0)
# define virCheckNonZeroArgGoto(argname, label) \ #define virCheckNonZeroArgGoto(argname, label) \
do { \ do { \
if (argname == 0) { \ if (argname == 0) { \
virReportInvalidNonZeroArg(argname); \ virReportInvalidNonZeroArg(argname); \
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckZeroArgGoto(argname, label) \ #define virCheckZeroArgGoto(argname, label) \
do { \ do { \
if (argname != 0) { \ if (argname != 0) { \
virReportInvalidNonZeroArg(argname); \ virReportInvalidNonZeroArg(argname); \
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckNonNegativeArgGoto(argname, label) \ #define virCheckNonNegativeArgGoto(argname, label) \
do { \ do { \
if (argname < 0) { \ if (argname < 0) { \
virReportInvalidNonNegativeArg(argname); \ virReportInvalidNonNegativeArg(argname); \
goto label; \ goto label; \
} \ } \
} while (0) } while (0)
# define virCheckReadOnlyGoto(flags, label) \ #define virCheckReadOnlyGoto(flags, label) \
do { \ do { \
if ((flags) & VIR_CONNECT_RO) { \ if ((flags) & VIR_CONNECT_RO) { \
virReportRestrictedError(_("read only access prevents %s"), \ virReportRestrictedError(_("read only access prevents %s"), \
@ -514,14 +513,14 @@
/* divide value by size, rounding up */ /* divide value by size, rounding up */
# define VIR_DIV_UP(value, size) (((value) + (size) - 1) / (size)) #define VIR_DIV_UP(value, size) (((value) + (size) - 1) / (size))
/* round up value to the closest multiple of size */ /* round up value to the closest multiple of size */
# define VIR_ROUND_UP(value, size) (VIR_DIV_UP(value, size) * (size)) #define VIR_ROUND_UP(value, size) (VIR_DIV_UP(value, size) * (size))
/* Round up to the next closest power of 2. It will return rounded number or 0 /* Round up to the next closest power of 2. It will return rounded number or 0
* for 0 or number more than 2^31 (for 32bit unsigned int). */ * for 0 or number more than 2^31 (for 32bit unsigned int). */
# define VIR_ROUND_UP_POWER_OF_TWO(value) \ #define VIR_ROUND_UP_POWER_OF_TWO(value) \
((value) > 0 && (value) <= 1U << (sizeof(unsigned int) * 8 - 1) ? \ ((value) > 0 && (value) <= 1U << (sizeof(unsigned int) * 8 - 1) ? \
1U << (sizeof(unsigned int) * 8 - count_leading_zeros((value) - 1)) : 0) 1U << (sizeof(unsigned int) * 8 - count_leading_zeros((value) - 1)) : 0)
@ -534,8 +533,6 @@ enum {
EXIT_ENOENT = 127, /* Could not find program to exec */ EXIT_ENOENT = 127, /* Could not find program to exec */
}; };
# ifndef ENODATA #ifndef ENODATA
# define ENODATA EIO # define ENODATA EIO
# endif #endif
#endif /* LIBVIRT_INTERNAL_H */