From 7e4edc8d1ee9ae26747cf6ec23b76b78f0f550da Mon Sep 17 00:00:00 2001 From: Vengada Govindan Date: Tue, 13 Dec 2016 21:59:54 -0800 Subject: VPP-470: Introduce VxLAN-GPE as transport for iOAM. This is the second of the two commits. This commit introduces VxLAN-GPE transit functionality. Change-Id: I12f13e00f456df0047f2b7a0737addfeb683c420 Signed-off-by: Vengada Govindan --- plugins/ioam-plugin/ioam/lib-vxlan-gpe/ioam_decap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/ioam-plugin/ioam/lib-vxlan-gpe/ioam_decap.c') diff --git a/plugins/ioam-plugin/ioam/lib-vxlan-gpe/ioam_decap.c b/plugins/ioam-plugin/ioam/lib-vxlan-gpe/ioam_decap.c index f938a330446..fd3086571eb 100644 --- a/plugins/ioam-plugin/ioam/lib-vxlan-gpe/ioam_decap.c +++ b/plugins/ioam-plugin/ioam/lib-vxlan-gpe/ioam_decap.c @@ -52,10 +52,10 @@ vxlan_gpe_decap_ioam_v4_two_inline (vlib_main_t * vm, vxlan_gpe_ioam_main_t *hm = &vxlan_gpe_ioam_main; next0[0] = next1[0] = hm->decap_v4_next_override; - vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, ngm, b0, &next0[0], + vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, b0, &next0[0], VXLAN_GPE_DECAP_IOAM_V4_NEXT_DROP, 0 /* use_adj */ ); - vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, ngm, b1, &next0[1], + vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, b1, &next0[1], VXLAN_GPE_DECAP_IOAM_V4_NEXT_DROP, 0 /* use_adj */ ); } @@ -163,7 +163,7 @@ vxlan_gpe_decap_ioam (vlib_main_t * vm, sizeof (vxlan_gpe_header_t))); next0 = hm->decap_v4_next_override; - vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, ngm, b0, + vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, b0, &next0, VXLAN_GPE_DECAP_IOAM_V4_NEXT_DROP, 0 /* use_adj */ ); -- cgit 1.2.3-korg