|WARNING| pw108443 [PATCH v6 1/2] examples/l3fwd: add config file support for LPM/FIB

checkpatch at dpdk.org checkpatch at dpdk.org
Tue Mar 1 15:51:07 CET 2022


Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/108443

_coding style issues_


WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#407: FILE: examples/l3fwd/l3fwd_route.h:13:
+#define GET_CB_FIELD(in, fd, base, lim, dlm)	do {            \
+	unsigned long val;                                      \
+	char *end;                                              \
+	errno = 0;                                              \
+	val = strtoul((in), &end, (base));                      \
+	if (errno != 0 || end[0] != (dlm) || val > (lim))       \
+		return -EINVAL;                               \
+	(fd) = (typeof(fd))val;                                 \
+	(in) = end + 1;                                         \
+} while (0)

total: 0 errors, 1 warnings, 815 lines checked


More information about the test-report mailing list