Setting tag sliver-openvswitch-1.9.90-2
[sliver-openvswitch.git] / datapath / linux / compat / include / linux / kernel.h
1 #ifndef __KERNEL_H_WRAPPER
2 #define __KERNEL_H_WRAPPER 1
3
4 #include_next <linux/kernel.h>
5 #ifndef HAVE_LOG2_H
6 #include <linux/log2.h>
7 #endif
8
9 #include <linux/version.h>
10 #include <linux/bug.h>
11 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
12 #undef pr_emerg
13 #define pr_emerg(fmt, ...) \
14         printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
15 #undef pr_alert
16 #define pr_alert(fmt, ...) \
17         printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
18 #undef pr_crit
19 #define pr_crit(fmt, ...) \
20         printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
21 #undef pr_err
22 #define pr_err(fmt, ...) \
23         printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
24 #undef pr_warning
25 #define pr_warning(fmt, ...) \
26         printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
27 #undef pr_notice
28 #define pr_notice(fmt, ...) \
29         printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
30 #undef pr_info
31 #define pr_info(fmt, ...) \
32         printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
33 #undef pr_cont
34 #define pr_cont(fmt, ...) \
35         printk(KERN_CONT fmt, ##__VA_ARGS__)
36 #endif
37
38 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)
39 #define pr_warn pr_warning
40 #endif
41
42 #ifndef BUILD_BUG_ON_NOT_POWER_OF_2
43 /* Force a compilation error if a constant expression is not a power of 2 */
44 #define BUILD_BUG_ON_NOT_POWER_OF_2(n)                  \
45         BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
46 #endif
47
48 #if defined(CONFIG_PREEMPT) && LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)
49 #error "CONFIG_PREEMPT is broken before 2.6.21--see commit 4498121ca3, \"[NET]: Handle disabled preemption in gfp_any()\""
50 #endif
51
52 #ifndef USHRT_MAX
53 #define USHRT_MAX       ((u16)(~0U))
54 #define SHRT_MAX        ((s16)(USHRT_MAX>>1))
55 #define SHRT_MIN        ((s16)(-SHRT_MAX - 1))
56 #endif
57
58 #ifndef DIV_ROUND_UP
59 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
60 #endif
61
62 #endif /* linux/kernel.h */