| 4715 | } |
| 4716 | |
| 4717 | static const char * |
| 4718 | policer_action_string(enum rte_table_action_policer action) { |
| 4719 | switch (action) { |
| 4720 | case RTE_TABLE_ACTION_POLICER_COLOR_GREEN: return "G"; |
| 4721 | case RTE_TABLE_ACTION_POLICER_COLOR_YELLOW: return "Y"; |
| 4722 | case RTE_TABLE_ACTION_POLICER_COLOR_RED: return "R"; |
| 4723 | case RTE_TABLE_ACTION_POLICER_DROP: return "D"; |
| 4724 | default: return "?"; |
| 4725 | } |
| 4726 | } |
| 4727 | |
| 4728 | static int |
| 4729 | table_rule_show(const char *pipeline_name, |