From: James Page Date: Wed, 16 Jan 2013 11:19:21 +0000 (+0000) Subject: datapath: support Linux 3.8 kernel X-Git-Tag: v1.9.0~28 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=465b6c7e352ff4950fb627d383467260b16d3d7f datapath: support Linux 3.8 kernel Add Linux 3.8 kernel to the range of supported kernel versions. Signed-off-by: James Page [jesse: Update NEWS and FAQ] Signed-off-by: Jesse Gross Conflicts: FAQ --- diff --git a/NEWS b/NEWS index 0b900423b..8a4fef07c 100644 --- a/NEWS +++ b/NEWS @@ -6,7 +6,7 @@ v1.9.0 - xx xxx xxxx - Datapath: - Support for ipv6 set action. - SKB mark matching and setting. - - support for Linux kernels up to 3.7 + - support for Linux kernels up to 3.8 - FreeBSD is now a supported platform, thanks to code contributions from Gaetano Catalli, Ed Maste, and Giuseppe Lettieri. - ovs-bugtool: New --ovs option to report only OVS related information. diff --git a/datapath/datapath.c b/datapath/datapath.c index 7e6ba9145..ac6b70565 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,8,0) -#error Kernels before 2.6.18 or after 3.7 are not supported by this version of Open vSwitch. + LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0) +#error Kernels before 2.6.18 or after 3.8 are not supported by this version of Open vSwitch. #endif #define REHASH_FLOW_INTERVAL (10 * 60 * HZ) diff --git a/debian/changelog b/debian/changelog index d69867ffd..a795e247c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,7 +7,7 @@ openvswitch (1.9.0-1) unstable; urgency=low - Datapath: - Support for ipv6 set action. - SKB mark matching and setting. - - support for Linux kernels up to 3.7 + - support for Linux kernels up to 3.8 - FreeBSD is now a supported platform, thanks to code contributions from Gaetano Catalli, Ed Maste, and Giuseppe Lettieri. - ovs-bugtool: New --ovs option to report only OVS related information.