From 32ec73557fecb0c18193c54dc31479e4b84e2c0c Mon Sep 17 00:00:00 2001 From: Jesse Gross Date: Thu, 6 May 2010 13:37:49 -0700 Subject: [PATCH] datapath: Fix build issue with LRO. The last commit added a configure test for skb_warn_if_lro() but reversed an #ifdef causing a function to be compiled when it wasn't needed. --- datapath/linux-2.6/compat-2.6/dev-openvswitch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/linux-2.6/compat-2.6/dev-openvswitch.c b/datapath/linux-2.6/compat-2.6/dev-openvswitch.c index 180b72a4..2bec4713 100644 --- a/datapath/linux-2.6/compat-2.6/dev-openvswitch.c +++ b/datapath/linux-2.6/compat-2.6/dev-openvswitch.c @@ -2,7 +2,7 @@ #include -#ifndef NETIF_F_LRO +#ifdef NETIF_F_LRO #include /** -- 2.30.2