Skip to content

Commit

Permalink
net: fix two sparse warnings introduced by IGMP/MLD parsing exports
Browse files Browse the repository at this point in the history
> net/core/skbuff.c:4108:13: sparse: incorrect type in assignment (different base types)
> net/ipv6/mcast_snoop.c:63 ipv6_mc_check_exthdrs() warn: unsigned 'offset' is never less than zero.

Introduced by 9afd85c
("net: Export IGMP/MLD message validation code")

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Linus Lüssing authored and David S. Miller committed May 4, 2015
1 parent f916158 commit fcba67c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/core/skbuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -4093,7 +4093,7 @@ struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
{
struct sk_buff *skb_chk;
unsigned int offset = skb_transport_offset(skb);
int ret;
__sum16 ret;

skb_chk = skb_checksum_maybe_trim(skb, transport_len);
if (!skb_chk)
Expand Down
2 changes: 1 addition & 1 deletion net/ipv6/mcast_snoop.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static int ipv6_mc_check_ip6hdr(struct sk_buff *skb)
static int ipv6_mc_check_exthdrs(struct sk_buff *skb)
{
const struct ipv6hdr *ip6h;
unsigned int offset;
int offset;
u8 nexthdr;
__be16 frag_off;

Expand Down

0 comments on commit fcba67c

Please sign in to comment.