From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id D53A21B716 for ; Tue, 3 Apr 2018 15:41:57 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Apr 2018 06:41:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,401,1517904000"; d="scan'208";a="29187059" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga007.fm.intel.com with ESMTP; 03 Apr 2018 06:41:56 -0700 Received: from fmsmsx112.amr.corp.intel.com (10.18.116.6) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 3 Apr 2018 06:41:56 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX112.amr.corp.intel.com (10.18.116.6) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 3 Apr 2018 06:41:55 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.235]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.166]) with mapi id 14.03.0319.002; Tue, 3 Apr 2018 21:41:53 +0800 From: "Zhang, Qi Z" To: "Dai, Wei" , "Lu, Wenzhuo" CC: "dev@dpdk.org" Thread-Topic: [PATCH v2 0/2] net/e1000: convert to new Rx/Tx offloads API Thread-Index: AQHTyvdQNnFWiLyzzk6v0b6bgTM1W6PvDJiQ Date: Tue, 3 Apr 2018 13:41:53 +0000 Message-ID: <039ED4275CED7440929022BC67E7061153178605@SHSMSX103.ccr.corp.intel.com> References: <20180301185431.26204-1-wei.dai@intel.com> <20180403025456.735-1-wei.dai@intel.com> In-Reply-To: <20180403025456.735-1-wei.dai@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.0.116 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-dev] [PATCH v2 0/2] net/e1000: convert to new Rx/Tx offloads API 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: Tue, 03 Apr 2018 13:41:58 -0000 > -----Original Message----- > From: Dai, Wei > Sent: Tuesday, April 3, 2018 10:55 AM > To: Lu, Wenzhuo ; Zhang, Qi Z > Cc: dev@dpdk.org; Dai, Wei > Subject: [PATCH v2 0/2] net/e1000: convert to new Rx/Tx offloads API >=20 > This patch set convert net/e1000 to new Rx/Tx offloads API. > All Rx offloads are per port features. > All Tx offloads of e1000 are per queue and also per packet as they are en= abled > in Tx descriptor. > In the new offload API, per queue offload only need to be set in > queue_setup(). So if the maimum number of queues is only one in Rx or Tx > path, let all offloads in the path are per queue for better convenience. >=20 > --- > v2: add offloads checking >=20 >=20 > Wei Dai (2): > net/e1000: convert to new Rx offloads API > net/e1000: convert to new Tx offloads API >=20 > drivers/net/e1000/e1000_ethdev.h | 14 ++++ > drivers/net/e1000/em_ethdev.c | 58 ++++++++++---- > drivers/net/e1000/em_rxtx.c | 155 > +++++++++++++++++++++++++++++++++--- > drivers/net/e1000/igb_ethdev.c | 60 +++++++------- > drivers/net/e1000/igb_rxtx.c | 167 > +++++++++++++++++++++++++++++++++++---- > 5 files changed, 385 insertions(+), 69 deletions(-) >=20 > -- > 2.9.5 Acked-by: Qi Zhang