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 BFEF1A04C3 for ; Fri, 22 Nov 2019 15:42:17 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B704A2C2B; Fri, 22 Nov 2019 15:42:17 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 75A2F2BBD for ; Fri, 22 Nov 2019 15:42:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574433735; 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=mX0pmrXhGsWeFdZsdPWaZ3jINZy3P11+nT8rsap55JI=; b=RkHRxA8hqne3aZaNjpaiL/VXjYY9rvR4Q3qFH4jcAlRr2/lnezxaRm8ZuQ1oboXC3XaNq7 WL2BUO3G52Y9h/obLU3uEbOVgyTmXGJj0xFVAQqF45jRmW+fRlm/rJ6CEfnL7WLMOgSIP+ 6Dq68XIF+9EQHSRQFf5HrAQWO2vS4mE= 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-101-keMiPMrbMImBJ8CC5uIc5A-1; Fri, 22 Nov 2019 09:42:12 -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 7366DDB60; Fri, 22 Nov 2019 14:42:11 +0000 (UTC) Received: from rh.redhat.com (unknown [10.36.118.60]) by smtp.corp.redhat.com (Postfix) with ESMTP id 655969F47; Fri, 22 Nov 2019 14:42:10 +0000 (UTC) From: Kevin Traynor To: Junyu Jiang Cc: Qiming Yang , dpdk stable Date: Fri, 22 Nov 2019 14:41:02 +0000 Message-Id: <20191122144131.21231-16-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: keMiPMrbMImBJ8CC5uIc5A-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] patch 'net/ixgbe: fix queue interrupt for X552/557' 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/ff11a3b5421a25b645= 6392240aec8779a56f3e14 Thanks. Kevin. --- >From ff11a3b5421a25b6456392240aec8779a56f3e14 Mon Sep 17 00:00:00 2001 From: Junyu Jiang Date: Wed, 4 Sep 2019 03:31:47 +0000 Subject: [PATCH] net/ixgbe: fix queue interrupt for X552/557 [ upstream commit f26f416d4c3ac8b77cd8dd84f72628b37fec7283 ] Interrupt mode is not working on X552/557 device because this device doesn't enable the queue interrupt mapping, this patch fixed the issue. Fixes: d2e72774e58c ("ixgbe/base: support X550") Signed-off-by: Junyu Jiang Acked-by: Qiming Yang --- drivers/net/ixgbe/ixgbe_ethdev.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_eth= dev.c index 794bb0125..1eb1315c9 100644 --- a/drivers/net/ixgbe/ixgbe_ethdev.c +++ b/drivers/net/ixgbe/ixgbe_ethdev.c @@ -5871,5 +5871,6 @@ ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direct= ion, =09} else if ((hw->mac.type =3D=3D ixgbe_mac_82599EB) || =09=09=09(hw->mac.type =3D=3D ixgbe_mac_X540) || -=09=09=09(hw->mac.type =3D=3D ixgbe_mac_X550)) { +=09=09=09(hw->mac.type =3D=3D ixgbe_mac_X550) || +=09=09=09(hw->mac.type =3D=3D ixgbe_mac_X550EM_x)) { =09=09if (direction =3D=3D -1) { =09=09=09/* other causes */ @@ -6001,4 +6002,5 @@ ixgbe_configure_msix(struct rte_eth_dev *dev) =09=09case ixgbe_mac_X540: =09=09case ixgbe_mac_X550: +=09=09case ixgbe_mac_X550EM_x: =09=09=09ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID); =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:56.079553491 +0000 +++ 0016-net-ixgbe-fix-queue-interrupt-for-X552-557.patch=092019-11-22 14:3= 6:55.178149692 +0000 @@ -1 +1 @@ -From f26f416d4c3ac8b77cd8dd84f72628b37fec7283 Mon Sep 17 00:00:00 2001 +From ff11a3b5421a25b6456392240aec8779a56f3e14 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit f26f416d4c3ac8b77cd8dd84f72628b37fec7283 ] + @@ -11 +12,0 @@ -Cc: stable@dpdk.org @@ -20 +21 @@ -index f328d7c03..e985053d6 100644 +index 794bb0125..1eb1315c9 100644 @@ -23 +24 @@ -@@ -5896,5 +5896,6 @@ ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direc= tion, +@@ -5871,5 +5871,6 @@ ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direc= tion, @@ -31 +32 @@ -@@ -6026,4 +6027,5 @@ ixgbe_configure_msix(struct rte_eth_dev *dev) +@@ -6001,4 +6002,5 @@ ixgbe_configure_msix(struct rte_eth_dev *dev)