[dpdk-test-report] |WARNING| pw25218 [PATCH v3 1/4] net/i40e: support flexible payload parsing for FDIR

checkpatch at dpdk.org checkpatch at dpdk.org
Fri Jun 9 10:26:27 CEST 2017


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

_coding style issues_


CHECK:MACRO_ARG_REUSE: Macro argument reuse 'dst_offset' - possible side-effects?
#39: FILE: drivers/net/i40e/i40e_ethdev.h:439:
+#define MK_FLX_PIT(src_offset, fsize, dst_offset) ( \
+	(((src_offset) << I40E_PRTQF_FLX_PIT_SOURCE_OFF_SHIFT) & \
+		I40E_PRTQF_FLX_PIT_SOURCE_OFF_MASK) | \
+	(((fsize) << I40E_PRTQF_FLX_PIT_FSIZE_SHIFT) & \
+			I40E_PRTQF_FLX_PIT_FSIZE_MASK) | \
+	((((dst_offset) == NONUSE_FLX_PIT_DEST_OFF ? \
+			NONUSE_FLX_PIT_DEST_OFF : \
+			((dst_offset) + I40E_FLX_OFFSET_IN_FIELD_VECTOR)) << \
+			I40E_PRTQF_FLX_PIT_DEST_OFF_SHIFT) & \
+			I40E_PRTQF_FLX_PIT_DEST_OFF_MASK))

CHECK:BRACES: braces {} should be used on all arms of this statement
#457: FILE: drivers/net/i40e/i40e_flow.c:1357:
+			if (ret < 0) {
[...]
+			} else if (ret > 0)
[...]

CHECK:BRACES: braces {} should be used on all arms of this statement
#484: FILE: drivers/net/i40e/i40e_flow.c:1412:
+	if (ret == -1) {
[...]
+	} else if (ret == -2) {
[...]
+	} else if (ret > 0)
[...]

total: 0 errors, 0 warnings, 3 checks, 455 lines checked


More information about the test-report mailing list