34 #ifndef _RTE_COMMON_H_ 35 #define _RTE_COMMON_H_ 55 #define typeof __typeof__ 63 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 201112L 64 #define RTE_STD_C11 __extension__ 69 #ifdef RTE_ARCH_STRICT_ALIGN 70 typedef uint64_t unaligned_uint64_t __attribute__ ((aligned(1)));
71 typedef uint32_t unaligned_uint32_t __attribute__ ((aligned(1)));
72 typedef uint16_t unaligned_uint16_t __attribute__ ((aligned(1)));
74 typedef uint64_t unaligned_uint64_t;
75 typedef uint32_t unaligned_uint32_t;
76 typedef uint16_t unaligned_uint16_t;
82 #define __rte_aligned(a) __attribute__((__aligned__(a))) 87 #define __rte_packed __attribute__((__packed__)) 90 #define __rte_deprecated __attribute__((__deprecated__)) 97 #define __rte_unused __attribute__((__unused__)) 103 #define RTE_SET_USED(x) (void)(x) 110 #define RTE_PTR_ADD(ptr, x) ((void*)((uintptr_t)(ptr) + (x))) 115 #define RTE_PTR_SUB(ptr, x) ((void*)((uintptr_t)ptr - (x))) 122 #define RTE_PTR_DIFF(ptr1, ptr2) ((uintptr_t)(ptr1) - (uintptr_t)(ptr2)) 133 #define RTE_PTR_ALIGN_FLOOR(ptr, align) \ 134 ((typeof(ptr))RTE_ALIGN_FLOOR((uintptr_t)ptr, align)) 142 #define RTE_ALIGN_FLOOR(val, align) \ 143 (typeof(val))((val) & (~((typeof(val))((align) - 1)))) 151 #define RTE_PTR_ALIGN_CEIL(ptr, align) \ 152 RTE_PTR_ALIGN_FLOOR((typeof(ptr))RTE_PTR_ADD(ptr, (align) - 1), align) 160 #define RTE_ALIGN_CEIL(val, align) \ 161 RTE_ALIGN_FLOOR(((val) + ((typeof(val)) (align) - 1)), align) 170 #define RTE_PTR_ALIGN(ptr, align) RTE_PTR_ALIGN_CEIL(ptr, align) 179 #define RTE_ALIGN(val, align) RTE_ALIGN_CEIL(val, align) 204 #define RTE_BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) 206 extern int RTE_BUILD_BUG_ON_detected_error;
207 #define RTE_BUILD_BUG_ON(condition) do { \ 208 ((void)sizeof(char[1 - 2*!!(condition)])); \ 210 RTE_BUILD_BUG_ON_detected_error = 1; \ 225 return n && !(n & (n - 1));
237 static inline uint32_t
259 static inline uint64_t
278 #define RTE_MIN(a, b) \ 280 typeof (a) _a = (a); \ 281 typeof (b) _b = (b); \ 288 #define RTE_MAX(a, b) \ 290 typeof (a) _a = (a); \ 291 typeof (b) _b = (b); \ 298 #include <emmintrin.h> 323 static inline uint32_t
326 return __builtin_ctz(v);
331 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER) 349 #define container_of(ptr, type, member) __extension__ ({ \ 350 const typeof(((type *)0)->member) *_ptr = (ptr); \ 351 __attribute__((unused)) type *_target_ptr = \ 353 (type *)(((uintptr_t)_ptr) - offsetof(type, member)); \ 357 #define _RTE_STR(x) #x 359 #define RTE_STR(x) _RTE_STR(x) 366 #define RTE_FMT(fmt, ...) fmt "%.0s", __VA_ARGS__ "" 367 #define RTE_FMT_HEAD(fmt, ...) fmt 368 #define RTE_FMT_TAIL(fmt, ...) __VA_ARGS__ 371 #define RTE_LEN2MASK(ln, tp) \ 372 ((tp)((uint64_t)-1 >> (sizeof(uint64_t) * CHAR_BIT - (ln)))) 375 #define RTE_DIM(a) (sizeof (a) / sizeof ((a)[0])) 391 static inline uint64_t
395 unsigned long long size;
397 while (isspace((
int)*str))
403 size = strtoull(str, &endptr, 0);
411 case 'G':
case 'g': size *= 1024;
412 case 'M':
case 'm': size *= 1024;
413 case 'K':
case 'k': size *= 1024;
434 rte_exit(
int exit_code,
const char *format, ...)
435 __attribute__((noreturn))
436 __attribute__((format(printf, 2, 3)));
static int rte_is_aligned(void *ptr, unsigned align)
static uint64_t rte_align64pow2(uint64_t v)
static uint32_t rte_bsf32(uint32_t v)
static uint32_t rte_align32pow2(uint32_t x)
#define RTE_PTR_ALIGN(ptr, align)
static int rte_is_power_of_2(uint32_t n)
void rte_exit(int exit_code, const char *format,...)
static uint64_t rte_str_to_size(const char *str)