IP reassembly RX offload is introduced in [1]. This patchset is added to test the IP reassembly RX offload and to test other inline IPsec test cases which need to be verified before testing IP reassembly in inline inbound cases. In this app, plain IP packets(with/without IP fragments) are sent on one interface for outbound processing and then the packets are received back on the same interface using loopback mode. While receiving the packets, the packets are processed for inline inbound IPsec processing and if the packets are fragmented, they will be reassembled before getting received in the driver/app.
v1 of this patchset was sent along with the ethdev changes in [2]. v2 is split so that it can be reviewed separately. changes in v2: - added IPsec burst mode case - updated as per the latest ethdev changes in [1]. [1] http://patches.dpdk.org/project/dpdk/list/?series=21283 [2] http://patches.dpdk.org/project/dpdk/list/?series=21052 Akhil Goyal (4): app/test: add unit cases for inline IPsec offload app/test: add IP reassembly case with no frags app/test: add IP reassembly cases with multiple fragments app/test: add IP reassembly negative cases MAINTAINERS | 2 +- app/test/meson.build | 1 + app/test/test_security_inline_proto.c | 1299 +++++++++++++++++ app/test/test_security_inline_proto_vectors.h | 778 ++++++++++ 4 files changed, 2079 insertions(+), 1 deletion(-) create mode 100644 app/test/test_security_inline_proto.c create mode 100644 app/test/test_security_inline_proto_vectors.h -- 2.25.1