From 55223453f3a965859545208180a0108900c81cd1 Mon Sep 17 00:00:00 2001 From: Konstantin Ananyev Date: Wed, 14 Nov 2018 11:23:31 +0000 Subject: [PATCH 1/1] doc: announce ABI change for security session 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 Acked-by: Mohammad Abdul Awal Acked-by: Fan Zhang Acked-by: Akhil Goyal --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 27ede77f02..82f7b37ddb 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -75,6 +75,10 @@ Deprecation Notices - Member ``uint16_t min_mtu`` the minimum MTU allowed. - Member ``uint16_t max_mtu`` the maximum MTU allowed. +* security: New field ``uint64_t opaque_data`` is planned to be added into + ``rte_security_session`` structure. That would allow upper layer to easily + associate/de-associate some user defined data with the security session. + * pdump: As we changed to use generic IPC, some changes in APIs and structure are expected in subsequent release. -- 2.20.1