Re: [dpdk-dev] [PATCH v2] eventdev: update crypto adapter metadata structures

2021-08-30 Thread Shijith Thotton
> >> In crypto adapter metadata, reserved bytes in request info structure is >> a space holder for response info. It enforces an order of operation if >> the structures are updated using memcpy to avoid overwriting response >> info. It is logical to move the reserved space out of request info. It >

Re: [dpdk-dev] [PATCH v2] eventdev: update crypto adapter metadata structures

2021-08-30 Thread Akhil Goyal
> In crypto adapter metadata, reserved bytes in request info structure is > a space holder for response info. It enforces an order of operation if > the structures are updated using memcpy to avoid overwriting response > info. It is logical to move the reserved space out of request info. It > also

Re: [dpdk-dev] [PATCH v2] eventdev: update crypto adapter metadata structures

2021-08-30 Thread Anoob Joseph
> > In crypto adapter metadata, reserved bytes in request info structure is a > space > holder for response info. It enforces an order of operation if the structures > are > updated using memcpy to avoid overwriting response info. It is logical to move > the reserved space out of request info. I