eal: remove unused --use-device option
authorDavid Marchand <david.marchand@6wind.com>
Mon, 22 Sep 2014 08:37:55 +0000 (10:37 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 23 Sep 2014 13:32:59 +0000 (15:32 +0200)
Following commit cac6d08c8bde and 4bf3fe634a4
(replace --use-device option by --pci-whitelist and --vdev),
this option is not available anymore.

Signed-off-by: David Marchand <david.marchand@6wind.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
lib/librte_eal/bsdapp/eal/eal.c
lib/librte_eal/linuxapp/eal/eal.c

index 2f84742..ffdc441 100644 (file)
@@ -89,7 +89,6 @@
 #define OPT_NO_HUGE     "no-huge"
 #define OPT_FILE_PREFIX "file-prefix"
 #define OPT_SOCKET_MEM  "socket-mem"
-#define OPT_USE_DEVICE "use-device"
 #define OPT_PCI_WHITELIST "pci-whitelist"
 #define OPT_PCI_BLACKLIST "pci-blacklist"
 #define OPT_VDEV        "vdev"
@@ -645,12 +644,6 @@ eal_parse_args(int argc, char **argv)
                                                "FreeBSD\n");
                                return -1;
                        }
-                       else if (!strcmp(lgopts[option_index].name, OPT_USE_DEVICE)) {
-                               printf("The --use-device option is deprecated, please use\n"
-                                       "--whitelist or --vdev instead.\n");
-                               eal_usage(prgname);
-                               return -1;
-                       }
                        else if (!strcmp(lgopts[option_index].name, OPT_PCI_BLACKLIST)) {
                                if (rte_eal_devargs_add(RTE_DEVTYPE_BLACKLISTED_PCI,
                                                optarg) < 0) {
index 38cace6..633e3b8 100644 (file)
@@ -92,7 +92,6 @@
 #define OPT_NO_HUGE     "no-huge"
 #define OPT_FILE_PREFIX "file-prefix"
 #define OPT_SOCKET_MEM  "socket-mem"
-#define OPT_USE_DEVICE  "use-device"
 #define OPT_PCI_WHITELIST "pci-whitelist"
 #define OPT_PCI_BLACKLIST "pci-blacklist"
 #define OPT_VDEV        "vdev"
@@ -880,12 +879,6 @@ eal_parse_args(int argc, char **argv)
                                        return -1;
                                }
                        }
-                       else if (!strcmp(lgopts[option_index].name, OPT_USE_DEVICE)) {
-                               printf("The --use-device option is deprecated, please use\n"
-                                       "--whitelist or --vdev instead.\n");
-                               eal_usage(prgname);
-                               return -1;
-                       }
                        else if (!strcmp(lgopts[option_index].name, OPT_PCI_BLACKLIST)) {
                                if (rte_eal_devargs_add(RTE_DEVTYPE_BLACKLISTED_PCI,
                                                optarg) < 0) {