Re: [dpdk-dev] [PATCH] net/enic: fix seg fault on MTU update with non-setup queues

2018-04-06 Thread Ferruh Yigit
On 4/5/2018 12:54 AM, John Daley wrote: > The enic code called from rte_eth_dev_set_mtu() was assuming that the > Rx queues are already set up via a call to rte_eth_tx_queue_setup(). > OVS calls rte_eth_dev_set_mtu() before rte_eth_rx_queue_setup() and > a null pointer was dereferenced. > > Fixes:

[dpdk-dev] [PATCH] net/enic: fix seg fault on MTU update with non-setup queues

2018-04-04 Thread John Daley
The enic code called from rte_eth_dev_set_mtu() was assuming that the Rx queues are already set up via a call to rte_eth_tx_queue_setup(). OVS calls rte_eth_dev_set_mtu() before rte_eth_rx_queue_setup() and a null pointer was dereferenced. Fixes: c3e09182bcd6 ("net/enic: support scatter Rx in MTU