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 87C5CA00C5; Thu, 7 May 2020 08:39:46 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6A70F1DA0B; Thu, 7 May 2020 08:39:46 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B18471D154; Thu, 7 May 2020 08:39:44 +0200 (CEST) IronPort-SDR: Wy07B6GdU/FbYyyfxoOst4hHywsFzWNpddZU2O7wTlRS01W20HGYnnmkU+hwrva2/sUZap77Ow MjyBp/k08bIg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 May 2020 23:39:43 -0700 IronPort-SDR: EuTgQ0LVTH63UNWhMD51zJNQ+ctX5KAiXJyAUKaY2SXAcWa/3/najnPOlcH96Ilar4UL0javec MT9ntPBpwUPA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,362,1583222400"; d="scan'208";a="407529933" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.116.183]) by orsmga004.jf.intel.com with ESMTP; 06 May 2020 23:39:42 -0700 Date: Thu, 7 May 2020 14:31:55 +0800 From: Ye Xiaolong To: alvinx.zhang@intel.com Cc: dev@dpdk.org, jia.guo@intel.com, stable@dpdk.org Message-ID: <20200507063155.GE49901@intel.com> References: <20200430062326.20676-1-alvinx.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200430062326.20676-1-alvinx.zhang@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH] net/igc: remove some useless log X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 04/30, alvinx.zhang@intel.com wrote: >From: Alvin Zhang > >As title. > >Fixes: 746664d546fb (net/igc: implement flow API) >Cc: stable@dpdk.org > >Signed-off-by: Alvin Zhang >--- > drivers/net/igc/igc_txrx.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > >diff --git a/drivers/net/igc/igc_txrx.c b/drivers/net/igc/igc_txrx.c >index 5b269b6..4654ec4 100644 >--- a/drivers/net/igc/igc_txrx.c >+++ b/drivers/net/igc/igc_txrx.c >@@ -1035,10 +1035,8 @@ int eth_igc_rx_descriptor_status(void *rx_queue, uint16_t offset) > { > struct igc_rss_filter *rss_filter = IGC_DEV_PRIVATE_RSS_FILTER(dev); > >- if (!rss_filter->enable) { >- PMD_DRV_LOG(WARNING, "RSS filter not enabled!"); >+ if (!rss_filter->enable) > return; Why this log is useless? >- } > > /* recover default RSS configuration */ > igc_rss_configure(dev); >-- >1.8.3.1 >