From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id D71EE5F13 for ; Wed, 14 Nov 2018 12:32:15 +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 fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Nov 2018 03:32:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,232,1539673200"; d="scan'208";a="91029940" Received: from awalabdu-mobl.ger.corp.intel.com (HELO [163.33.176.114]) ([163.33.176.114]) by orsmga006.jf.intel.com with ESMTP; 14 Nov 2018 03:32:13 -0800 To: Konstantin Ananyev , dev@dpdk.org Cc: akhil.goyal@nxp.com, declan.doherty@intel.com References: <1542194611-5773-1-git-send-email-konstantin.ananyev@intel.com> From: Mohammad Abdul Awal Message-ID: Date: Wed, 14 Nov 2018 11:32:11 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <1542194611-5773-1-git-send-email-konstantin.ananyev@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Subject: Re: [dpdk-dev] [PATCH] doc: security deprecation notice for session changes 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: Wed, 14 Nov 2018 11:32:16 -0000 On 14/11/2018 11:23, Konstantin Ananyev wrote: > Add 'uint64_t opaque_data' inside struct rte_security_session. > That allows upper layer to easily associate some user defined > data with the session. > Proposed new layout for: > struct rte_security_session { > void *sess_private_data; > /**< Private session material */ > + uint64_t opaque_data; > + /**< Opaque user defined data */ > }; > > Signed-off-by: Konstantin Ananyev > --- > doc/guides/rel_notes/deprecation.rst | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index 34b28234c..0cdc42842 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -55,3 +55,9 @@ Deprecation Notices > - ``rte_pdump_set_socket_dir`` will be removed; > - The parameter, ``path``, of ``rte_pdump_init`` will be removed; > - The enum ``rte_pdump_socktype`` will be removed. > + > +* security: ABI change: > + > + New field ``uint64_t opaque_data`` is planned to add into > + ``rte_security_session`` structure. That would allow upper layer to easily > + associate/de-associate some user defined data with the security session. Acked-by: Mohammad Abdul Awal