X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest-eventdev%2Fevt_options.c;h=c60b61a904b0698a81463165ceb9013711a3581a;hb=4362312431b599bbfd8e384573fdb9d6099cd836;hp=af5c08bac8bf010c01c8184d2b55cfa71d66c406;hpb=f0959283edb22dbabaf51c1e20fea466284d634e;p=dpdk.git diff --git a/app/test-eventdev/evt_options.c b/app/test-eventdev/evt_options.c index af5c08bac8..c60b61a904 100644 --- a/app/test-eventdev/evt_options.c +++ b/app/test-eventdev/evt_options.c @@ -7,6 +7,7 @@ #include #include +#include #include #include #include @@ -120,7 +121,7 @@ evt_parse_timer_prod_type_burst(struct evt_options *opt, static int evt_parse_test_name(struct evt_options *opt, const char *arg) { - snprintf(opt->test_name, EVT_TEST_NAME_MAX_LEN, "%s", arg); + strlcpy(opt->test_name, arg, EVT_TEST_NAME_MAX_LEN); return 0; } @@ -232,6 +233,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) { @@ -261,7 +282,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(); @@ -331,6 +354,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 } }; @@ -363,6 +388,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++) {