| 244 | }; |
| 245 | |
| 246 | static void cmd_set_rxtx_parsed(void *parsed_result, struct cmdline *cl, |
| 247 | __rte_unused void *data) |
| 248 | { |
| 249 | struct cmd_set_rxtx_result *res = parsed_result; |
| 250 | if (test_set_rxtx_conf(res->mode) < 0) |
| 251 | cmdline_printf(cl, "Cannot find such mode\n"); |
| 252 | } |
| 253 | |
| 254 | cmdline_parse_token_string_t cmd_set_rxtx_set = |
| 255 | TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_result, set, |
nothing calls this directly
no test coverage detected