[ovs-dev] [PATCH] datapath: Add support for Linux 3.12

James Page james.page at ubuntu.com
Tue Nov 19 13:39:16 UTC 2013


Bump kernel support for datapath module to include 3.12.

Signed-off-by: James Page <james.page at ubuntu.com>
---
 FAQ          | 2 +-
 NEWS         | 2 +-
 acinclude.m4 | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/FAQ b/FAQ
index 4a8a5be..9b3a900 100644
--- a/FAQ
+++ b/FAQ
@@ -148,7 +148,7 @@ A: The following table lists the Linux kernel versions against which the
        1.10.x     2.6.18 to 3.8
        1.11.x     2.6.18 to 3.8
        2.0.x      2.6.32 to 3.10
-       2.1.x      2.6.32 to 3.11
+       2.1.x      2.6.32 to 3.12
 
    Open vSwitch userspace should also work with the Linux kernel module
    built into Linux 3.3 and later.
diff --git a/NEWS b/NEWS
index 38e3d9d..378889f 100644
--- a/NEWS
+++ b/NEWS
@@ -16,7 +16,7 @@ Post-v2.0.0
        by the controller.
    - ovs-vswitchd.conf.db.5 man page will contain graphviz/dot
      diagram only if graphviz package was installed at the build time.
-   - Support for Linux kernels up to 3.11
+   - Support for Linux kernels up to 3.12
    - ovs-dpctl:
      The "show" command also displays mega flow mask stats.
    - ovs-controller has been renamed test-controller.  It is no longer
diff --git a/acinclude.m4 b/acinclude.m4
index f987fa0..ec35755 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -134,10 +134,10 @@ AC_DEFUN([OVS_CHECK_LINUX], [
     AC_MSG_RESULT([$kversion])
 
     if test "$version" -ge 3; then
-       if test "$version" = 3 && test "$patchlevel" -le 11; then
+       if test "$version" = 3 && test "$patchlevel" -le 12; then
           : # Linux 3.x
        else
-         AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 3.11.x is not supported])
+         AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 3.12.x is not supported])
        fi
     else
        if test "$version" -le 1 || test "$patchlevel" -le 5 || test "$sublevel" -le 31; then
-- 
1.8.4.3




More information about the dev mailing list