RE: [PATCH v2] mempool cache: add zero-copy get and put functions

2022-12-24 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > Sent: Friday, 23 December 2022 17.58 > > > > From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > > Sent: Thursday, 22 December 2022 16.57 > > > > > > > Zero-copy access to mempool caches is beneficial for PMD > per

RE: [PATCH v2] mempool cache: add zero-copy get and put functions

2022-12-23 Thread Konstantin Ananyev
> > From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > Sent: Thursday, 22 December 2022 16.57 > > > > > Zero-copy access to mempool caches is beneficial for PMD performance, > > and > > > must be provided by the mempool library to fix [Bug 1052] without a > > > performance regress

RE: [PATCH v2] mempool cache: add zero-copy get and put functions

2022-12-22 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > Sent: Thursday, 22 December 2022 16.57 > > > Zero-copy access to mempool caches is beneficial for PMD performance, > and > > must be provided by the mempool library to fix [Bug 1052] without a > > performance regression. > > LGTM

RE: [PATCH v2] mempool cache: add zero-copy get and put functions

2022-12-22 Thread Konstantin Ananyev
> Zero-copy access to mempool caches is beneficial for PMD performance, and > must be provided by the mempool library to fix [Bug 1052] without a > performance regression. LGTM in general, thank you for working on it. Few comments below. > > [Bug 1052]: https://bugs.dpdk.org/show_bug.cgi?id=10

RE: [PATCH v2] mempool cache: add zero-copy get and put functions

2022-11-30 Thread Morten Brørup
> From: Kamalakshitha Aligeri [mailto:kamalakshitha.alig...@arm.com] > Sent: Tuesday, 29 November 2022 21.54 > > > From: Morten Brørup > > Sent: Wednesday, November 16, 2022 12:04 PM > > > > Zero-copy access to mempool caches is beneficial for PMD performance, > and > > must be provided by the me

RE: [PATCH v2] mempool cache: add zero-copy get and put functions

2022-11-29 Thread Kamalakshitha Aligeri
rørup > Subject: [PATCH v2] mempool cache: add zero-copy get and put functions > > Zero-copy access to mempool caches is beneficial for PMD performance, and > must be provided by the mempool library to fix [Bug 1052] without a > performance regression. > > [Bug 1052]: https

[PATCH v2] mempool cache: add zero-copy get and put functions

2022-11-16 Thread Morten Brørup
Zero-copy access to mempool caches is beneficial for PMD performance, and must be provided by the mempool library to fix [Bug 1052] without a performance regression. [Bug 1052]: https://bugs.dpdk.org/show_bug.cgi?id=1052 v2: * Fix checkpatch warnings. * Fix missing registration of trace points. *