[dpdk-dev] [PATCH] net/mlx4: fix rx not working after mbuf alloc failure

2017-04-13 Thread Myers, Charles
I ran into an issue where the mlx4 driver stops receiving packets when mbuf allocation fails in mlx4_rx_burst(). This issue appears to be caused because the code doesn't recycle the existing mbuf to the sges array when mbuf allocation fails as is done in the code right above it which handles th

[dpdk-dev] [PATCH] net/vmxnet3: Added mtu_set() function to allow setting MTU.

2019-08-16 Thread Myers, Charles
When the mtu_set() function is not implemented, rte_eth_dev_set_mtu() fails with -ENOTSUP and mtu is not stored in the mtu field in the rte_eth_dev_data. This causes the mtu in Vmxnet3_MiscConf which is shared with hypervisor to always be set to 1500. This may cause issues receiving jumbo frames

[dpdk-dev] [PATCH v2] net/vmxnet3: Added mtu_set() function to allow setting MTU.

2019-08-19 Thread Myers, Charles
From: Charles Myers When the mtu_set() function is not implemented, rte_eth_dev_set_mtu() fails with -ENOTSUP and mtu is not stored in the mtu field in the rte_eth_dev_data. This causes the mtu in Vmxnet3_MiscConf which is shared with hypervisor to always be set to 1500. This may cause issues r

[dpdk-dev] [PATCH v3] net/vmxnet3: Added mtu_set() function to allow setting MTU.

2019-08-20 Thread Myers, Charles
From: Charles Myers When the mtu_set() function is not implemented, rte_eth_dev_set_mtu() fails with -ENOTSUP and mtu is not stored in the mtu field in the rte_eth_dev_data. This causes the mtu in Vmxnet3_MiscConf which is shared with hypervisor to always be set to 1500. This may cause issues r

Re: [dpdk-dev] [PATCH v3] net/vmxnet3: Added mtu_set() function to allow setting MTU.

2019-08-20 Thread Myers, Charles
mtu . -Original Message- From: Stephen Hemminger Sent: Tuesday, August 20, 2019 6:43 PM To: Myers, Charles Cc: Yong Wang ; dev@dpdk.org Subject: Re: [PATCH v3] net/vmxnet3: Added mtu_set() function to allow setting MTU. On Wed, 21 Aug 2019 02:16:58 + "Myers, Charles" wr