Re: [dpdk-dev] [PATCH 4/4] security: add reserved bitfields

2021-09-15 Thread Stephen Hemminger
On Sat, 31 Jul 2021 23:43:27 +0530 Akhil Goyal wrote: > diff --git a/lib/security/rte_security.h b/lib/security/rte_security.h > index 88d31de0a6..4606425e8d 100644 > --- a/lib/security/rte_security.h > +++ b/lib/security/rte_security.h > @@ -181,6 +181,12 @@ struct rte_security_ipsec_sa_options

Re: [dpdk-dev] [PATCH 4/4] security: add reserved bitfields

2021-09-15 Thread Ananyev, Konstantin
> In struct rte_security_ipsec_sa_options, for every new option > added, there is an ABI breakage, to avoid, a reserved_opts > bitfield is added to for the remaining bits available in the > structure. > Now for every new sa option, these reserved_opts can be reduced > and new option can be added.

[dpdk-dev] [PATCH 4/4] security: add reserved bitfields

2021-07-31 Thread Akhil Goyal
In struct rte_security_ipsec_sa_options, for every new option added, there is an ABI breakage, to avoid, a reserved_opts bitfield is added to for the remaining bits available in the structure. Now for every new sa option, these reserved_opts can be reduced and new option can be added. A correspondi