[PATCH v2 06/20] pipeline: do not check for invalid socket ID
From: Anatoly Burakov <hidden>
Date: 2018-09-19 13:57:03
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Anatoly Burakov <hidden>
Date: 2018-09-19 13:57:03
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
We will be assigning "invalid" socket ID's to external heap, and malloc will now be able to verify if a supplied socket ID is in fact a valid one, rendering parameter checks for sockets obsolete. Signed-off-by: Anatoly Burakov <redacted> --- lib/librte_pipeline/rte_pipeline.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/librte_pipeline/rte_pipeline.c b/lib/librte_pipeline/rte_pipeline.c
index 0cb8b804e..2c047a8a4 100644
--- a/lib/librte_pipeline/rte_pipeline.c
+++ b/lib/librte_pipeline/rte_pipeline.c@@ -178,8 +178,7 @@ rte_pipeline_check_params(struct rte_pipeline_params *params) } /* socket */ - if ((params->socket_id < 0) || - (params->socket_id >= RTE_MAX_NUMA_NODES)) { + if (params->socket_id < 0) { RTE_LOG(ERR, PIPELINE, "%s: Incorrect value for parameter socket_id\n", __func__);
--
2.17.1