[dpdk-test-report] |WARNING| pw59524 [PATCH v2 14/22] net/hns3: add support for mailbox of hns3 PMD driver

checkpatch at dpdk.org checkpatch at dpdk.org
Fri Sep 20 15:30:30 CEST 2019


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

_coding style issues_


CHECK:MACRO_ARG_REUSE: Macro argument reuse 'crq' - possible side-effects?
#561: FILE: drivers/net/hns3/hns3_mbx.h:124:
+#define hns3_mbx_ring_ptr_move_crq(crq) \
+	((crq)->next_to_use = ((crq)->next_to_use + 1) % (crq)->desc_num)

CHECK:MACRO_ARG_REUSE: Macro argument reuse 'arq' - possible side-effects?
#563: FILE: drivers/net/hns3/hns3_mbx.h:126:
+#define hns3_mbx_tail_ptr_move_arq(arq) \
+	((arq).tail = ((arq).tail + 1) % HNS3_MBX_MAX_ARQ_MSG_SIZE)

CHECK:MACRO_ARG_REUSE: Macro argument reuse 'arq' - possible side-effects?
#565: FILE: drivers/net/hns3/hns3_mbx.h:128:
+#define hns3_mbx_head_ptr_move_arq(arq) \
+		((arq).head = ((arq).head + 1) % HNS3_MBX_MAX_ARQ_MSG_SIZE)

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


More information about the test-report mailing list