From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 55A774C8C for ; Mon, 2 Jul 2018 09:42:23 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Jul 2018 00:42:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,298,1526367600"; d="scan'208";a="241912421" Received: from pgsmsx101.gar.corp.intel.com ([10.221.44.78]) by fmsmga005.fm.intel.com with ESMTP; 02 Jul 2018 00:42:21 -0700 Received: from pgsmsx109.gar.corp.intel.com (10.221.44.109) by PGSMSX101.gar.corp.intel.com (10.221.44.78) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 2 Jul 2018 15:42:20 +0800 Received: from pgsmsx103.gar.corp.intel.com ([169.254.2.131]) by PGSMSX109.gar.corp.intel.com ([169.254.14.110]) with mapi id 14.03.0319.002; Mon, 2 Jul 2018 15:42:19 +0800 From: "Zhao1, Wei" To: "Yigit, Ferruh" CC: "Zhang, Qi Z" , "dev@dpdk.org" Thread-Topic: [PATCH v4] net/e1000: add support for check descriptor status APIs Thread-Index: AQHUD07i7WT8NToSnUCCavmDqZHrnqR7kR0g Date: Mon, 2 Jul 2018 07:42:19 +0000 Message-ID: References: <1530088638-64887-1-git-send-email-wei.zhao1@intel.com> <1530237165-26332-1-git-send-email-wei.zhao1@intel.com> In-Reply-To: <1530237165-26332-1-git-send-email-wei.zhao1@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-originating-ip: [172.30.20.205] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4] net/e1000: add support for check descriptor status APIs 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: , X-List-Received-Date: Mon, 02 Jul 2018 07:42:23 -0000 Hi, Ferruh The doc of igb_vf.ini has enable "Rx descriptor status" & "Tx descriptor = status" features, so I do not need update this doc in this patch. Thanks > -----Original Message----- > From: Zhao1, Wei > Sent: Friday, June 29, 2018 9:53 AM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Zhao1, Wei > Subject: [PATCH v4] net/e1000: add support for check descriptor status AP= Is >=20 > rte_eth_rx_descritpr_status and rte_eth_tx_descriptor_status are > supported by igb VF. >=20 > Signed-off-by: Wei Zhao >=20 > --- >=20 > v2: > -add release note document info >=20 > v3: > -rebase code and change git log >=20 > v4: > -rebase code > --- > doc/guides/rel_notes/release_18_08.rst | 4 ++-- > drivers/net/e1000/igb_ethdev.c | 3 +++ > 2 files changed, 5 insertions(+), 2 deletions(-) >=20 > diff --git a/doc/guides/rel_notes/release_18_08.rst > b/doc/guides/rel_notes/release_18_08.rst > index ac54121..d7613a2 100644 > --- a/doc/guides/rel_notes/release_18_08.rst > +++ b/doc/guides/rel_notes/release_18_08.rst > @@ -54,10 +54,10 @@ New Features > PMD does not provide any. The provision of such tuned values now > includes > the ixgbe PMD. >=20 > -* **Added fm10k ethernet driver to support check descriptor status > APIs.** > +* **Added fm10k and igb VF ethernet driver to support check descriptor > +status APIs.** >=20 > rte_eth_rx_descritpr_status and rte_eth_tx_descriptor_status > - are supported by fm10K. > + are supported by fm10K and igb VF. >=20 >=20 > API Changes > diff --git a/drivers/net/e1000/igb_ethdev.c > b/drivers/net/e1000/igb_ethdev.c index edc7be3..f5b02b2 100644 > --- a/drivers/net/e1000/igb_ethdev.c > +++ b/drivers/net/e1000/igb_ethdev.c > @@ -435,6 +435,9 @@ static const struct eth_dev_ops igbvf_eth_dev_ops =3D > { > .dev_supported_ptypes_get =3D eth_igb_supported_ptypes_get, > .rx_queue_setup =3D eth_igb_rx_queue_setup, > .rx_queue_release =3D eth_igb_rx_queue_release, > + .rx_descriptor_done =3D eth_igb_rx_descriptor_done, > + .rx_descriptor_status =3D eth_igb_rx_descriptor_status, > + .tx_descriptor_status =3D eth_igb_tx_descriptor_status, > .tx_queue_setup =3D eth_igb_tx_queue_setup, > .tx_queue_release =3D eth_igb_tx_queue_release, > .set_mc_addr_list =3D eth_igb_set_mc_addr_list, > -- > 2.7.5