Skip to content

Commit 6d190ae

Browse files
committed
dpdk: Check other_config:dpdk-extra for '--lcores'.
Currently dpdk lcore args for DPDK EAL init can be generated or they can be written directly by the user through dpdk-extra. If dpdk-extra does not contain '-l' or '-c', a '-l' argument with a core list for DPDK EAL init will be generated. The '--lcores' argument should also be checked, as if it is used in dpdk-extra, currently a '-l' is still generated and that causes DPDK EAL init to fail: |00009|dpdk|INFO|EAL ARGS: ovs-vswitchd --lcores 0@18 --in-memory -l 0. |00012|dpdk|ERR|EAL: Option -l is ignored, because (--lcore) is set! Add check for '--lcores' in dpdk-extra config and don't generate '-l' if it is detected: |00009|dpdk|INFO|EAL ARGS: ovs-vswitchd --lcores 0@8 --in-memory. Fixes: 543342a ("DPDK: add support for v2.0.0") Signed-off-by: Kevin Traynor <[email protected]> Reviewed-by: David Marchand <[email protected]> Acked-by: Eelco Chaudron <[email protected]>
1 parent 8499e90 commit 6d190ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/dpdk.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ dpdk_init__(const struct smap *ovs_other_config)
337337
}
338338
#endif
339339

340-
if (args_contains(&args, "-c") || args_contains(&args, "-l")) {
340+
if (args_contains(&args, "-c") ||
341+
args_contains(&args, "-l") ||
342+
args_contains(&args, "--lcores")) {
341343
auto_determine = false;
342344
}
343345

0 commit comments

Comments
 (0)