[dpdk-dev] [PATCH v1 2/3] app/crypto-perf: honour cryptodev's min headroom/tailroom
De Lara Guarch, Pablo
pablo.de.lara.guarch at intel.com
Tue Jul 10 13:16:32 CEST 2018
> -----Original Message-----
> From: De Lara Guarch, Pablo
> Sent: Tuesday, July 10, 2018 12:08 PM
> To: 'Anoob Joseph' <anoob.joseph at caviumnetworks.com>; Doherty, Declan
> <declan.doherty at intel.com>
> Cc: Akhil Goyal <akhil.goyal at nxp.com>; Ankur Dwivedi
> <ankur.dwivedi at caviumnetworks.com>; Jerin Jacob
> <jerin.jacob at caviumnetworks.com>; Narayana Prasad
> <narayanaprasad.athreya at caviumnetworks.com>; dev at dpdk.org
> Subject: RE: [PATCH v1 2/3] app/crypto-perf: honour cryptodev's min
> headroom/tailroom
>
>
>
> > -----Original Message-----
> > From: Anoob Joseph [mailto:anoob.joseph at caviumnetworks.com]
> > Sent: Wednesday, July 4, 2018 2:56 PM
> > To: Doherty, Declan <declan.doherty at intel.com>; De Lara Guarch, Pablo
> > <pablo.de.lara.guarch at intel.com>
> > Cc: Anoob Joseph <anoob.joseph at caviumnetworks.com>; Akhil Goyal
> > <akhil.goyal at nxp.com>; Ankur Dwivedi
> > <ankur.dwivedi at caviumnetworks.com>; Jerin Jacob
> > <jerin.jacob at caviumnetworks.com>; Narayana Prasad
> > <narayanaprasad.athreya at caviumnetworks.com>; dev at dpdk.org
> > Subject: [PATCH v1 2/3] app/crypto-perf: honour cryptodev's min
> > headroom/tailroom
> >
> > Crypto dev would specify its headroom and tailroom requirement and the
> > application is expected to honour this while creating buffers.
> >
> > Signed-off-by: Anoob Joseph <anoob.joseph at caviumnetworks.com>
>
> ...
>
> > --- a/app/test-crypto-perf/cperf_test_common.c
> > +++ b/app/test-crypto-perf/cperf_test_common.c
>
> ...
>
> > fill_multi_seg_mbuf(struct rte_mbuf *m, struct rte_mempool *mp,
> > m->buf_iova = next_seg_phys_addr;
> > next_seg_phys_addr += mbuf_hdr_size + segment_sz;
> > m->buf_len = segment_sz;
> > - m->data_len = segment_sz;
> > + m->data_len = data_len;
> >
> > - /* No headroom needed for the buffer */
> > - m->data_off = 0;
> > + /* Use headroom specified for the buffer */
> > + m->data_off = headroom;
>
> Headroom is only applicable for the first segment/s.
> This is adding headroom in all the segments, which looks wrong.
>
I think "max_size" needs to be recalculated in "cperf_alloc_common_memory",
adding headroom and tailroom size, which will potentially increase the number of segments required.
Then, headroom size needs to be checked in case it is bigger than segment size, so data might need to start in the next segment.
Similar thing for tailroom.
Thanks,
Pablo
More information about the dev
mailing list