21. External Mempool Handler Tests¶
External Mempool Handler feature is an extension to the mempool API that allows users to add and use an alternative mempool handler, which allows external memory subsystems such as external hardware memory management systems and software based memory allocators to be used with DPDK.
21.1. Test Case 1: Multiple producers and multiple consumers¶
Change default mempool handler operations to “ring_mp_mc”
Start test app and verify mempool autotest passed:
test -n 4 -c f RTE>> mempool_autotest
Start testpmd with two ports and start forwarding:
testpmd -c 0x6 -n 4 -- -i --portmask=0x3 --tx-offloads=0x8fff testpmd> set fwd mac testpmd> start
Send hundreds of packets from tester ports
verify forwarded packets sequence and integrity
21.2. Test Case 2: Single producer and Single consumer¶
Change default mempool operation to “ring_sp_sc”
Start test app and verify mempool autotest passed:
test -n 4 -c f RTE>> mempool_autotest
Start testpmd with two ports and start forwarding:
testpmd -c 0x6 -n 4 -- -i --portmask=0x3 --tx-offloads=0x8fff testpmd> set fwd mac testpmd> start
Send hundreds of packets from tester ports
verify forwarded packets sequence and integrity
21.3. Test Case 3: Single producer and Multiple consumers¶
Change default mempool operation to “ring_sp_mc”
Start test app and verify mempool autotest passed:
test -n 4 -c f RTE>> mempool_autotest
Start testpmd with two ports and start forwarding:
testpmd -c 0x6 -n 4 -- -i --portmask=0x3 --tx-offloads=0x8fff testpmd> set fwd mac testpmd> start
Send hundreds of packets from tester ports
verify forwarded packets sequence and integrity
21.4. Test Case 4: Multiple producers and single consumer¶
Change default mempool operation to “ring_mp_sc”
Start test app and verify mempool autotest passed:
test -n 4 -c f RTE>> mempool_autotest
Start testpmd with two ports and start forwarding:
testpmd -c 0x6 -n 4 -- -i --portmask=0x3 --tx-offloads=0x8fff testpmd> set fwd mac testpmd> start
Send hundreds of packets from tester ports
verify forwarded packets sequence and integrity
21.5. Test Case 4: Stack mempool handler¶
Change default mempool operation to “stack”
Start test app and verify mempool autotest passed:
test -n 4 -c f RTE>> mempool_autotest
Start testpmd with two ports and start forwarding:
testpmd -c 0x6 -n 4 -- -i --portmask=0x3 --tx-offloads=0x8fff testpmd> set fwd mac testpmd> start
Send hundreds of packets from tester ports
verify forwarded packets sequence and integrity