diff options
Diffstat (limited to 'src/vnet/policer/node_funcs.c')
-rw-r--r-- | src/vnet/policer/node_funcs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vnet/policer/node_funcs.c b/src/vnet/policer/node_funcs.c index fd7f197e905..5ede4aca944 100644 --- a/src/vnet/policer/node_funcs.c +++ b/src/vnet/policer/node_funcs.c @@ -156,7 +156,7 @@ vnet_policer_inline (vlib_main_t * vm, act1 = vnet_policer_police (vm, b1, pi1, time_in_policer_periods, POLICE_CONFORM /* no chaining */ ); - if (PREDICT_FALSE (act0 == SSE2_QOS_ACTION_DROP)) /* drop action */ + if (PREDICT_FALSE (act0 == QOS_ACTION_DROP)) /* drop action */ { next0 = VNET_POLICER_NEXT_DROP; b0->error = node->errors[VNET_POLICER_ERROR_DROP]; @@ -166,7 +166,7 @@ vnet_policer_inline (vlib_main_t * vm, transmitted++; } - if (PREDICT_FALSE (act1 == SSE2_QOS_ACTION_DROP)) /* drop action */ + if (PREDICT_FALSE (act1 == QOS_ACTION_DROP)) /* drop action */ { next1 = VNET_POLICER_NEXT_DROP; b1->error = node->errors[VNET_POLICER_ERROR_DROP]; @@ -238,7 +238,7 @@ vnet_policer_inline (vlib_main_t * vm, act0 = vnet_policer_police (vm, b0, pi0, time_in_policer_periods, POLICE_CONFORM /* no chaining */ ); - if (PREDICT_FALSE (act0 == SSE2_QOS_ACTION_DROP)) /* drop action */ + if (PREDICT_FALSE (act0 == QOS_ACTION_DROP)) /* drop action */ { next0 = VNET_POLICER_NEXT_DROP; b0->error = node->errors[VNET_POLICER_ERROR_DROP]; @@ -704,7 +704,7 @@ policer_classify_inline (vlib_main_t * vm, e0->next_index, time_in_policer_periods, e0->opaque_index); - if (PREDICT_FALSE (act0 == SSE2_QOS_ACTION_DROP)) + if (PREDICT_FALSE (act0 == QOS_ACTION_DROP)) { next0 = POLICER_CLASSIFY_NEXT_INDEX_DROP; b0->error = node->errors[POLICER_CLASSIFY_ERROR_DROP]; @@ -738,7 +738,7 @@ policer_classify_inline (vlib_main_t * vm, e0->next_index, time_in_policer_periods, e0->opaque_index); - if (PREDICT_FALSE (act0 == SSE2_QOS_ACTION_DROP)) + if (PREDICT_FALSE (act0 == QOS_ACTION_DROP)) { next0 = POLICER_CLASSIFY_NEXT_INDEX_DROP; b0->error = |