datapath: Support Linux 3.0
authorSimon Horman <horms@verge.net.au>
Wed, 29 Jun 2011 07:24:44 +0000 (16:24 +0900)
committerJesse Gross <jesse@nicira.com>
Wed, 29 Jun 2011 19:04:33 +0000 (12:04 -0700)
This trivially supports linux 3.0 by incrementing the version check.

Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Jesse Gross <jesse@nicira.com>
datapath/datapath.c

index 7eadd2f5af27d2f1f3bfcf0fb8e34258f97f057f..d1493445721ce3a40109b5923744a935e8666731 100644 (file)
@@ -54,8 +54,8 @@
 #include "vport-internal_dev.h"
 
 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \
-    LINUX_VERSION_CODE > KERNEL_VERSION(2,6,39)
-#error Kernels before 2.6.18 or after 2.6.39 are not supported by this version of Open vSwitch.
+    LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0)
+#error Kernels before 2.6.18 or after 3.0 are not supported by this version of Open vSwitch.
 #endif
 
 int (*dp_ioctl_hook)(struct net_device *dev, struct ifreq *rq, int cmd);