samples/bpf: xdp1 and xdp2 reduce XDPBUFSIZE to 60
authorJesper Dangaard Brouer <brouer@redhat.com>
Tue, 30 May 2023 14:30:41 +0000 (16:30 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Jul 2023 14:21:07 +0000 (16:21 +0200)
commitcf5beb8ce97acc6c4d3aafacc220d536abc88ec9
tree00d65ca5259cc9f93149389b3ffaefbf10d8b77e
parent09740fa9827cfbaf23ecd041e602a426f99be888
samples/bpf: xdp1 and xdp2 reduce XDPBUFSIZE to 60

[ Upstream commit 60548b825b082cedf89b275c21c28b1e1d030e50 ]

Default samples/pktgen scripts send 60 byte packets as hardware adds
4-bytes FCS checksum, which fulfils minimum Ethernet 64 bytes frame
size.

XDP layer will not necessary have access to the 4-bytes FCS checksum.

This leads to bpf_xdp_load_bytes() failing as it tries to copy 64-bytes
from an XDP packet that only have 60-bytes available.

Fixes: 772251742262 ("samples/bpf: fixup some tools to be able to support xdp multibuffer")
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Link: https://lore.kernel.org/bpf/168545704139.2996228.2516528552939485216.stgit@firesoul
Signed-off-by: Sasha Levin <sashal@kernel.org>
samples/bpf/xdp1_kern.c
samples/bpf/xdp2_kern.c