Skip to content

Commit

Permalink
datapath: Mark compatible with kernels up to 3.18.x
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Graf <[email protected]>
Acked-by: Pravin B Shelar <[email protected]>
  • Loading branch information
Thomas Graf authored and Pravin B Shelar committed Dec 10, 2014
1 parent 0fcc086 commit 4510f85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4510f85

Please sign in to comment.