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 4CF42A2EEB for ; Fri, 13 Sep 2019 11:00:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 05C4D1F086; Fri, 13 Sep 2019 11:00:17 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 1D82B1F086; Fri, 13 Sep 2019 11:00:15 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 64EE87F746; Fri, 13 Sep 2019 09:00:14 +0000 (UTC) Received: from [10.36.116.214] (ovpn-116-214.ams2.redhat.com [10.36.116.214]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E3B29600CE; Fri, 13 Sep 2019 09:00:03 +0000 (UTC) From: "Eelco Chaudron" To: "Ye Xiaolong" , stable@dpdk.org Cc: "David Marchand" , "Beilei Xing" , "Qi Zhang" , dev , "Kevin Traynor" Date: Fri, 13 Sep 2019 11:00:02 +0200 Message-ID: <0D62C8C6-EE28-401F-BE60-B388EADD70BC@redhat.com> In-Reply-To: <20190912124049.GA71525@intel.com> References: <8daee65a8edeae439ba9c2542877744b5be53684.1568284682.git.echaudro@redhat.com> <20190912124049.GA71525@intel.com> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.71]); Fri, 13 Sep 2019 09:00:14 +0000 (UTC) Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] net/i40e: downgrade unnecessary error log X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Forgot to include the stable alias to get this in 18.11, sorry Kevin //Eelco On 12 Sep 2019, at 14:40, Ye Xiaolong wrote: > On 09/12, David Marchand wrote: >> On Thu, Sep 12, 2019 at 12:38 PM Eelco Chaudron >> wrote: >>> >>> When receiving the unsupported AQ messages, it's taken as an >>> error. It's not appropriate and triggers too much unnecessary print. >>> >>> This commit is similar to commit e130425300b0 ("net/i40e: downgrade >>> unnecessary error log") which made the same change for the PF >>> instance. >>> >>> Signed-off-by: Eelco Chaudron >>> --- >>> drivers/net/i40e/i40e_ethdev_vf.c | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/drivers/net/i40e/i40e_ethdev_vf.c >>> b/drivers/net/i40e/i40e_ethdev_vf.c >>> index c77b30c54..7b1d485c6 100644 >>> --- a/drivers/net/i40e/i40e_ethdev_vf.c >>> +++ b/drivers/net/i40e/i40e_ethdev_vf.c >>> @@ -1411,7 +1411,7 @@ i40evf_handle_aq_msg(struct rte_eth_dev *dev) >>> } >>> break; >>> default: >>> - PMD_DRV_LOG(ERR, "Request %u is not >>> supported yet", >>> + PMD_DRV_LOG(DEBUG, "Request %u is not >>> supported yet", >>> aq_opc); >>> break; >>> } >>> -- >>> 2.18.1 >>> >> >> Reviewed-by: David Marchand >> >> >> -- >> David Marchand > > Reviewed-by: Xiaolong Ye > > Applied to dpdk-next-net-intel.