2fa5cc8112d805fc79c95b57157efa247bb4aeb8
[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
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 #if defined(CONFIG_PREEMPT) && LINUX_VERSION_CODE < KERNEL_VERSION(2,6,21)
43 #error "CONFIG_PREEMPT is broken before 2.6.21--see commit 4498121ca3, \"[NET]: Handle disabled preemption in gfp_any()\""
44 #endif
45
46 #ifndef USHRT_MAX
47 #define USHRT_MAX       ((u16)(~0U))
48 #define SHRT_MAX        ((s16)(USHRT_MAX>>1))
49 #define SHRT_MIN        ((s16)(-SHRT_MAX - 1))
50 #endif
51
52 #ifndef DIV_ROUND_UP
53 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
54 #endif
55
56 #endif /* linux/kernel.h */