diff options
author | Vengada <venggovi@cisco.com> | 2017-01-27 01:57:46 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-01-27 12:43:08 +0000 |
commit | 6a0b7e3970f3f4c729112a809665cc2b6a074037 (patch) | |
tree | 92b438e5ca3eaedc3ec5bfd0bb175e9c08193d4e /src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c | |
parent | 19359429304030728c14bc7296024301867f1e81 (diff) |
Cleanup some obfuscated code in next node handling.
The values of next node can be simply assigned by dereferencing the pointer instead of obfuscating the dereference.
Change-Id: I1f4a3d51b768960699010591410695473728d3a2
Signed-off-by: Vengada <venggovi@cisco.com>
Diffstat (limited to 'src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c')
-rw-r--r-- | src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c b/src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c index 4b18bfea533..1d15654464d 100644 --- a/src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c +++ b/src/plugins/ioam/lib-vxlan-gpe/ioam_encap.c @@ -55,7 +55,7 @@ vxlan_gpe_encap_ioam_v4_two_inline (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1, u32 * next0, u32 * next1) { - next0[0] = next1[0] = VXLAN_GPE_ENCAP_IOAM_V4_NEXT_IP4_LOOKUP; + *next0 = *next1 = VXLAN_GPE_ENCAP_IOAM_V4_NEXT_IP4_LOOKUP; vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, b0, next0, VXLAN_GPE_ENCAP_IOAM_V4_NEXT_DROP, 0 /* use_adj */ ); |