[ovs-dev] [PATCH] datapath: support Linux 3.8 kernel

James Page james.page at ubuntu.com
Wed Jan 16 11:19:21 UTC 2013


>From cce3dd47ae7d9b1e15c79c82a68bee8f24e18c36 Mon Sep 17 00:00:00 2001
From: James Page <james.page at ubuntu.com>
Date: Mon, 14 Jan 2013 12:23:58 +0000
Subject: [PATCH] datapath: support Linux 3.8 kernel
To: dev at openvswitch.org

Add Linux 3.8 kernel to the range of supported kernel versions.

Signed-off-by: James Page <james.page at ubuntu.com>
---
 datapath/datapath.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datapath/datapath.c b/datapath/datapath.c
index ed69af8..b2854bc 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)
-- 
1.8.0




More information about the dev mailing list