b50c10cc89
ixgbe_recv_pkts_lro uses field rx_free_trigger in structure ixgbe_rx_queue, but that field is only defined if IXGBE_RX_ALLOW_BULK_ALLOC is enabled, so even though that field is not used when it is disabled, compiler complains about it. Therefore, the lines of code that use that field have been ifdef. Fixes: 8eecb329 ("ixgbe: add LRO support") Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>