Re: [dpdk-dev] [PATCH] net/ixgbe: fix compilation when vector driver disabled

2018-04-16 Thread Thomas Monjalon
16/04/2018 15:39, Bruce Richardson: > The new functions for Rx and Tx offloads should not be inside the > conditional block for the vector driver, otherwise compile errors occur > when vector driver is disabled. For example: > > ixgbe_ethdev.c:3636:36: error: implicit declaration of function >

Re: [dpdk-dev] [PATCH] net/ixgbe: fix compilation when vector driver disabled

2018-04-16 Thread Thomas Monjalon
16/04/2018 15:39, Bruce Richardson: > The new functions for Rx and Tx offloads should not be inside the > conditional block for the vector driver, otherwise compile errors occur > when vector driver is disabled. For example: > > ixgbe_ethdev.c:3636:36: error: implicit declaration of function >

[dpdk-dev] [PATCH] net/ixgbe: fix compilation when vector driver disabled

2018-04-16 Thread Bruce Richardson
The new functions for Rx and Tx offloads should not be inside the conditional block for the vector driver, otherwise compile errors occur when vector driver is disabled. For example: ixgbe_ethdev.c:3636:36: error: implicit declaration of function ‘ixgbe_get_rx_queue_offloads’; This shows up as