net/af_xdp: fix maximum MTU
authorCiara Loftus <ciara.loftus@intel.com>
Thu, 13 Feb 2020 08:49:14 +0000 (08:49 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 14 Feb 2020 11:42:12 +0000 (12:42 +0100)
commit1668e87d4d51e9f4c333dcafa0c3e189b1eaee35
tree3fe391ad1f049ed8f1ddd69ad54c69dabb48e01a
parent96d8ae9990c0a213255b4dc45c53368ea2c92bfa
net/af_xdp: fix maximum MTU

The maximum MTU for af_xdp zero copy is equal to the page size less the
frame overhead introduced by AF_XDP (XDP HR = 256) and DPDK (frame
headroom = 320). The patch updates this value to reflect this.

This change also makes it possible to remove unneeded constants for both
zero-copy and copy mode.

Fixes: d8a210774e1d ("net/af_xdp: support unaligned umem chunks")
Cc: stable@dpdk.org
Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>
drivers/net/af_xdp/rte_eth_af_xdp.c