eal: factorise unsupported option handling
authorDavid Marchand <david.marchand@6wind.com>
Mon, 22 Sep 2014 08:37:56 +0000 (10:37 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 23 Sep 2014 13:32:59 +0000 (15:32 +0200)
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 ffdc441..7e9f3aa 100644 (file)
@@ -626,24 +626,9 @@ eal_parse_args(int argc, char **argv)
                        else if (!strcmp(lgopts[option_index].name, OPT_NO_SHCONF)) {
                                internal_config.no_shconf = 1;
                        }
-                       else if (!strcmp(lgopts[option_index].name, OPT_HUGE_DIR)) {
-                               RTE_LOG(ERR, EAL, "Option "OPT_HUGE_DIR" is not supported on"
-                                               "FreeBSD\n");
-                               return -1;
-                       }
                        else if (!strcmp(lgopts[option_index].name, OPT_PROC_TYPE)) {
                                internal_config.process_type = eal_parse_proc_type(optarg);
                        }
-                       else if (!strcmp(lgopts[option_index].name, OPT_FILE_PREFIX)) {
-                               RTE_LOG(ERR, EAL, "Option "OPT_FILE_PREFIX" is not supported on"
-                                               "FreeBSD\n");
-                               return -1;
-                       }
-                       else if (!strcmp(lgopts[option_index].name, OPT_SOCKET_MEM)) {
-                               RTE_LOG(ERR, EAL, "Option "OPT_SOCKET_MEM" is not supported on"
-                                               "FreeBSD\n");
-                               return -1;
-                       }
                        else if (!strcmp(lgopts[option_index].name, OPT_PCI_BLACKLIST)) {
                                if (rte_eal_devargs_add(RTE_DEVTYPE_BLACKLISTED_PCI,
                                                optarg) < 0) {
@@ -684,6 +669,12 @@ eal_parse_args(int argc, char **argv)
                                        return -1;
                                }
                                internal_config.log_level = log;
+                       } else {
+                               RTE_LOG(ERR, EAL, "Option %s is not supported "
+                                       "on FreeBSD\n",
+                                       lgopts[option_index].name);
+                               eal_usage(prgname);
+                               return -1;
                        }
                        break;
 
index 633e3b8..bf63744 100644 (file)
@@ -938,6 +938,12 @@ eal_parse_args(int argc, char **argv)
                        }
                        else if (!strcmp(lgopts[option_index].name, OPT_CREATE_UIO_DEV)) {
                                internal_config.create_uio_dev = 1;
+                       } else {
+                               RTE_LOG(ERR, EAL, "Option %s is not supported "
+                                       "on Linux\n",
+                                       lgopts[option_index].name);
+                               eal_usage(prgname);
+                               return -1;
                        }
                        break;