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)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 31 May 2023 11:08:28 +0000 (13:08 +0200)
commit60548b825b082cedf89b275c21c28b1e1d030e50
tree714037c814933699d655f45f6f4d7f4742c5f469
parent9b68f30b68701e98abcec331a2cf3df972d910f8
samples/bpf: xdp1 and xdp2 reduce XDPBUFSIZE to 60

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
samples/bpf/xdp1_kern.c
samples/bpf/xdp2_kern.c