buildtools: use Python pmdinfogen
[dpdk.git] / app / test-eventdev / evt_options.c
index 46c074f..0d04ea9 100644 (file)
@@ -197,6 +197,10 @@ evt_parse_nb_timer_adptrs(struct evt_options *opt, const char *arg)
        int ret;
 
        ret = parser_read_uint8(&(opt->nb_timer_adptrs), arg);
+       if (opt->nb_timer_adptrs <= 0) {
+               evt_err("Number of timer adapters cannot be <= 0");
+               return -EINVAL;
+       }
 
        return ret;
 }
@@ -233,6 +237,26 @@ evt_parse_work_lcores(struct evt_options *opt, const char *corelist)
        return ret;
 }
 
+static int
+evt_parse_mbuf_sz(struct evt_options *opt, const char *arg)
+{
+       int ret;
+
+       ret = parser_read_uint16(&(opt->mbuf_sz), arg);
+
+       return ret;
+}
+
+static int
+evt_parse_max_pkt_sz(struct evt_options *opt, const char *arg)
+{
+       int ret;
+
+       ret = parser_read_uint32(&(opt->max_pkt_sz), arg);
+
+       return ret;
+}
+
 static void
 usage(char *program)
 {
@@ -262,7 +286,9 @@ usage(char *program)
                "\t--nb_timer_adptrs  : number of timer adapters to use.\n"
                "\t--timer_tick_nsec  : timer tick interval in ns.\n"
                "\t--max_tmo_nsec     : max timeout interval in ns.\n"
-               "\t--expiry_nsec        : event timer expiry ns.\n"
+               "\t--expiry_nsec      : event timer expiry ns.\n"
+               "\t--mbuf_sz          : packet mbuf size.\n"
+               "\t--max_pkt_sz       : max packet size.\n"
                );
        printf("available tests:\n");
        evt_test_dump_names();
@@ -332,6 +358,8 @@ static struct option lgopts[] = {
        { EVT_TIMER_TICK_NSEC,     1, 0, 0 },
        { EVT_MAX_TMO_NSEC,        1, 0, 0 },
        { EVT_EXPIRY_NSEC,         1, 0, 0 },
+       { EVT_MBUF_SZ,             1, 0, 0 },
+       { EVT_MAX_PKT_SZ,          1, 0, 0 },
        { EVT_HELP,                0, 0, 0 },
        { NULL,                    0, 0, 0 }
 };
@@ -364,6 +392,8 @@ evt_opts_parse_long(int opt_idx, struct evt_options *opt)
                { EVT_TIMER_TICK_NSEC, evt_parse_timer_tick_nsec},
                { EVT_MAX_TMO_NSEC, evt_parse_max_tmo_nsec},
                { EVT_EXPIRY_NSEC, evt_parse_expiry_nsec},
+               { EVT_MBUF_SZ, evt_parse_mbuf_sz},
+               { EVT_MAX_PKT_SZ, evt_parse_max_pkt_sz},
        };
 
        for (i = 0; i < RTE_DIM(parsermap); i++) {
@@ -412,7 +442,7 @@ evt_options_dump(struct evt_options *opt)
        evt_dump("verbose_level", "%d", opt->verbose_level);
        evt_dump("socket_id", "%d", opt->socket_id);
        evt_dump("pool_sz", "%d", opt->pool_sz);
-       evt_dump("master lcore", "%d", rte_get_master_lcore());
+       evt_dump("main lcore", "%d", rte_get_main_lcore());
        evt_dump("nb_pkts", "%"PRIu64, opt->nb_pkts);
        evt_dump("nb_timers", "%"PRIu64, opt->nb_timers);
        evt_dump_begin("available lcores");