From: Al Viro Date: Sun, 27 Apr 2008 05:28:58 +0000 (-0700) Subject: ipv6: result of csum_fold() is already 16bit, no need to cast X-Git-Tag: v2.6.26-rc1~715^2~9 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=ec6b486fa9f6d20bfbaebba1db88bfe9d390ab1a;p=~shefty%2Frdma-dev.git ipv6: result of csum_fold() is already 16bit, no need to cast Signed-off-by: Al Viro Signed-off-by: David S. Miller --- diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index c8c6e33d116..2de3c464fe7 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c @@ -358,7 +358,7 @@ static int pim6_rcv(struct sk_buff *skb) if (pim->type != ((PIM_VERSION << 4) | PIM_REGISTER) || (pim->flags & PIM_NULL_REGISTER) || (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 && - (u16)csum_fold(skb_checksum(skb, 0, skb->len, 0)))) + csum_fold(skb_checksum(skb, 0, skb->len, 0)))) goto drop; /* check if the inner packet is destined to mcast group */