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)
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

index a386829..13f4016 100644 (file)
@@ -582,10 +582,6 @@ eal_parse_socket_arg(char *strval, volatile uint64_t *socket_arg)
                socket_arg[i] = val;
        }
 
-       /* check if we have a positive amount of total memory */
-       if (total_mem == 0)
-               return -1;
-
        return 0;
 }