sync patches from 22.07 for hns3, dma and testpmd etc. Signed-off-by: Dongdong Liu <liudongdong3@huawei.com> (cherry picked from commit 7beb6a72fff2920a2d993030b0b02822249707fb)
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
From 519b373d853909d953ff0c0fc6b15199be516fdd Mon Sep 17 00:00:00 2001
|
|
From: Huisong Li <lihuisong@huawei.com>
|
|
Date: Thu, 9 Jun 2022 16:52:34 +0800
|
|
Subject: [PATCH 120/122] app/testpmd: add help messages for multi-process
|
|
|
|
This patch adds help messages for multi-process.
|
|
--num-procs=N: set the total number of multi-process instances.
|
|
--proc-id=id: set the id of the current process from multi-process
|
|
instances(0 <= id < num-procs).
|
|
|
|
Fixes: a550baf24af9 ("app/testpmd: support multi-process")
|
|
Cc: stable@dpdk.org
|
|
|
|
Signed-off-by: Huisong Li <lihuisong@huawei.com>
|
|
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
|
|
Signed-off-by: Dongdong Liu <liudongdong3@huawei.com>
|
|
Acked-by: Ferruh Yigit <ferruh.yigit@xilinx.com>
|
|
---
|
|
app/test-pmd/parameters.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/app/test-pmd/parameters.c b/app/test-pmd/parameters.c
|
|
index f9185065af..24e03e769c 100644
|
|
--- a/app/test-pmd/parameters.c
|
|
+++ b/app/test-pmd/parameters.c
|
|
@@ -61,6 +61,9 @@ usage(char* progname)
|
|
"extended statistics to show. Used with --stats-period "
|
|
"specified or interactive commands that show Rx/Tx statistics "
|
|
"(i.e. 'show port stats').\n");
|
|
+ printf(" --num-procs=N: set the total number of multi-process instances.\n");
|
|
+ printf(" --proc-id=id: set the id of the current process from "
|
|
+ "multi-process instances (0 <= id < num-procs).\n");
|
|
printf(" --nb-cores=N: set the number of forwarding cores "
|
|
"(1 <= N <= %d).\n", nb_lcores);
|
|
printf(" --nb-ports=N: set the number of forwarding ports "
|
|
--
|
|
2.22.0
|
|
|