aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2011-10-21 14:17:38 -0700
committerPravin B Shelar <pshelar@nicira.com>2011-10-21 14:17:38 -0700
commita0003c0c359bc3ffe8a6683dbd0121877a3ce700 (patch)
treed7ca2ac80b83ba39ee6071602468454702683974
parent6f554ae0093cf8995855158a53593f199ca40459 (diff)
datapath: Update supported kernel check.
Signed-off-by: Pravin Shelar <pshelar@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
-rw-r--r--datapath/datapath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/datapath/datapath.c b/datapath/datapath.c
index cd29482c..49821507 100644
--- a/datapath/datapath.c
+++ b/datapath/datapath.c
@@ -54,8 +54,8 @@
#include "vport-internal_dev.h"
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \
- 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.
+ LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)
+#error Kernels before 2.6.18 or after 3.1 are not supported by this version of Open vSwitch.
#endif
int (*dp_ioctl_hook)(struct net_device *dev, struct ifreq *rq, int cmd);