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 8C7B9A04C7 for ; Wed, 16 Sep 2020 05:27:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4578A1C127; Wed, 16 Sep 2020 05:27:57 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id 894F21C139; Wed, 16 Sep 2020 05:27:54 +0200 (CEST) In-Reply-To: <20200916031002.42122-3-junyux.jiang@intel.com> References: <20200916031002.42122-3-junyux.jiang@intel.com> To: test-report@dpdk.org Cc: Junyu Jiang Message-Id: <20200916032754.894F21C139@dpdk.org> Date: Wed, 16 Sep 2020 05:27:54 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw77824 [PATCH v3 2/5] net/ice: add flow director enabled switch value 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/77824 _coding style issues_ CHECK:MACRO_ARG_REUSE: Macro argument reuse 'ad' - possible side-effects? #144: FILE: drivers/net/ice/ice_rxtx.h:249: +#define FDIR_PARSING_ENABLE_PER_QUEUE(ad, on) do { \ + int i; \ + for (i = 0; i < (ad)->eth_dev->data->nb_rx_queues; i++) { \ + struct ice_rx_queue *rxq = (ad)->eth_dev->data->rx_queues[i]; \ + if (!rxq) \ + continue; \ + rxq->fdir_enabled = on; \ + } \ + PMD_DRV_LOG(DEBUG, "FDIR processing on RX set to %d", on); \ +} while (0) CHECK:MACRO_ARG_REUSE: Macro argument reuse 'on' - possible side-effects? #144: FILE: drivers/net/ice/ice_rxtx.h:249: +#define FDIR_PARSING_ENABLE_PER_QUEUE(ad, on) do { \ + int i; \ + for (i = 0; i < (ad)->eth_dev->data->nb_rx_queues; i++) { \ + struct ice_rx_queue *rxq = (ad)->eth_dev->data->rx_queues[i]; \ + if (!rxq) \ + continue; \ + rxq->fdir_enabled = on; \ + } \ + PMD_DRV_LOG(DEBUG, "FDIR processing on RX set to %d", on); \ +} while (0) total: 0 errors, 0 warnings, 2 checks, 81 lines checked