X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fl2%2Fl2_in_out_acl.c;h=1ca136130788114534db8bb7adb3178230237262;hb=b6a4795;hp=6f86a9f66ae446572e01b1a31ad811e7b45840cc;hpb=815d7d5637fbffd20bf81c74fd59dac8e4fe4d94;p=vpp.git diff --git a/src/vnet/l2/l2_in_out_acl.c b/src/vnet/l2/l2_in_out_acl.c index 6f86a9f66ae..1ca13613078 100644 --- a/src/vnet/l2/l2_in_out_acl.c +++ b/src/vnet/l2/l2_in_out_acl.c @@ -197,7 +197,7 @@ l2_in_out_acl_node_fn (vlib_main_t * vm, if (t0->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) h0 = (void *) vlib_buffer_get_current (b0) + t0->current_data_offset; else - h0 = b0->data; + h0 = (void *) vlib_buffer_get_current (b0); vnet_buffer (b0)->l2_classify.hash = vnet_classify_hash_packet (t0, (u8 *) h0); @@ -207,7 +207,7 @@ l2_in_out_acl_node_fn (vlib_main_t * vm, if (t1->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) h1 = (void *) vlib_buffer_get_current (b1) + t1->current_data_offset; else - h1 = b1->data; + h1 = (void *) vlib_buffer_get_current (b1); vnet_buffer (b1)->l2_classify.hash = vnet_classify_hash_packet (t1, (u8 *) h1); @@ -244,7 +244,7 @@ l2_in_out_acl_node_fn (vlib_main_t * vm, if (t0->current_data_flag == CLASSIFY_FLAG_USE_CURR_DATA) h0 = (void *) vlib_buffer_get_current (b0) + t0->current_data_offset; else - h0 = b0->data; + h0 = (void *) vlib_buffer_get_current (b0); vnet_buffer (b0)->l2_classify.hash = vnet_classify_hash_packet (t0, (u8 *) h0); @@ -329,7 +329,7 @@ l2_in_out_acl_node_fn (vlib_main_t * vm, (void *) vlib_buffer_get_current (b0) + t0->current_data_offset; else - h0 = b0->data; + h0 = (void *) vlib_buffer_get_current (b0); e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now); if (e0) @@ -384,7 +384,7 @@ l2_in_out_acl_node_fn (vlib_main_t * vm, (void *) vlib_buffer_get_current (b0) + t0->current_data_offset; else - h0 = b0->data; + h0 = (void *) vlib_buffer_get_current (b0); hash0 = vnet_classify_hash_packet (t0, (u8 *) h0); e0 = vnet_classify_find_entry