[V2,1/2] test_plans/ipv4_reassembly: modify script to adapt changes in dpdk
Commit Message
DPDK increase default value for config parameter RTE_LIBRTE_IP_FRAG_MAX_FRAG from 4 to 8.
Modify the script to adapt to this change.
According to dpdk commit f8e0f8ce90303b("ip_frag: increase default maximum of fragments").
Signed-off-by: Song Jiale <songx.jiale@intel.com>
---
test_plans/ipv4_reassembly_test_plan.rst | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
@@ -153,12 +153,11 @@ Sample command::
./<build_target>/examples/dpdk-ip_reassembly -c 0x2 -n 4 -- \
-P -p 0x2 --config "(1,0,1)" --maxflows=1024 --flowttl=10s
-Sends 1 packet split in 5 fragments while the maximum number of supported
-fragments per packet is 4.
+Sends 1 frame split in into maximum fragments + 1 fragment, the packet can't be forwarded back.
It expects:
- - 5 IP packets to be sent to the DUT.
+ - (maximum fragments + 1 fragment) IP packets to be sent to the DUT.
- 0 TCP packets being forwarded back to the TESTER.
- 0 packets with a valid TCP checksum.