From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id D6BFBA0613 for ; Fri, 27 Sep 2019 14:09:27 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A09DC1BF3D; Fri, 27 Sep 2019 14:09:26 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id C335D1BF01; Fri, 27 Sep 2019 14:06:46 +0200 (CEST) In-Reply-To: <1569506528-60464-15-git-send-email-xavier.huwei@huawei.com> References: <1569506528-60464-15-git-send-email-xavier.huwei@huawei.com> To: test-report@dpdk.org Cc: "Wei Hu (Xavier)" Message-Id: <20190927120646.C335D1BF01@dpdk.org> Date: Fri, 27 Sep 2019 14:06:46 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw59890 [PATCH v3 14/22] net/hns3: add support for mailbox of hns3 PMD driver X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: automatic DPDK test reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: test-report-bounces@dpdk.org Sender: "test-report" Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/59890 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse 'crq' - possible side-effects? #562: 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? #564: 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? #566: 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