[dpdk-dev] [PATCH] pipeline: adjust error code for internal function

Cristian Dumitrescu cristian.dumitrescu at intel.com
Tue Mar 30 12:19:04 CEST 2021


Adjusting the error code for the internal function instruction_config
to match the rest of the code which is returning a negative value on
error. Cosmetic change.

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu at intel.com>
---
 lib/librte_pipeline/rte_swx_pipeline.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/librte_pipeline/rte_swx_pipeline.c b/lib/librte_pipeline/rte_swx_pipeline.c
index 48ac250c1..f46f90c34 100644
--- a/lib/librte_pipeline/rte_swx_pipeline.c
+++ b/lib/librte_pipeline/rte_swx_pipeline.c
@@ -8049,20 +8049,20 @@ instruction_config(struct rte_swx_pipeline *p,
 	/* Memory allocation. */
 	instr = calloc(n_instructions, sizeof(struct instruction));
 	if (!instr) {
-		err = ENOMEM;
+		err = -ENOMEM;
 		goto error;
 	}
 
 	data = calloc(n_instructions, sizeof(struct instruction_data));
 	if (!data) {
-		err = ENOMEM;
+		err = -ENOMEM;
 		goto error;
 	}
 
 	for (i = 0; i < n_instructions; i++) {
 		char *string = strdup(instructions[i]);
 		if (!string) {
-			err = ENOMEM;
+			err = -ENOMEM;
 			goto error;
 		}
 
-- 
2.17.1



More information about the dev mailing list