eal/linux: fix parsing zero socket memory and limits
authorIlya Maximets <i.maximets@samsung.com>
Tue, 22 Jan 2019 16:27:14 +0000 (19:27 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 23 Jan 2019 22:02:07 +0000 (23:02 +0100)
commit0a703f0f36c11b6f23fad4fab9e79c308811329d
tree06e3462a0ec9ea9341e540b79a122c1fe81a4da2
parent43f2b3d250551b66ca282e6c5135b299b22d9d22
eal/linux: fix parsing zero socket memory and limits

Modern memory mode allowes to not reserve any memory by the
'--socket-mem' option. i.e. it could be possible to specify
zero preallocated memory like '--socket-mem 0'.
Also, it should be possible to configure unlimited memory
allocations by '--socket-limit 0'.

Both cases are impossible now and blocks starting the DPDK
application:

    ./dpdk-app --socket-limit 0 <...>
    EAL: invalid parameters for --socket-limit
    EAL: Invalid 'command line' arguments.
    Unable to initialize DPDK: Invalid argument

Fixes: 6b42f75632f0 ("eal: enable non-legacy memory mode")
Cc: stable@dpdk.org
Signed-off-by: Ilya Maximets <i.maximets@samsung.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/librte_eal/linuxapp/eal/eal.c