Cleanup example of the dpdk-testpmd usage: - "-n 4" is unneeded as it is the default value, - --txqflags and --disable-hw-vlan options are legacy/driver specific tweaks that are unneeded in most cases,
Signed-off-by: David Marchand <[email protected]> --- Documentation/howto/dpdk.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Documentation/howto/dpdk.rst b/Documentation/howto/dpdk.rst index 2c4d2d2eef..137159a586 100644 --- a/Documentation/howto/dpdk.rst +++ b/Documentation/howto/dpdk.rst @@ -221,8 +221,7 @@ within the guest. To accomplish this, build the ``dpdk-testpmd`` application as described in :ref:`dpdk-testpmd`. Once compiled, run the application:: $ cd /path/to/dpdk/build/ - $ ./dpdk-testpmd -c 0x3 -n 4 --socket-mem 1024 -- \ - --burst=64 -i --txqflags=0xf00 --disable-hw-vlan + $ ./dpdk-testpmd -c 0x3 --socket-mem 1024 -- --burst=64 -i $ set fwd mac retry $ start -- 2.49.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
