app/testpmd: fix use of indirect action after port close
[dpdk.git] / app / test-pmd / parameters.c
index cb40917..641c9c7 100644 (file)
@@ -30,7 +30,6 @@
 #include <rte_eal.h>
 #include <rte_per_lcore.h>
 #include <rte_lcore.h>
-#include <rte_atomic.h>
 #include <rte_branch_prediction.h>
 #include <rte_mempool.h>
 #include <rte_interrupts.h>
@@ -38,9 +37,6 @@
 #include <rte_ether.h>
 #include <rte_ethdev.h>
 #include <rte_string_fns.h>
-#ifdef RTE_NET_BOND
-#include <rte_eth_bond.h>
-#endif
 #include <rte_flow.h>
 
 #include "testpmd.h"
@@ -114,7 +110,7 @@ usage(char* progname)
               "If the drop-queue doesn't exist, the packet is dropped. "
               "By default drop-queue=127.\n");
 #ifdef RTE_LIB_LATENCYSTATS
-       printf("  --latencystats=N: enable latency and jitter statistcs "
+       printf("  --latencystats=N: enable latency and jitter statistics "
               "monitoring on forwarding lcore id N.\n");
 #endif
        printf("  --disable-crc-strip: disable CRC stripping by hardware.\n");
@@ -944,11 +940,12 @@ launch_args_parse(int argc, char** argv)
                        }
                        if (!strcmp(lgopts[opt_idx].name, "total-num-mbufs")) {
                                n = atoi(optarg);
-                               if (n > 1024)
+                               if (n > MIN_TOTAL_NUM_MBUFS)
                                        param_total_num_mbufs = (unsigned)n;
                                else
                                        rte_exit(EXIT_FAILURE,
-                                                "total-num-mbufs should be > 1024\n");
+                                                "total-num-mbufs should be > %d\n",
+                                                MIN_TOTAL_NUM_MBUFS);
                        }
                        if (!strcmp(lgopts[opt_idx].name, "max-pkt-len")) {
                                n = atoi(optarg);
@@ -1530,6 +1527,12 @@ launch_args_parse(int argc, char** argv)
                rte_exit(EXIT_FAILURE, "Command line is incorrect\n");
        }
 
+       if (proc_id >= (int)num_procs)
+               rte_exit(EXIT_FAILURE,
+                        "The multi-process option '%s(%d)' should be less than '%s(%u)'\n",
+                        PARAM_PROC_ID, proc_id,
+                        PARAM_NUM_PROCS, num_procs);
+
        /* Set offload configuration from command line parameters. */
        rx_mode.offloads = rx_offloads;
        tx_mode.offloads = tx_offloads;