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