| 11755 | } |
| 11756 | |
| 11757 | static int |
| 11758 | parse_quota_mode_name(struct context *ctx, const struct token *token, |
| 11759 | const char *str, unsigned int len, void *buf, |
| 11760 | unsigned int size) |
| 11761 | { |
| 11762 | struct rte_flow_action_quota *quota = ctx->object; |
| 11763 | |
| 11764 | return parse_name_to_index(ctx, token, str, len, buf, size, |
| 11765 | quota_mode_names, |
| 11766 | RTE_DIM(quota_mode_names), |
| 11767 | (uint32_t *)"a->mode); |
| 11768 | } |
| 11769 | |
| 11770 | static int |
| 11771 | parse_quota_update_name(struct context *ctx, const struct token *token, |
nothing calls this directly
no test coverage detected