From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 307B52082 for ; Thu, 17 Jan 2019 14:31:47 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jan 2019 05:31:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,489,1539673200"; d="scan'208";a="128558440" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga001.jf.intel.com with ESMTP; 17 Jan 2019 05:31:46 -0800 Received: from fmsmsx115.amr.corp.intel.com (10.18.116.19) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 17 Jan 2019 05:31:46 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx115.amr.corp.intel.com (10.18.116.19) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 17 Jan 2019 05:31:46 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.150]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.196]) with mapi id 14.03.0415.000; Thu, 17 Jan 2019 21:31:43 +0800 From: "Zhang, Qi Z" To: "Lu, Wenzhuo" , "Yang, Qiming" CC: "Stillwell Jr, Paul M" , "dev@dpdk.org" , "Yigit, Ferruh" Thread-Topic: [PATCH v2 0/7] net/ice: update share code Thread-Index: AQHUraWJ6LQH5H2npUGvB5DRHrL1I6WzdkQw Date: Thu, 17 Jan 2019 13:31:42 +0000 Message-ID: <039ED4275CED7440929022BC67E706115331D246@SHSMSX103.ccr.corp.intel.com> References: <20190115125658.15421-1-qi.z.zhang@intel.com> <20190116141338.12310-1-qi.z.zhang@intel.com> In-Reply-To: <20190116141338.12310-1-qi.z.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZTRlODNjYzctZTExMC00NDkzLWE1N2MtYTliODZkOTgzMDEwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoidlV4KzhoSDM1bWN3SCt1eWx0ZGN3TDd1S0NXaERRVnFzZ1Y5OTJuQzZwN3ZXOGl2S2F5b3h5ekxodENwTDVVYiJ9 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-dev] [PATCH v2 0/7] net/ice: update share code 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: Thu, 17 Jan 2019 13:31:48 -0000 > -----Original Message----- > From: Zhang, Qi Z > Sent: Wednesday, January 16, 2019 10:14 PM > To: Lu, Wenzhuo ; Yang, Qiming > > Cc: Stillwell Jr, Paul M ; dev@dpdk.org; Y= igit, > Ferruh ; Zhang, Qi Z > Subject: [PATCH v2 0/7] net/ice: update share code >=20 > For ice family NICs, package processing pipe line can be configured in a = package > file should be downloaded into device by driver during init. > The patch set add necessary share code APIs to support package download. > Also some code clean is included. >=20 > Though package download will not be enabled in 19.02 as plan, but we hope > the share code part could be merged early. >=20 > Meanwhile we will submit a seperate RFC patch for package download for > customer early evelutation. >=20 > v2: > - fix 32 bit compile error. > - fix check patch warning. >=20 > Qi Zhang (7): > net/ice/base: code clean > net/ice/base: add API to support resource allocate > net/ice/base: add package download related data structure > net/ice/base: add some help macros > net/ice/base: add flexible pipeline module > net/ice/base: add flow module > net/ice/base: free flow profile entries >=20 > drivers/net/ice/Makefile | 2 + > drivers/net/ice/base/ice_adminq_cmd.h | 85 + > drivers/net/ice/base/ice_common.c | 85 +- > drivers/net/ice/base/ice_common.h | 32 +- > drivers/net/ice/base/ice_controlq.c | 2 +- > drivers/net/ice/base/ice_flex_pipe.c | 5056 > +++++++++++++++++++++++++++++++++ drivers/net/ice/base/ice_flex_pipe.h > | 107 + drivers/net/ice/base/ice_flex_type.h | 685 +++++ > drivers/net/ice/base/ice_flow.c | 2080 ++++++++++++++ > drivers/net/ice/base/ice_flow.h | 337 +++ > drivers/net/ice/base/ice_osdep.h | 2 + > drivers/net/ice/base/ice_type.h | 37 +- > drivers/net/ice/base/meson.build | 2 + > 13 files changed, 8479 insertions(+), 33 deletions(-) create mode 10064= 4 > drivers/net/ice/base/ice_flex_pipe.c > create mode 100644 drivers/net/ice/base/ice_flex_pipe.h > create mode 100644 drivers/net/ice/base/ice_flow.c >=20 > -- > 2.13.6 Applied to dpdk-next-net-intel. Thanks Qi