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 3C617A0613 for ; Tue, 27 Aug 2019 07:44:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9D9ED1BFC1; Tue, 27 Aug 2019 07:44:46 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id BBE611BFBB for ; Tue, 27 Aug 2019 07:44:44 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Aug 2019 22:44:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,436,1559545200"; d="scan'208";a="187815402" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by FMSMGA003.fm.intel.com with ESMTP; 26 Aug 2019 22:44:43 -0700 Received: from fmsmsx119.amr.corp.intel.com (10.18.124.207) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 26 Aug 2019 22:44:43 -0700 Received: from shsmsx106.ccr.corp.intel.com (10.239.4.159) by FMSMSX119.amr.corp.intel.com (10.18.124.207) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 26 Aug 2019 22:44:43 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.80]) by SHSMSX106.ccr.corp.intel.com ([169.254.10.204]) with mapi id 14.03.0439.000; Tue, 27 Aug 2019 13:44:41 +0800 From: "Yang, Qiming" To: "Jiang, JunyuX" , "dev@dpdk.org" CC: "Lu, Wenzhuo" Thread-Topic: [PATCH] net/ixgbe: fix Rx/Tx queue interrupt for X552/557 devices Thread-Index: AQHVXJPIqb6tBCiEYUSLpGpZLG6LcacOerug Date: Tue, 27 Aug 2019 05:44:41 +0000 Message-ID: References: <20190827040724.9982-1-junyux.jiang@intel.com> In-Reply-To: <20190827040724.9982-1-junyux.jiang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] net/ixgbe: fix Rx/Tx queue interrupt for X552/557 devices 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" Hi, Junyu Please delete the 'From' line in the commit log. And double check your comm= it log before you send the patch out!!! And for the discarded the patch, need you set it to 'suspended' in patchwor= k. And you need to use v2 if you send it again. Qiming -----Original Message----- From: Jiang, JunyuX=20 Sent: Tuesday, August 27, 2019 12:07 PM To: dev@dpdk.org Cc: Lu, Wenzhuo ; Yang, Qiming ; Jiang, JunyuX Subject: [PATCH] net/ixgbe: fix Rx/Tx queue interrupt for X552/557 devices From: Jiang JunyuX X552/557 devices do not enable the queue interrupt mapping, this patch fix = the issue. Fixes: d2e72774e58c ("ixgbe/base: support X550") Signed-off-by: Jiang JunyuX --- 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 03fc1f717..e36e1c58e 100644 --- a/drivers/net/ixgbe/ixgbe_ethdev.c +++ b/drivers/net/ixgbe/ixgbe_ethdev.c @@ -5896,7 +5896,8 @@ ixgbe_set_ivar_map(struct ixgbe_hw *hw, int8_t direct= ion, IXGBE_WRITE_REG(hw, IXGBE_IVAR(idx), tmp); } else if ((hw->mac.type =3D=3D ixgbe_mac_82599EB) || (hw->mac.type =3D=3D ixgbe_mac_X540) || - (hw->mac.type =3D=3D ixgbe_mac_X550)) { + (hw->mac.type =3D=3D ixgbe_mac_X550) || + (hw->mac.type =3D=3D ixgbe_mac_X550EM_x)) { if (direction =3D=3D -1) { /* other causes */ idx =3D ((queue & 1) * 8); @@ -6026,6 +6027,7 @@ ixgbe_configure_msix(struct rte_eth_dev *dev) case ixgbe_mac_82599EB: case ixgbe_mac_X540: case ixgbe_mac_X550: + case ixgbe_mac_X550EM_x: ixgbe_set_ivar_map(hw, -1, 1, IXGBE_MISC_VEC_ID); break; default: -- 2.17.1