Fix compilation on Linux 2.6.20: declare NLMSG_DEFAULT_SIZE with this kernel.
authorBen Pfaff <blp@nicira.com>
Mon, 5 May 2008 19:08:00 +0000 (12:08 -0700)
committerBen Pfaff <blp@nicira.com>
Mon, 5 May 2008 21:56:28 +0000 (14:56 -0700)
NLMSG_DEFAULT_SIZE was introduced in 2.6.20-rc1 in commit 339bf98ff,
"[NETLINK]: Do precise netlink message allocations where possible", but
we only defined it for kernels 2.6.18 and earlier.  This change fixes
up the discrepancy.

datapath/linux-2.6/compat-2.6/include/linux/netlink.h

index f1588af0eee6df3fb99f834139ddcf65d0725dc0..c5f83bd07e88abf18058ab04e3b7bb33d8287467 100644 (file)
@@ -6,10 +6,12 @@
 #include <net/netlink.h>
 
 #include <linux/version.h>
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
 
+#ifndef NLMSG_DEFAULT_SIZE
 #define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
+#endif
 
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
 #define nlmsg_new(s, f)   nlmsg_new_proper((s), (f))
 static inline struct sk_buff *nlmsg_new_proper(int size, gfp_t flags)
 {