Re: [dpdk-dev] [PATCH v2] eal: warn on legacy memory allocation requirement

2019-07-23 Thread Burakov, Anatoly
On 22-Jul-19 6:03 PM, Thomas Monjalon wrote: 22/07/2019 18:55, Thomas Monjalon: When using --no-huge mode, dynamic allocation is not supported. Because of this limitation, the option --legacy-mem is implied and -m may be needed to specify the amount of memory to allocate. Otherwise the default a

Re: [dpdk-dev] [PATCH v2] eal: warn on legacy memory allocation requirement

2019-07-22 Thread Thomas Monjalon
22/07/2019 18:55, Thomas Monjalon: > When using --no-huge mode, dynamic allocation is not supported. > Because of this limitation, the option --legacy-mem is implied > and -m may be needed to specify the amount of memory to allocate. > Otherwise the default amount MEMSIZE_IF_NO_HUGE_PAGE will be al

[dpdk-dev] [PATCH v2] eal: warn on legacy memory allocation requirement

2019-07-22 Thread Thomas Monjalon
When using --no-huge mode, dynamic allocation is not supported. Because of this limitation, the option --legacy-mem is implied and -m may be needed to specify the amount of memory to allocate. Otherwise the default amount MEMSIZE_IF_NO_HUGE_PAGE will be allocated. Signed-off-by: Thomas Monjalon -