From 19a168496b91b5266908a68f7caa25c83b751923 Mon Sep 17 00:00:00 2001 From: Mohsin Kazmi Date: Mon, 17 Oct 2022 18:21:44 +0000 Subject: ip: fix the pseudo header checksum Type: fix Signed-off-by: Mohsin Kazmi Change-Id: I5eb83cbd0f8534dc50ecb907b3582717e8709aa2 --- src/vnet/ip/ip_psh_cksum.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/vnet') diff --git a/src/vnet/ip/ip_psh_cksum.h b/src/vnet/ip/ip_psh_cksum.h index 8723749865f..a80211561b7 100644 --- a/src/vnet/ip/ip_psh_cksum.h +++ b/src/vnet/ip/ip_psh_cksum.h @@ -38,8 +38,7 @@ ip4_pseudo_header_cksum (ip4_header_t *ip4) psh.proto = ip4->protocol; psh.l4len = clib_host_to_net_u16 (clib_net_to_host_u16 (ip4->length) - sizeof (ip4_header_t)); - return ~clib_net_to_host_u16 ( - clib_ip_csum ((u8 *) &psh, sizeof (ip4_psh_t))); + return ~(clib_ip_csum ((u8 *) &psh, sizeof (ip4_psh_t))); } static_always_inline u16 @@ -50,8 +49,7 @@ ip6_pseudo_header_cksum (ip6_header_t *ip6) psh.dst = ip6->dst_address; psh.l4len = ip6->payload_length; psh.proto = clib_host_to_net_u32 ((u32) ip6->protocol); - return ~clib_net_to_host_u16 ( - clib_ip_csum ((u8 *) &psh, sizeof (ip6_psh_t))); + return ~(clib_ip_csum ((u8 *) &psh, sizeof (ip6_psh_t))); } #endif /* included_ip_psh_cksum_h */ -- cgit 1.2.3-korg