From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 296E2A0A0C for ; Sat, 19 Jun 2021 13:04:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 259EB410FE; Sat, 19 Jun 2021 13:04:41 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id DD53940E64 for ; Sat, 19 Jun 2021 13:04:39 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id D91B7122E3A; Sat, 19 Jun 2021 13:04:39 +0200 (CEST) In-Reply-To: <20210619110154.10301-12-pbhagavatula@marvell.com> References: <20210619110154.10301-12-pbhagavatula@marvell.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Message-Id: <20210619110439.D91B7122E3A@dpdk.org> Date: Sat, 19 Jun 2021 13:04:39 +0200 (CEST) Subject: [dpdk-test-report] |WARNING| pw94552 [PATCH v2 12/13] event/cnxk: add Rx event vector fastpath X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.29 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/94552 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse 'b' - possible side-effects? #203: FILE: drivers/net/cnxk/cn10k_rx.h:32: +#define CQE_PTR_OFF(b, i, o, f) \ + (((f) & NIX_RX_VWQE_F) ? \ + (uint64_t *)(((uintptr_t)((uint64_t *)(b))[i]) + (o)) : \ + (uint64_t *)(((uintptr_t)(b)) + CQE_SZ(i) + (o))) CHECK:MACRO_ARG_REUSE: Macro argument reuse 'i' - possible side-effects? #203: FILE: drivers/net/cnxk/cn10k_rx.h:32: +#define CQE_PTR_OFF(b, i, o, f) \ + (((f) & NIX_RX_VWQE_F) ? \ + (uint64_t *)(((uintptr_t)((uint64_t *)(b))[i]) + (o)) : \ + (uint64_t *)(((uintptr_t)(b)) + CQE_SZ(i) + (o))) CHECK:MACRO_ARG_REUSE: Macro argument reuse 'o' - possible side-effects? #203: FILE: drivers/net/cnxk/cn10k_rx.h:32: +#define CQE_PTR_OFF(b, i, o, f) \ + (((f) & NIX_RX_VWQE_F) ? \ + (uint64_t *)(((uintptr_t)((uint64_t *)(b))[i]) + (o)) : \ + (uint64_t *)(((uintptr_t)(b)) + CQE_SZ(i) + (o))) total: 0 errors, 0 warnings, 3 checks, 409 lines checked --- a/doc/guides/rel_notes/release_21_08.rst +++ b/doc/guides/rel_notes/release_21_08.rst