> -----Original Message----- > From: Stephen Hemminger <[email protected]> > Sent: Thursday 22 January 2026 00:51 > To: [email protected] > Cc: Stephen Hemminger <[email protected]>; [email protected]; Marat > Khalili > <[email protected]>; Konstantin Ananyev <[email protected]> > Subject: [PATCH v3 14/14] test/bpf: pass correct size for Rx/Tx load tests > > Use the correct size in bpf_prm to help with validation. > > Fixes: 81038845c90b ("test/bpf: add Rx and Tx filtering") > Cc: [email protected] > > Suggested-by: Marat Khalili <[email protected]> > Signed-off-by: Stephen Hemminger <[email protected]> > --- > app/test/test_bpf.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/app/test/test_bpf.c b/app/test/test_bpf.c > index 8bf783c00c..bf92bc545c 100644 > --- a/app/test/test_bpf.c > +++ b/app/test/test_bpf.c > @@ -3533,7 +3533,7 @@ static int bpf_tx_test(uint16_t port, const char > *tmpfile, struct rte_mempool *p > const struct rte_bpf_prm prm = { > .prog_arg = { > .type = RTE_BPF_ARG_PTR, > - .size = sizeof(struct rte_mbuf), > + .size = sizeof(struct dummy_net), > }, > }; > int ret; > @@ -3632,7 +3632,7 @@ static int bpf_rx_test(uint16_t port, const char > *tmpfile, struct rte_mempool *p > const struct rte_bpf_prm prm = { > .prog_arg = { > .type = RTE_BPF_ARG_PTR, > - .size = sizeof(struct rte_mbuf), > + .size = sizeof(struct dummy_net), > }, > }; > int ret; > -- > 2.51.0
Thank you for fixing this. Not sure we actually have VLAN tag there, but it is less misleading now in any case. Acked-by: Marat Khalili <[email protected]>

