1f65c099ab74cfadfc2f05cfcffbcf0a4647aa16
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / 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 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
10 #undef pr_emerg
11 #define pr_emerg(fmt, ...) \
12         printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
13 #undef pr_alert
14 #define pr_alert(fmt, ...) \
15         printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
16 #undef pr_crit
17 #define pr_crit(fmt, ...) \
18         printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
19 #undef pr_err
20 #define pr_err(fmt, ...) \
21         printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
22 #undef pr_warning
23 #define pr_warning(fmt, ...) \
24         printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
25 #undef pr_notice
26 #define pr_notice(fmt, ...) \
27         printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
28 #undef pr_info
29 #define pr_info(fmt, ...) \
30         printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
31 #undef pr_cont
32 #define pr_cont(fmt, ...) \
33         printk(KERN_CONT fmt, ##__VA_ARGS__)
34 #endif
35
36 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)
37 #define pr_warn pr_warning
38 #endif
39
40 #endif /* linux/kernel.h */