[dpdk-dev] [PATCH v13 3/4] code changes to avoid the ASan error
From: <hidden>
Date: 2021-10-20 07:47:34
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: <hidden>
Date: 2021-10-20 07:47:34
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Zhihong Peng <redacted> Code changes to avoid the following ASan error: "Control reaches end of non-void function". Signed-off-by: Xueqin Lin <redacted> Signed-off-by: Zhihong Peng <redacted> Acked-by: Cristian Dumitrescu <redacted> --- v7: no change. v8: no change. v9: Modify the submit log. v10:no change. v11:no change. v12:Modify the commit log. v13:Modify the commit log. --- lib/pipeline/rte_swx_pipeline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/pipeline/rte_swx_pipeline.c b/lib/pipeline/rte_swx_pipeline.c
index 1cd09a4b44..0acd6c6752 100644
--- a/lib/pipeline/rte_swx_pipeline.c
+++ b/lib/pipeline/rte_swx_pipeline.c@@ -4642,7 +4642,7 @@ instr_meter_translate(struct rte_swx_pipeline *p, return 0; } - CHECK(0, EINVAL); + return -EINVAL; } static inline void
@@ -5937,7 +5937,7 @@ instr_translate(struct rte_swx_pipeline *p, instr, data); - CHECK(0, EINVAL); + return -EINVAL; } static struct instruction_data *
--
2.25.1