On 10/16/2023 9:59 PM, Joshua Washington wrote: > Before this patch, max_rx_pktlen was always set to UINT16_MAX. This, in > conjunction with the MTU fix, causes problems with testpmd, as setting the > packet length with the --max-pkt-len flag causes the MTU to be set > higher than possible due to underflow. > > As an example, setting --max-pkt-len=1460 (the default MTU on Google > Cloud VMs) causes testpmd to set the following: > mtu = 1460 - eth_overhead, > > where eth_overhead = dev->max_rx_pktlen - dev->max_mtu = 65535 - 1460. > > Thus, mtu = 1460 - 65535 + 1460 = 2921 due to underflow. > > Signed-off-by: Joshua Washington <joshw...@google.com> > > Fixes: 030025b74202 ("net/gve: fix max MTU limit") > Cc: joshw...@google.com >
Cc: sta...@dpdk.org Applied to dpdk-next-net/main, thanks.