| 3660 | } |
| 3661 | |
| 3662 | static uint32_t |
| 3663 | parse_table_action_time(char **tokens, |
| 3664 | uint32_t n_tokens, |
| 3665 | struct table_rule_action *a) |
| 3666 | { |
| 3667 | if ((n_tokens < 1) || |
| 3668 | strcmp(tokens[0], "time")) |
| 3669 | return 0; |
| 3670 | |
| 3671 | a->time.time = rte_rdtsc(); |
| 3672 | a->action_mask |= 1 << RTE_TABLE_ACTION_TIME; |
| 3673 | return 1; |
| 3674 | } |
| 3675 | |
| 3676 | static void |
| 3677 | parse_free_sym_crypto_param_data(struct rte_table_action_sym_crypto_params *p) |
no test coverage detected