Re: [ovs-dev] [PATCH 2/2] configure: Support compiling with Linux 4.8.

2016-10-20 Thread Jarno Rajahalme

> On Oct 20, 2016, at 2:55 PM, Pravin Shelar  wrote:
> 
> On Tue, Oct 18, 2016 at 5:01 PM, Jarno Rajahalme  wrote:
>> Datapath should now compile and work with Linux 4.8.
>> 
>> Signed-off-by: Jarno Rajahalme 
> Acked-by: Pravin B Shelar 

Thanks for the review, pushed to master and branch-2.6.

  Jarno

___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev


Re: [ovs-dev] [PATCH 2/2] configure: Support compiling with Linux 4.8.

2016-10-20 Thread Pravin Shelar
On Tue, Oct 18, 2016 at 5:01 PM, Jarno Rajahalme  wrote:
> Datapath should now compile and work with Linux 4.8.
>
> Signed-off-by: Jarno Rajahalme 
Acked-by: Pravin B Shelar 
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev


[ovs-dev] [PATCH 2/2] configure: Support compiling with Linux 4.8.

2016-10-18 Thread Jarno Rajahalme
Datapath should now compile and work with Linux 4.8.

Signed-off-by: Jarno Rajahalme 
---
 acinclude.m4 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/acinclude.m4 b/acinclude.m4
index a3c95f5..2c500a8 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -134,10 +134,10 @@ AC_DEFUN([OVS_CHECK_LINUX], [
 AC_MSG_RESULT([$kversion])
 
 if test "$version" -ge 4; then
-   if test "$version" = 4 && test "$patchlevel" -le 7; then
+   if test "$version" = 4 && test "$patchlevel" -le 8; then
   : # Linux 4.x
else
-  AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version 
newer than 4.7.x is not supported (please refer to the FAQ for advice)])
+  AC_ERROR([Linux kernel in $KBUILD is version $kversion, but version 
newer than 4.8.x is not supported (please refer to the FAQ for advice)])
fi
 elif test "$version" = 3 && test "$patchlevel" -ge 10; then
: # Linux 3.x
-- 
2.1.4

___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev