Re: [dpdk-dev] [RFC UPDATE PATCH 1/9] dmadev: add missing exports

2021-07-07 Thread David Marchand
On Wed, Jul 7, 2021 at 10:37 AM Bruce Richardson wrote: > > On Wed, Jul 07, 2021 at 10:26:36AM +0200, David Marchand wrote: > > On Tue, Jul 6, 2021 at 10:29 PM Bruce Richardson > > wrote: > > > > > > Export the rte_dmadevices array and the allocate and release functions > > > which are needed by

Re: [dpdk-dev] [RFC UPDATE PATCH 1/9] dmadev: add missing exports

2021-07-07 Thread Bruce Richardson
On Wed, Jul 07, 2021 at 10:26:36AM +0200, David Marchand wrote: > On Tue, Jul 6, 2021 at 10:29 PM Bruce Richardson > wrote: > > > > Export the rte_dmadevices array and the allocate and release functions > > which are needed by PMDs. > > rte_dmadevices[] might be an issue for inline accesses, but

Re: [dpdk-dev] [RFC UPDATE PATCH 1/9] dmadev: add missing exports

2021-07-07 Thread David Marchand
On Tue, Jul 6, 2021 at 10:29 PM Bruce Richardson wrote: > > Export the rte_dmadevices array and the allocate and release functions > which are needed by PMDs. rte_dmadevices[] might be an issue for inline accesses, but pmd allocate/release should be internal (driver only). -- David Marchand

[dpdk-dev] [RFC UPDATE PATCH 1/9] dmadev: add missing exports

2021-07-06 Thread Bruce Richardson
Export the rte_dmadevices array and the allocate and release functions which are needed by PMDs. Signed-off-by: Bruce Richardson --- drivers/meson.build | 1 + lib/dmadev/rte_dmadev.c | 2 ++ lib/dmadev/version.map | 3 +++ 3 files changed, 6 insertions(+) diff --git a/drivers/meson.build