[dpdk-dev] [PATCH v2] net/ixgbe: fix compilation when offload flags disabled

2016-07-05 Thread Bruce Richardson
On Fri, Jul 01, 2016 at 10:02:46AM +0100, Ananyev, Konstantin wrote: > > > The ixgbe driver does not compile if CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=n > > because the macro has not the proper number of parameters. To reproduce > > the issue: > > > > make config T=x86_64-native-linuxapp-gcc > >

[dpdk-dev] [PATCH v2] net/ixgbe: fix compilation when offload flags disabled

2016-07-01 Thread Olivier Matz
The ixgbe driver does not compile if CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=n because the macro has not the proper number of parameters. To reproduce the issue: make config T=x86_64-native-linuxapp-gcc sed -i 's,CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=y,CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=n,' build/.c

[dpdk-dev] [PATCH v2] net/ixgbe: fix compilation when offload flags disabled

2016-07-01 Thread Ananyev, Konstantin
> The ixgbe driver does not compile if CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=n > because the macro has not the proper number of parameters. To reproduce > the issue: > > make config T=x86_64-native-linuxapp-gcc > sed -i > 's,CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=y,CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABL