From ec8aea1b1ed08fe6d0052ad1ed1059665479940e Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Wed, 2 May 2018 09:55:01 -0500 Subject: Fix CentOS 7 build issue with vxlan Two vxlan union/struct initializations caused gcc on CentOS 7 to puke. Modified them to make the build work again. Change-Id: Iad667444b86cfde5ee4329993b520028d3b593ad Signed-off-by: Matthew Smith --- src/vnet/vxlan/vxlan.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/vnet') diff --git a/src/vnet/vxlan/vxlan.c b/src/vnet/vxlan/vxlan.c index ed5406c8fc0..7516a05ab6a 100644 --- a/src/vnet/vxlan/vxlan.c +++ b/src/vnet/vxlan/vxlan.c @@ -221,12 +221,14 @@ vxlan_rewrite (vxlan_tunnel_t * t, bool is_ip6) union { ip4_vxlan_header_t h4; ip6_vxlan_header_t h6; - } h = {0}; + } h; int len = is_ip6 ? sizeof h.h6 : sizeof h.h4; udp_header_t * udp; vxlan_header_t * vxlan; /* Fixed portion of the (outer) ip header */ + + memset (&h, 0, sizeof(h)); if (!is_ip6) { ip4_header_t * ip = &h.h4.ip4; @@ -385,7 +387,7 @@ int vnet_vxlan_add_del_tunnel return VNET_API_ERROR_INVALID_DECAP_NEXT; pool_get_aligned (vxm->tunnels, t, CLIB_CACHE_LINE_BYTES); - *t = (vxlan_tunnel_t){ 0 }; + memset (t, 0, sizeof(*t)); dev_instance = t - vxm->tunnels; /* copy from arg structure */ -- cgit 1.2.3-korg