From: Jesse Gross Date: Thu, 6 May 2010 20:37:49 +0000 (-0700) Subject: datapath: Fix build issue with LRO. X-Git-Tag: v1.0.0~40 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=32ec73557fecb0c18193c54dc31479e4b84e2c0c;p=sliver-openvswitch.git 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. --- 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 180b72a47..2bec47139 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 /**