From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 2A58CA05D3 for ; Tue, 26 Mar 2019 08:05:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EB5B22B9A; Tue, 26 Mar 2019 08:05:51 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id A534D2B9A; Tue, 26 Mar 2019 08:05:49 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Mar 2019 00:05:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,271,1549958400"; d="scan'208";a="130201551" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga006.jf.intel.com with ESMTP; 26 Mar 2019 00:05:47 -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.408.0; Tue, 26 Mar 2019 00:05:33 -0700 Received: from shsmsx107.ccr.corp.intel.com (10.239.4.96) by FMSMSX119.amr.corp.intel.com (10.18.124.207) with Microsoft SMTP Server (TLS) id 14.3.408.0; Tue, 26 Mar 2019 00:05:31 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.134]) by SHSMSX107.ccr.corp.intel.com ([169.254.9.252]) with mapi id 14.03.0415.000; Tue, 26 Mar 2019 15:03:01 +0800 From: "Zhang, Qi Z" To: "Zhao1, Wei" , "dev@dpdk.org" CC: "stable@dpdk.org" Thread-Topic: [PATCH v4] net/iavf: fix Tx interrupt vertor configuration error Thread-Index: AQHU45XAykVr6klKUEO3YKl5QpgUe6YdeSXA Date: Tue, 26 Mar 2019 07:03:01 +0000 Message-ID: <039ED4275CED7440929022BC67E7061153353827@SHSMSX103.ccr.corp.intel.com> References: <1553568050-13343-1-git-send-email-wei.zhao1@intel.com> <1553576879-8824-1-git-send-email-wei.zhao1@intel.com> In-Reply-To: <1553576879-8824-1-git-send-email-wei.zhao1@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDQ2NjRkMGMtM2VmNi00ZTYxLWFlZWYtNmYwNzM4MzY0MjQ4IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiUlwvRTl2RWhpbUZ6RFBYeHZQdDFUTjZOTkxtWXg5YVR4Z1JEbzdHckxxSVJRVFdhdXNjRjBtc1dlRml6OG9QaDcifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action 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-stable] [PATCH v4] net/iavf: fix Tx interrupt vertor configuration error 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" > -----Original Message----- > From: Zhao1, Wei > Sent: Tuesday, March 26, 2019 1:08 PM > To: dev@dpdk.org > Cc: stable@dpdk.org; Zhang, Qi Z ; Zhao1, Wei > > Subject: [PATCH v4] net/iavf: fix Tx interrupt vertor configuration error >=20 > There is need to align to kernel iavf code when setting Tx queue interrup= t vector > in messge VIRTCHNL_OP_CONFIG_IRQ_MAP, if not it maybe cause restart iavf > port error in some scenario. Actually , we are not aligned with kernel iavf's implementation which assum= e rxq =3D txq Reword the commit log as below: According to latest AVF virtual channel spec, interrupt vector is required to be configured for each Tx queue. The patch implemented the mechanism by assign interrupt vector to each Tx queue with round robin (same method for Rx queue). This also fixed the unexpected Tx queue config error when hosted by ice kernel driver. >=20 > Fixes: 69dd4c3d0898 ("net/avf: enable queue and device") > Cc: stable@dpdk.org >=20 > Signed-off-by: Wei Zhao >=20 Acked-by: Qi Zhang Applied to dpdk-next-net-intel with above change. Thanks Qi > --- >=20 > v2: > update git log and add new work around >=20 > v3: > update git comment and change fix code as suggestion >=20 > v4: > add txq_map in struct avf_info to keep vector mapping info > --- > drivers/net/iavf/iavf.h | 1 + > drivers/net/iavf/iavf_ethdev.c | 9 +++++++++ drivers/net/iavf/iavf_vchn= l.c > | 2 +- > 3 files changed, 11 insertions(+), 1 deletion(-) >=20 > diff --git a/drivers/net/iavf/iavf.h b/drivers/net/iavf/iavf.h index > e6e3e8d..81d0054 100644 > --- a/drivers/net/iavf/iavf.h > +++ b/drivers/net/iavf/iavf.h > @@ -107,6 +107,7 @@ struct iavf_info { > uint16_t msix_base; /* msix vector base from */ > /* queue bitmask for each vector */ > uint16_t rxq_map[IAVF_MAX_MSIX_VECTORS]; > + uint16_t txq_map[IAVF_MAX_MSIX_VECTORS]; > }; >=20 > #define IAVF_MAX_PKT_TYPE 256 > diff --git a/drivers/net/iavf/iavf_ethdev.c b/drivers/net/iavf/iavf_ethde= v.c index > 846e604..187a31c 100644 > --- a/drivers/net/iavf/iavf_ethdev.c > +++ b/drivers/net/iavf/iavf_ethdev.c > @@ -336,6 +336,8 @@ static int iavf_config_rx_queues_irqs(struct rte_eth_= dev > *dev, > /* map all queues to the same interrupt */ > for (i =3D 0; i < dev->data->nb_rx_queues; i++) > vf->rxq_map[vf->msix_base] |=3D 1 << i; > + for (i =3D 0; i < dev->data->nb_tx_queues; i++) > + vf->txq_map[vf->msix_base] |=3D 1 << i; > } else { > if (!rte_intr_allow_others(intr_handle)) { > vf->nb_msix =3D 1; > @@ -344,6 +346,8 @@ static int iavf_config_rx_queues_irqs(struct rte_eth_= dev > *dev, > vf->rxq_map[vf->msix_base] |=3D 1 << i; > intr_handle->intr_vec[i] =3D IAVF_MISC_VEC_ID; > } > + for (i =3D 0; i < dev->data->nb_tx_queues; i++) > + vf->txq_map[vf->msix_base] |=3D 1 << i; > PMD_DRV_LOG(DEBUG, > "vector %u are mapping to all Rx queues", > vf->msix_base); > @@ -361,6 +365,11 @@ static int iavf_config_rx_queues_irqs(struct rte_eth= _dev > *dev, > if (vec >=3D vf->nb_msix) > vec =3D IAVF_RX_VEC_START; > } > + for (i =3D 0; i < dev->data->nb_tx_queues; i++) { > + vf->txq_map[vec++] |=3D 1 << i; > + if (vec >=3D vf->nb_msix) > + vec =3D IAVF_RX_VEC_START; > + } > PMD_DRV_LOG(DEBUG, > "%u vectors are mapping to %u Rx queues", > vf->nb_msix, dev->data->nb_rx_queues); diff --git > a/drivers/net/iavf/iavf_vchnl.c b/drivers/net/iavf/iavf_vchnl.c index > 6381fb6..620e011 100644 > --- a/drivers/net/iavf/iavf_vchnl.c > +++ b/drivers/net/iavf/iavf_vchnl.c > @@ -614,7 +614,7 @@ iavf_config_irq_map(struct iavf_adapter *adapter) > vecmap->vsi_id =3D vf->vsi_res->vsi_id; > vecmap->rxitr_idx =3D IAVF_ITR_INDEX_DEFAULT; > vecmap->vector_id =3D vf->msix_base + i; > - vecmap->txq_map =3D 0; > + vecmap->txq_map =3D vf->txq_map[vf->msix_base + i]; > vecmap->rxq_map =3D vf->rxq_map[vf->msix_base + i]; > } >=20 > -- > 2.7.5