net/ena: advertise scattered Rx capability
ENA can't be forced to always pass single descriptor for the Rx packet. Even if the passed buffer size is big enough to hold the data, we can't make assumption that the HW won't use extra descriptor because of internal optimizations. This assumption may be true, but only for some of the FW revisions, which may differ depending on the used AWS instance type. As the scattered Rx support on the Rx path already exists, the driver just needs to announce DEV_RX_OFFLOAD_SCATTER capability by turning on the rte_eth_dev_data::scattered_rx option. Fixes: 1173fca25af9 ("ena: add polling-mode driver") Cc: stable@dpdk.org Signed-off-by: Michal Krawczyk <mk@semihalf.com> Reviewed-by: Igor Chauskin <igorch@amazon.com> Reviewed-by: Shai Brandes <shaibran@amazon.com>
This commit is contained in:
parent
3a822d79c5
commit
e2a6d08bef
@ -1917,8 +1917,14 @@ static int ena_dev_configure(struct rte_eth_dev *dev)
|
||||
dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
|
||||
dev->data->dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
|
||||
|
||||
/* Scattered Rx cannot be turned off in the HW, so this capability must
|
||||
* be forced.
|
||||
*/
|
||||
dev->data->scattered_rx = 1;
|
||||
|
||||
adapter->tx_selected_offloads = dev->data->dev_conf.txmode.offloads;
|
||||
adapter->rx_selected_offloads = dev->data->dev_conf.rxmode.offloads;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -1966,6 +1972,8 @@ static uint64_t ena_get_rx_port_offloads(struct ena_adapter *adapter)
|
||||
if (adapter->offloads.rx_offloads & ENA_RX_RSS_HASH)
|
||||
port_offloads |= DEV_RX_OFFLOAD_RSS_HASH;
|
||||
|
||||
port_offloads |= DEV_RX_OFFLOAD_SCATTER;
|
||||
|
||||
return port_offloads;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user