1 #ifndef LINUX_3_1_COMPAT_H
2 #define LINUX_3_1_COMPAT_H
4 #include <linux/version.h>
6 #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0))
8 #include <linux/security.h>
10 #define genl_dump_check_consistent(cb, user_hdr, family)
12 #define IFF_TX_SKB_SHARING 0x10000 /* The interface supports sharing
15 #define PCMCIA_DEVICE_MANF_CARD_PROD_ID3(manf, card, v3, vh3) { \
16 .match_flags = PCMCIA_DEV_ID_MATCH_MANF_ID| \
17 PCMCIA_DEV_ID_MATCH_CARD_ID| \
18 PCMCIA_DEV_ID_MATCH_PROD_ID3, \
21 .prod_id = { NULL, NULL, (v3), NULL }, \
22 .prod_id_hash = { 0, 0, (vh3), 0 }, }
25 * This has been defined in include/linux/security.h for some time, but was
26 * only given an EXPORT_SYMBOL for 3.1. Add a compat_* definition to avoid
27 * breaking the compile.
29 #define security_sk_clone(a, b) compat_security_sk_clone(a, b)
31 static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
36 * In many versions, several architectures do not seem to include an
37 * atomic64_t implementation, and do not include the software emulation from
38 * asm-generic/atomic64_t.
39 * Detect and handle this here.
41 #include <asm/atomic.h>
43 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) && !defined(ATOMIC64_INIT) && !defined(CONFIG_X86) && !((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) && defined(CONFIG_ARM) && !defined(CONFIG_GENERIC_ATOMIC64))
44 #include <asm-generic/atomic64.h>
47 #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0)) */
49 #endif /* LINUX_3_1_COMPAT_H */