aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2012-01-13 17:09:21 -0800
committerJesse Gross <jesse@nicira.com>2012-01-24 09:04:57 -0800
commit27a1654b5d0db2f995fdfd155b835e4a14473d73 (patch)
treebef44d8138c7e3bee2f4dce531fa3868637e5d92
parent5c06ffdd403206f7db41bf259e9bc27bf0f3b8dc (diff)
datapath: Fix version check for 3.2.
We support Linux 3.2 and all of its patch levels but the current check only allows for 3.2.0. Reported-by: Justin Pettit <jpettit@nicira.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
-rw-r--r--datapath/datapath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/datapath/datapath.c b/datapath/datapath.c
index 995efefe..e9a4e189 100644
--- a/datapath/datapath.c
+++ b/datapath/datapath.c
@@ -60,7 +60,7 @@
#include "vport-internal_dev.h"
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \
- LINUX_VERSION_CODE > KERNEL_VERSION(3,2,0)
+ LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0)
#error Kernels before 2.6.18 or after 3.2 are not supported by this version of Open vSwitch.
#endif