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 5D1CEA04C3 for ; Fri, 22 Nov 2019 15:43:00 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 439351BE8D; Fri, 22 Nov 2019 15:43:00 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 61E5491 for ; Fri, 22 Nov 2019 15:42:59 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574433778; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=dPaYTw03U8pauTQqSqzldf9GHsjuHo84C3hWKjGPzKk=; b=KSWJqOrzcH3eqwNqDzjHdpPdC13yVb25nJ5ndRd2h5XCl6db9RsOVPSbZKhbrch0wEOqvD Z6oYb+Zr7BdFjbCUJGDpTOjpljJReYxMvWBaIupIeEYO0eOXdPJlWNMkK50sqEVAiG/2OO 5JFJ7ioBl04K/JFHWA0i5cZrVpVvzwU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-379-D5coQZgIMhaXYLhH_tP8xw-1; Fri, 22 Nov 2019 09:42:55 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 74CB1DBA3; Fri, 22 Nov 2019 14:42:54 +0000 (UTC) Received: from rh.redhat.com (unknown [10.36.118.60]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9A5568516; Fri, 22 Nov 2019 14:42:50 +0000 (UTC) From: Kevin Traynor To: Eelco Chaudron Cc: David Marchand , Xiaolong Ye , dpdk stable Date: Fri, 22 Nov 2019 14:41:23 +0000 Message-Id: <20191122144131.21231-37-ktraynor@redhat.com> In-Reply-To: <20191122144131.21231-1-ktraynor@redhat.com> References: <20191122144131.21231-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: D5coQZgIMhaXYLhH_tP8xw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] patch 'net/i40e: downgrade error log' has been queued to LTS release 18.11.6 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" Hi, FYI, your patch has been queued to LTS release 18.11.6 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/29/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasi= ng (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable-queue This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable-queue/commit/f4aa2636a30b5c6e0c= ce7c361b21215996f6c795 Thanks. Kevin. --- >From f4aa2636a30b5c6e0cce7c361b21215996f6c795 Mon Sep 17 00:00:00 2001 From: Eelco Chaudron Date: Thu, 12 Sep 2019 06:38:35 -0400 Subject: [PATCH] net/i40e: downgrade error log [ upstream commit 9763595925aa0488392035dbb15522dc2200c6d4 ] 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. Fixes: ae19955e7c86 ("i40evf: support reporting PF reset") Signed-off-by: Eelco Chaudron Reviewed-by: David Marchand Reviewed-by: Xiaolong Ye --- 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_ethd= ev_vf.c index 0f7aa5a72..4f6a1975f 100644 --- a/drivers/net/i40e/i40e_ethdev_vf.c +++ b/drivers/net/i40e/i40e_ethdev_vf.c @@ -1360,5 +1360,5 @@ i40evf_handle_aq_msg(struct rte_eth_dev *dev) =09=09=09break; =09=09default: -=09=09=09PMD_DRV_LOG(ERR, "Request %u is not supported yet", +=09=09=09PMD_DRV_LOG(DEBUG, "Request %u is not supported yet", =09=09=09=09 aq_opc); =09=09=09break; --=20 2.21.0 --- Diff of the applied patch vs upstream commit (please double-check if non-= empty: --- --- -=092019-11-22 14:36:57.180092511 +0000 +++ 0037-net-i40e-downgrade-error-log.patch=092019-11-22 14:36:55.210149008= +0000 @@ -1 +1 @@ -From 9763595925aa0488392035dbb15522dc2200c6d4 Mon Sep 17 00:00:00 2001 +From f4aa2636a30b5c6e0cce7c361b21215996f6c795 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 9763595925aa0488392035dbb15522dc2200c6d4 ] + @@ -14 +15,0 @@ -Cc: stable@dpdk.org @@ -24 +25 @@ -index c77b30c54..7b1d485c6 100644 +index 0f7aa5a72..4f6a1975f 100644 @@ -27 +28 @@ -@@ -1412,5 +1412,5 @@ i40evf_handle_aq_msg(struct rte_eth_dev *dev) +@@ -1360,5 +1360,5 @@ i40evf_handle_aq_msg(struct rte_eth_dev *dev)