From: Pravin B Shelar Date: Wed, 20 Jun 2012 01:04:27 +0000 (-0700) Subject: datapath: Support for kernel 3.4. X-Git-Tag: sliver-openvswitch-1.8.90-0~48^2~347 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=8b9a3d50b433c7fbed7b31b3d6f2bda966440b41;p=sliver-openvswitch.git datapath: Support for kernel 3.4. Signed-off-by: Pravin B Shelar Acked-by: Jesse Gross --- diff --git a/datapath/datapath.c b/datapath/datapath.c index c2cb6b157..28e0573dc 100644 --- a/datapath/datapath.c +++ b/datapath/datapath.c @@ -61,8 +61,8 @@ #include "vport-internal_dev.h" #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \ - LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0) -#error Kernels before 2.6.18 or after 3.3 are not supported by this version of Open vSwitch. + LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0) +#error Kernels before 2.6.18 or after 3.4 are not supported by this version of Open vSwitch. #endif #define REHASH_FLOW_INTERVAL (10 * 60 * HZ)