Re: [dpdk-dev] [PATCH] app/testpmd: support multi-process

2021-03-10 Thread Min Hu (Connor)
在 2021/3/5 12:05, Ajit Khaparde 写道: On Thu, Mar 4, 2021 at 5:03 PM Lijun Ou wrote: This patch adds multi-process support for testpmd. The test cmd example as follows: the primary cmd: ./testpmd -w xxx --file-prefix=xx -l 0-1 -n 2 -- -i\ --rxq=16 --txq=16 --num-procs=2 --proc-id=0 the second

Re: [dpdk-dev] [PATCH] app/testpmd: support multi-process

2021-03-05 Thread Ajit Khaparde
On Thu, Mar 4, 2021 at 5:03 PM Lijun Ou wrote: > This patch adds multi-process support for testpmd. > The test cmd example as follows: > the primary cmd: > ./testpmd -w xxx --file-prefix=xx -l 0-1 -n 2 -- -i\ > --rxq=16 --txq=16 --num-procs=2 --proc-id=0 > the secondary cmd: > ./testpmd -w xxx --

[dpdk-dev] [PATCH] app/testpmd: support multi-process

2021-03-04 Thread Lijun Ou
This patch adds multi-process support for testpmd. The test cmd example as follows: the primary cmd: ./testpmd -w xxx --file-prefix=xx -l 0-1 -n 2 -- -i\ --rxq=16 --txq=16 --num-procs=2 --proc-id=0 the secondary cmd: ./testpmd -w xxx --file-prefix=xx -l 2-3 -n 2 -- -i\ --rxq=16 --txq=16 --num-procs