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 AB62CA00C5 for ; Mon, 6 Jul 2020 10:34:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DFD7D1DB0F; Mon, 6 Jul 2020 10:34:35 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id A762C1DAF5; Mon, 6 Jul 2020 10:34:31 +0200 (CEST) In-Reply-To: <20200706082502.26935-21-somnath.kotur@broadcom.com> References: <20200706082502.26935-21-somnath.kotur@broadcom.com> To: test-report@dpdk.org Cc: Somnath Kotur Message-Id: <20200706083431.A762C1DAF5@dpdk.org> Date: Mon, 6 Jul 2020 10:34:31 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw73218 [PATCH 20/20] net/bnxt: use byte/pkt count shift/masks from the device template 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/73218 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse 'd' - possible side-effects? #160: FILE: drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h:19: +#define FLOW_CNTR_PKTS(v, d) (((v) & (d)->packet_count_mask) >> \ + (d)->packet_count_shift) CHECK:MACRO_ARG_REUSE: Macro argument reuse 'd' - possible side-effects? #162: FILE: drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h:21: +#define FLOW_CNTR_BYTES(v, d) (((v) & (d)->byte_count_mask) >> \ + (d)->byte_count_shift) total: 0 errors, 0 warnings, 2 checks, 85 lines checked