4 /* Parts taken from the Linux kernel, GPL, version 2. */
6 #include <linux/if_packet.h>
10 #include <asm/byteorder.h>
18 #ifndef CO_CACHE_LINE_SIZE
19 # define CO_CACHE_LINE_SIZE (1 << CO_IN_CACHE_SHIFT)
23 # define __aligned_16 __attribute__((aligned(16)))
26 #ifndef __cacheline_aligned
27 # define __cacheline_aligned __attribute__((aligned(CO_CACHE_LINE_SIZE)))
30 #ifndef __aligned_tpacket
31 # define __aligned_tpacket __attribute__((aligned(TPACKET_ALIGNMENT)))
34 #ifndef __align_tpacket
35 # define __align_tpacket(x) __attribute__((aligned(TPACKET_ALIGN(x))))
38 #ifndef __check_format_printf
39 # define __check_format_printf(pos_fmtstr, pos_fmtargs) \
40 __attribute__ ((format (printf, (pos_fmtstr), (pos_fmtargs))))
44 # define __packed __attribute__((packed))
48 # define round_up(x, alignment) (((x) + (alignment) - 1) & ~((alignment) - 1))
51 #ifndef round_up_cacheline
52 # define round_up_cacheline(x) round_up((x), CO_CACHE_LINE_SIZE)
56 # define likely(x) __builtin_expect(!!(x), 1)
60 # define unlikely(x) __builtin_expect(!!(x), 0)
64 # define constant(x) __builtin_constant_p(x)
68 # define fmemset __builtin_memset
72 # define fmemcpy __builtin_memcpy
75 #ifndef __maybe_unused
76 # define __maybe_unused __attribute__ ((__unused__))
80 # define noinline __attribute__((noinline))
84 # define __noreturn __attribute__((noreturn))
88 # define __hidden __attribute__((visibility("hidden")))
92 # define __pure __attribute__ ((pure))
96 # define __force /* unimplemented */
100 # define force_cast(type, arg) ((type) (arg))
106 typeof (a) _a = (a); \
107 typeof (b) _b = (b); \
113 # define max_t(type, a, b) \
115 type ___max1 = (a); \
116 type ___max2 = (b); \
117 ___max1 > ___max2 ? ___max1 : ___max2; \
124 typeof (a) _a = (a); \
125 typeof (b) _b = (b); \
131 # define min_t(type, a, b) \
133 type ___min1 = (a); \
134 type ___min2 = (b); \
135 ___min1 < ___min2 ? ___min1 : ___min2; \
140 # define ispow2(x) ({ !!((x) && !((x) & ((x) - 1))); })
144 # define offsetof(type, member) ((size_t) &((type *) 0)->member)
148 # define container_of(ptr, type, member) \
150 const typeof(((type *) 0)->member) * __mptr = (ptr); \
151 (type *) ((char *) __mptr - offsetof(type, member)); \
156 # define array_size(x) (sizeof(x) / sizeof((x)[0]) + __must_be_array(x))
159 #ifndef __must_be_array
160 # define __must_be_array(x) \
161 build_bug_on_zero(__builtin_types_compatible_p(typeof(x), \
165 #ifndef build_bug_on_zero
166 # define build_bug_on_zero(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
170 # define build_bug_on(e) ((void)sizeof(char[1 - 2*!!(e)]))
174 # define bug_on(cond) assert(!(cond))
178 # define bug() assert(0)
181 #define PAGE_SIZE (getpagesize())
182 #define PAGE_MASK (~(PAGE_SIZE - 1))
183 #define PAGE_ALIGN(addr) (((addr) + PAGE_SIZE - 1) & PAGE_MASK)
185 #if __BYTE_ORDER == __LITTLE_ENDIAN
186 static inline uint64_t htonll(uint64_t x
)
191 static inline uint64_t ntohll(uint64_t x
)
195 #elif __BYTE_ORDER == __BIG_ENDIAN
196 static inline uint64_t htonll(uint64_t x
)
201 static inline uint64_t ntohll(uint64_t x
)
206 # error __BYTE_ORDER is neither __LITTLE_ENDIAN nor __BIG_ENDIAN
208 #ifndef ___constant_swab16
209 # define ___constant_swab16(x) ((__u16)( \
210 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
211 (((__u16)(x) & (__u16)0xff00U) >> 8)))
213 #ifndef ___constant_swab32
214 # define ___constant_swab32(x) ((__u32)( \
215 (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \
216 (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \
217 (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \
218 (((__u32)(x) & (__u32)0xff000000UL) >> 24)))
220 #if __BYTE_ORDER == __LITTLE_ENDIAN
221 static inline u16
cpu_to_be16(u16 val
)
223 return bswap_16(val
);
226 static inline u32
cpu_to_be32(u32 val
)
228 return bswap_32(val
);
231 static inline u64
cpu_to_be64(u64 val
)
233 return bswap_64(val
);
236 static inline u16
cpu_to_le16(u16 val
)
241 static inline u32
cpu_to_le32(u32 val
)
246 static inline u64
cpu_to_le64(u64 val
)
251 # ifndef __constant_htonl
252 # define __constant_htonl(x) ((__force __be32)___constant_swab32((x)))
254 # ifndef __constant_ntohl
255 # define __constant_ntohl(x) ___constant_swab32((__force __be32)(x))
257 # ifndef __constant_htons
258 # define __constant_htons(x) ((__force __be16)___constant_swab16((x)))
260 # ifndef __constant_ntohs
261 # define __constant_ntohs(x) ___constant_swab16((__force __be16)(x))
263 #elif __BYTE_ORDER == __BIG_ENDIAN
264 static inline u16
cpu_to_be16(u16 val
)
269 static inline u32
cpu_to_be32(u32 val
)
274 static inline u64
cpu_to_be64(u64 val
)
279 static inline u16
cpu_to_le16(u16 val
)
281 return bswap_16(val
);
284 static inline u32
cpu_to_le32(u32 val
)
286 return bswap_32(val
);
289 static inline u64
cpu_to_le64(u64 val
)
291 return bswap_64(val
);
294 # ifndef __constant_htonl
295 # define __constant_htonl(x) ((__force __be32)(__u32)(x))
297 # ifndef __constant_ntohl
298 # define __constant_ntohl(x) ((__force __u32)(__be32)(x))
300 # ifndef __constant_htons
301 # define __constant_htons(x) ((__force __be16)(__u16)(x))
303 # ifndef __constant_ntohs
304 # define __constant_ntohs(x) ((__force __u16)(__be16)(x))
307 # error __BYTE_ORDER is neither __LITTLE_ENDIAN nor __BIG_ENDIAN
310 #define le64_to_cpu cpu_to_le64
311 #define le32_to_cpu cpu_to_le32
312 #define le16_to_cpu cpu_to_le16
313 #define be64_to_cpu cpu_to_be64
314 #define be32_to_cpu cpu_to_be32
315 #define be16_to_cpu cpu_to_be16
320 #define memset fmemset
321 #define memcpy fmemcpy
323 #if defined(__amd64__) || defined(__x86_64__) || defined(__AMD64__) || \
324 defined(_M_X64) || defined(__amd64)
325 # define CO_IN_CACHE_SHIFT 7
326 #elif defined(__i386__) || defined(__x86__) || defined(__X86__) || \
327 defined(_M_IX86) || defined(__i386)
328 # define CO_IN_CACHE_SHIFT 7
329 #elif defined(__ia64__) || defined(__IA64__) || defined(__M_IA64)
330 # define CO_IN_CACHE_SHIFT 6
331 #elif defined(__SPU__)
332 # define CO_IN_CACHE_SHIFT 7
333 #elif defined(__powerpc64__) || defined(__ppc64__) || defined(__PPC64__) || \
335 # define CO_IN_CACHE_SHIFT 8
336 #elif defined(__powerpc__) || defined(__ppc__) || defined(__PPC__) || \
338 # define CO_IN_CACHE_SHIFT 7
339 #elif defined(__sparcv9__) || defined(__sparcv9)
340 # define CO_IN_CACHE_SHIFT 6
341 #elif defined(__sparc_v8__)
342 # define CO_IN_CACHE_SHIFT 5
343 #elif defined(__sparc__) || defined(__sparc)
344 # define CO_IN_CACHE_SHIFT 5
345 #elif defined(__ARM_EABI__)
346 # define CO_IN_CACHE_SHIFT 5
347 #elif defined(__arm__)
348 # define CO_IN_CACHE_SHIFT 5
349 #elif defined(__mips__) || defined(__mips) || defined(__MIPS__)
350 # if defined(_ABIO32)
351 # define CO_IN_CACHE_SHIFT 5
352 # elif defined(_ABIN32)
353 # define CO_IN_CACHE_SHIFT 5
355 # define CO_IN_CACHE_SHIFT 6
358 # define CO_IN_CACHE_SHIFT 5
361 #ifndef TP_STATUS_TS_SOFTWARE
362 # define TP_STATUS_TS_SOFTWARE (1 << 29)
365 #ifndef TP_STATUS_TS_SYS_HARDWARE
366 # define TP_STATUS_TS_SYS_HARDWARE (1 << 30)
369 #ifndef TP_STATUS_TS_RAW_HARDWARE
370 # define TP_STATUS_TS_RAW_HARDWARE (1 << 31)
374 # define POLLRDNORM 0x0040
378 # define POLLWRNORM 0x0100
382 # define POLLRDHUP 0x2000
385 #ifndef ARPHRD_IEEE802154_MONITOR
386 # define ARPHRD_IEEE802154_MONITOR 805
389 #ifndef ARPHRD_IP6GRE
390 # define ARPHRD_IP6GRE 823
393 #ifndef ARPHRD_NETLINK
394 # define ARPHRD_NETLINK 824
397 #endif /* BUILT_IN_H */