aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Graf <tgraf@noironetworks.com>2014-12-03 13:02:32 +0100
committerPravin B Shelar <pshelar@nicira.com>2014-12-09 17:09:28 -0800
commit4510f85327f17c40f92d057243cce3b45ad39aa8 (patch)
tree4b73cfe20fa7c60624fe49c88a51be3ba3974bad
parent0fcc086dc7da3fa832af11fa4a8ca24afb78cbe0 (diff)
datapath: Mark compatible with kernels up to 3.18.x
Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
-rw-r--r--NEWS1
-rw-r--r--acinclude.m44
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 487b51022..f2fceb5c0 100644
--- a/NEWS
+++ b/NEWS
@@ -52,6 +52,7 @@ Post-v2.3.0
- Added support for DPDK Tunneling. VXLAN and GRE are supported protocols.
This is generic tunneling mechanism for userspace datapath.
- Support for multicast snooping (IGMPv1 and IGMPv2)
+ - Support for Linux kernels up to 3.18.x
v2.3.0 - 14 Aug 2014
diff --git a/acinclude.m4 b/acinclude.m4
index 1c0ed6927..3121b0968 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 17; then
+ if test "$version" = 3 && test "$patchlevel" -le 18; then
: # Linux 3.x
else
- AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 3.17.x is not supported (please refer to the FAQ for advice)])
+ AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version newer than 3.18.x is not supported (please refer to the FAQ for advice)])
fi
else
if test "$version" -le 1 || test "$patchlevel" -le 5 || test "$sublevel" -le 31; then