| 11768 | } |
| 11769 | |
| 11770 | static int |
| 11771 | parse_quota_update_name(struct context *ctx, const struct token *token, |
| 11772 | const char *str, unsigned int len, void *buf, |
| 11773 | unsigned int size) |
| 11774 | { |
| 11775 | struct rte_flow_update_quota *update = ctx->object; |
| 11776 | |
| 11777 | return parse_name_to_index(ctx, token, str, len, buf, size, |
| 11778 | quota_update_names, |
| 11779 | RTE_DIM(quota_update_names), |
| 11780 | (uint32_t *)&update->op); |
| 11781 | } |
| 11782 | |
| 11783 | static int |
| 11784 | parse_qu_mode_name(struct context *ctx, const struct token *token, |
nothing calls this directly
no test coverage detected