From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id A1C914CC7 for ; Fri, 16 Nov 2018 11:24:12 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Nov 2018 02:24:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,239,1539673200"; d="scan'208";a="92563049" Received: from awalabdu-mobl.ger.corp.intel.com (HELO [163.33.176.114]) ([163.33.176.114]) by orsmga008.jf.intel.com with ESMTP; 16 Nov 2018 02:24:10 -0800 To: Konstantin Ananyev , dev@dpdk.org Cc: akhil.goyal@nxp.com, declan.doherty@intel.com References: <1535129598-27301-1-git-send-email-konstantin.ananyev@intel.com> <1542326031-5263-3-git-send-email-konstantin.ananyev@intel.com> From: Mohammad Abdul Awal Message-ID: <903cd83f-343c-7afd-eeb9-51dbcfc4b04c@intel.com> Date: Fri, 16 Nov 2018 10:24:10 +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: <1542326031-5263-3-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 2/9] security: add opaque userdata pointer into security session 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: Fri, 16 Nov 2018 10:24:13 -0000 On 15/11/2018 23:53, 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. > > Signed-off-by: Konstantin Ananyev > --- > lib/librte_security/rte_security.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/lib/librte_security/rte_security.h b/lib/librte_security/rte_security.h > index 1431b4df1..07b315512 100644 > --- a/lib/librte_security/rte_security.h > +++ b/lib/librte_security/rte_security.h > @@ -318,6 +318,8 @@ struct rte_security_session_conf { > struct rte_security_session { > void *sess_private_data; > /**< Private session material */ > + uint64_t opaque_data; > + /**< Opaque user defined data */ > }; > > /** Acked-by: Mohammad Abdul Awal