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 1B598A0613 for ; Mon, 23 Sep 2019 18:47:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 168041BF25; Mon, 23 Sep 2019 18:47:33 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 5C89C1BF20 for ; Mon, 23 Sep 2019 18:47:31 +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 fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Sep 2019 09:47:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,541,1559545200"; d="scan'208";a="388547022" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by fmsmga005.fm.intel.com with ESMTP; 23 Sep 2019 09:47:29 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.164]) by IRSMSX151.ger.corp.intel.com ([169.254.4.234]) with mapi id 14.03.0439.000; Mon, 23 Sep 2019 17:47:29 +0100 From: "Ananyev, Konstantin" To: "Smoczynski, MarcinX" , "anoobj@marvell.com" , "akhil.goyal@nxp.com" CC: "dev@dpdk.org" Thread-Topic: [PATCH v3 1/3] examples/ipsec-secgw: ipsec_sa structure cleanup Thread-Index: AQHVcgRqMLcwLAUBe0iMz1T7DpPSjac5eLPA Date: Mon, 23 Sep 2019 16:47:28 +0000 Message-ID: <2601191342CEEE43887BDE71AB977258019196928C@irsmsx105.ger.corp.intel.com> References: <20190904141642.14820-1-marcinx.smoczynski@intel.com> <20190923114415.17932-1-marcinx.smoczynski@intel.com> <20190923114415.17932-2-marcinx.smoczynski@intel.com> In-Reply-To: <20190923114415.17932-2-marcinx.smoczynski@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNmRlNTZlNzUtOWJhMy00NDYxLTg1MDYtYTZhY2Y1OTUyMTkyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiaWFRUWExSHh3cXNESzBRdCswUkduY3F4YjZ0OVBlVFFzMVEyM3FTRlNHRmw2cTF2ZDROYksyckEySzh2bjdZcSJ9 x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 1/3] examples/ipsec-secgw: ipsec_sa structure cleanup 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" > -----Original Message----- > From: Smoczynski, MarcinX > Sent: Monday, September 23, 2019 12:44 PM > To: anoobj@marvell.com; akhil.goyal@nxp.com; Ananyev, Konstantin > Cc: dev@dpdk.org; Smoczynski, MarcinX > Subject: [PATCH v3 1/3] examples/ipsec-secgw: ipsec_sa structure cleanup >=20 > Cleanup ipsec_sa structure by removing every field that is already in > the rte_ipsec_session structure: > * cryptodev/security session union > * action type > * offload flags > * security context > References to abovementioned fields are changed to direct references > to matching fields of rte_ipsec_session structure. >=20 > Such refactoring is needed to introduce many sessions per SA feature, > e.g. fallback session for inline offload processing. >=20 > Signed-off-by: Marcin Smoczynski > --- Acked-by: Konstantin Ananyev > 2.17.1