Initial import
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / include / linux / netlink.h
1 #ifndef __LINUX_NETLINK_WRAPPER_H
2 #define __LINUX_NETLINK_WRAPPER_H 1
3
4 #include <linux/skbuff.h>
5 #include_next <linux/netlink.h>
6 #include <net/netlink.h>
7
8 #include <linux/version.h>
9 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
10
11 #define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
12
13 #define nlmsg_new(s, f)   nlmsg_new_proper((s), (f))
14 static inline struct sk_buff *nlmsg_new_proper(int size, gfp_t flags)
15 {
16         return alloc_skb(size, flags);
17 }
18
19 #endif /* linux kernel < 2.6.19 */
20
21
22 #endif