replace packed attributes
[dpdk.git] / examples / qos_meter / rte_policer.h
index 532a853..95efe5b 100644 (file)
@@ -9,22 +9,22 @@
 #include <rte_meter.h>
 
 enum rte_phb_action {
-       e_RTE_PHB_ACTION_GREEN = e_RTE_METER_GREEN,
-       e_RTE_PHB_ACTION_YELLOW = e_RTE_METER_YELLOW,
-       e_RTE_PHB_ACTION_RED = e_RTE_METER_RED,
+       e_RTE_PHB_ACTION_GREEN = RTE_COLOR_GREEN,
+       e_RTE_PHB_ACTION_YELLOW = RTE_COLOR_YELLOW,
+       e_RTE_PHB_ACTION_RED = RTE_COLOR_RED,
        e_RTE_PHB_ACTION_DROP = 3,
 };
 
 struct rte_phb {
-       enum rte_phb_action actions[e_RTE_METER_COLORS][e_RTE_METER_COLORS];
+       enum rte_phb_action actions[RTE_COLORS][RTE_COLORS];
 };
 
 int
 rte_phb_config(struct rte_phb *phb_table, uint32_t phb_table_index,
-       enum rte_meter_color pre_meter, enum rte_meter_color post_meter, enum rte_phb_action action);
+       enum rte_color pre_meter, enum rte_color post_meter, enum rte_phb_action action);
 
 static inline enum rte_phb_action
-policer_run(struct rte_phb *phb_table, uint32_t phb_table_index, enum rte_meter_color pre_meter, enum rte_meter_color post_meter)
+policer_run(struct rte_phb *phb_table, uint32_t phb_table_index, enum rte_color pre_meter, enum rte_color post_meter)
 {
        struct rte_phb *phb = &phb_table[phb_table_index];
        enum rte_phb_action action = phb->actions[pre_meter][post_meter];