From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 89861C38A24 for ; Thu, 7 May 2020 06:39:47 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 46FE120753 for ; Thu, 7 May 2020 06:39:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 46FE120753 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org 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 >