[dpdk-dev] [PATCH v5 2/2] Fix gcc compilation error using ASan
From: <hidden>
Date: 2021-09-24 09:42:20
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: <hidden>
Date: 2021-09-24 09:42:20
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Zhihong Peng <redacted> After adding ASan, the gcc compilation check will be stricter. "Control reaches end of non-void function" error occurs here. Fixes: f38913b7fb8e (pipeline: add meter array to SWX) Cc: stable@dpdk.org Signed-off-by: Xueqin Lin <redacted> Signed-off-by: Zhihong Peng <redacted> --- 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 8eb978a30c..aaa0107d02 100644
--- a/lib/pipeline/rte_swx_pipeline.c
+++ b/lib/pipeline/rte_swx_pipeline.c@@ -6340,7 +6340,7 @@ instr_meter_translate(struct rte_swx_pipeline *p, return 0; } - CHECK(0, EINVAL); + return -EINVAL; } static inline struct meter *
@@ -8025,7 +8025,7 @@ instr_translate(struct rte_swx_pipeline *p, instr, data); - CHECK(0, EINVAL); + return -EINVAL; } static struct instruction_data *
--
2.25.1