| 7207 | TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all"); |
| 7208 | |
| 7209 | static void |
| 7210 | cmd_showfwdall_parsed(void *parsed_result, |
| 7211 | __rte_unused struct cmdline *cl, |
| 7212 | __rte_unused void *data) |
| 7213 | { |
| 7214 | struct fwd_result *res = parsed_result; |
| 7215 | |
| 7216 | if (!strcmp(res->action, "show")) |
| 7217 | fwd_stats_display(); |
| 7218 | else |
| 7219 | fwd_stats_reset(); |
| 7220 | } |
| 7221 | |
| 7222 | static cmdline_parse_inst_t cmd_showfwdall = { |
| 7223 | .f = cmd_showfwdall_parsed, |
nothing calls this directly
no test coverage detected