This trivially supports linux 3.0 by incrementing the version check. Signed-off-by: Simon Horman <[email protected]>pick
--- I have done some rudimentry testing with 3.0-rc5 in the form of setting up a bridge, adding a physical interface to it, and then sshing to the machine, making use of the bridge. --- datapath/datapath.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/datapath/datapath.c b/datapath/datapath.c index 7eadd2f..d149344 100644 --- a/datapath/datapath.c +++ b/datapath/datapath.c @@ -54,8 +54,8 @@ #include "vport-internal_dev.h" #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) || \ - LINUX_VERSION_CODE > KERNEL_VERSION(2,6,39) -#error Kernels before 2.6.18 or after 2.6.39 are not supported by this version of Open vSwitch. + LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0) +#error Kernels before 2.6.18 or after 3.0 are not supported by this version of Open vSwitch. #endif int (*dp_ioctl_hook)(struct net_device *dev, struct ifreq *rq, int cmd); -- 1.7.5.4 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
