Re: [dpdk-dev] [PATCH 0/4] Allow using external memory without malloc

2018-12-12 Thread Burakov, Anatoly
On 12-Dec-18 12:55 PM, Yongseok Koh wrote: On Mon, Dec 03, 2018 at 10:23:03AM +, Burakov, Anatoly wrote: On 02-Dec-18 11:28 PM, Yongseok Koh wrote: On Dec 1, 2018, at 9:48 PM, Shahaf Shuler wrote: Hi Anatoly, Thursday, November 29, 2018 3:49 PM, Anatoly Burakov: Subject: [PATCH 0/4] A

Re: [dpdk-dev] [PATCH 0/4] Allow using external memory without malloc

2018-12-12 Thread Yongseok Koh
On Mon, Dec 03, 2018 at 10:23:03AM +, Burakov, Anatoly wrote: > On 02-Dec-18 11:28 PM, Yongseok Koh wrote: > > > > > On Dec 1, 2018, at 9:48 PM, Shahaf Shuler wrote: > > > > > > Hi Anatoly, > > > > > > Thursday, November 29, 2018 3:49 PM, Anatoly Burakov: > > > > Subject: [PATCH 0/4] Allow

Re: [dpdk-dev] [PATCH 0/4] Allow using external memory without malloc

2018-12-03 Thread Burakov, Anatoly
On 02-Dec-18 11:28 PM, Yongseok Koh wrote: On Dec 1, 2018, at 9:48 PM, Shahaf Shuler wrote: Hi Anatoly, Thursday, November 29, 2018 3:49 PM, Anatoly Burakov: Subject: [PATCH 0/4] Allow using external memory without malloc Currently, the only way to use externally allocated memory is throug

Re: [dpdk-dev] [PATCH 0/4] Allow using external memory without malloc

2018-12-02 Thread Yongseok Koh
> On Dec 1, 2018, at 9:48 PM, Shahaf Shuler wrote: > > Hi Anatoly, > > Thursday, November 29, 2018 3:49 PM, Anatoly Burakov: >> Subject: [PATCH 0/4] Allow using external memory without malloc >> >> Currently, the only way to use externally allocated memory is through >> rte_malloc API's. Whi

Re: [dpdk-dev] [PATCH 0/4] Allow using external memory without malloc

2018-12-01 Thread Shahaf Shuler
Hi Anatoly, Thursday, November 29, 2018 3:49 PM, Anatoly Burakov: > Subject: [PATCH 0/4] Allow using external memory without malloc > > Currently, the only way to use externally allocated memory is through > rte_malloc API's. While this is fine for a lot of use cases, it may not be > suitable >

[dpdk-dev] [PATCH 0/4] Allow using external memory without malloc

2018-11-29 Thread Anatoly Burakov
Currently, the only way to use externally allocated memory is through rte_malloc API's. While this is fine for a lot of use cases, it may not be suitable for certain other use cases like manual memory management, etc. This patchset adds another API to register memory segments with DPDK (so that AP