|WARNING| pw168103 [PATCH v1 03/21] net/intel/common: add utility functions

checkpatch at dpdk.org checkpatch at dpdk.org
Thu Aug 20 16:02:32 CEST 2026


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

_coding style issues_


CHECK:MACRO_ARG_REUSE: Macro argument reuse 'field_ptr' - possible side-effects?
#191: FILE: drivers/net/intel/common/flow_util.h:110:
+#define CI_FIELD_IS_ZERO_OR_MASKED(field_ptr) \
+	ci_is_all_zero_or_masked((field_ptr), sizeof(*(field_ptr)))

CHECK:MACRO_ARG_REUSE: Macro argument reuse 'field_ptr' - possible side-effects?
#200: FILE: drivers/net/intel/common/flow_util.h:119:
+#define CI_FIELD_IS_ZERO(field_ptr) \
+	ci_is_all_byte((field_ptr), sizeof(*(field_ptr)), 0x00)

CHECK:MACRO_ARG_REUSE: Macro argument reuse 'field_ptr' - possible side-effects?
#209: FILE: drivers/net/intel/common/flow_util.h:128:
+#define CI_FIELD_IS_MASKED(field_ptr) \
+	ci_is_all_byte((field_ptr), sizeof(*(field_ptr)), 0xFF)

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


More information about the test-report mailing list