From: Jesse Gross Date: Thu, 6 May 2010 20:37:49 +0000 (-0700) Subject: datapath: Fix build issue with LRO. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32ec73557fecb0c18193c54dc31479e4b84e2c0c;p=openvswitch 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 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 /**