Re: [dpdk-dev] [PATCH] crypto/octeontx2: fix structure alignment

2020-07-26 Thread Akhil Goyal
> > > > The structure cpt_request_info needs only 8 byte alignment. > > This patch replaces __rte_cache_aligned of cpt_request_info with > > __rte_aligned(8) and removes __rte_aligned(8) in cpt_meta_info structure. > > > > Fixes: fab634eb87ca ("crypto/octeontx2: support security session data path")

Re: [dpdk-dev] [PATCH] crypto/octeontx2: fix structure alignment

2020-07-21 Thread Anoob Joseph
> > The structure cpt_request_info needs only 8 byte alignment. > This patch replaces __rte_cache_aligned of cpt_request_info with > __rte_aligned(8) and removes __rte_aligned(8) in cpt_meta_info structure. > > Fixes: fab634eb87ca ("crypto/octeontx2: support security session data path") > > Sign

[dpdk-dev] [PATCH] crypto/octeontx2: fix structure alignment

2020-07-20 Thread Tejasree Kondoj
The structure cpt_request_info needs only 8 byte alignment. This patch replaces __rte_cache_aligned of cpt_request_info with __rte_aligned(8) and removes __rte_aligned(8) in cpt_meta_info structure. Fixes: fab634eb87ca ("crypto/octeontx2: support security session data path") Signed-off-by: Tejasr