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

2021-10-18 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. >

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

2021-10-17 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. Signed-off-b