Re: [dpdk-dev] [PATCH 1/6] mem: add function for checking memsegs IOVAs addresses

2018-07-03 Thread Alejandro Lucero
On Tue, Jul 3, 2018 at 10:07 AM, Burakov, Anatoly wrote: > On 02-Jul-18 6:26 PM, Alejandro Lucero wrote: > >> A device can suffer addressing limitations. This functions checks >> memsegs have iovas within the supported range based on dma mask. >> >> PMD should use this during initialization if su

Re: [dpdk-dev] [PATCH 1/6] mem: add function for checking memsegs IOVAs addresses

2018-07-03 Thread Burakov, Anatoly
On 02-Jul-18 6:26 PM, Alejandro Lucero wrote: A device can suffer addressing limitations. This functions checks memsegs have iovas within the supported range based on dma mask. PMD should use this during initialization if supported devices suffer addressing limitations, returning an error if thi

[dpdk-dev] [PATCH 1/6] mem: add function for checking memsegs IOVAs addresses

2018-07-02 Thread Alejandro Lucero
A device can suffer addressing limitations. This functions checks memsegs have iovas within the supported range based on dma mask. PMD should use this during initialization if supported devices suffer addressing limitations, returning an error if this function returns memsegs out of range. Anothe