diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-07-25 08:06:13 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-26 01:36:57 +0200 |
commit | b87bac1012c483462e7776c7b7320b659dbb3295 (patch) | |
tree | 69425089bf7ec1fb084de1bf7f03c5ffc2711d97 /net/ipv4/igmp.c | |
parent | tcp: ack immediately when a cwr packet arrives (diff) | |
download | linux-b87bac1012c483462e7776c7b7320b659dbb3295.tar.xz linux-b87bac1012c483462e7776c7b7320b659dbb3295.zip |
net: igmp: make function __ip_mc_inc_group() static
Fixes the following sparse warnings:
net/ipv4/igmp.c:1391:6: warning:
symbol '__ip_mc_inc_group' was not declared. Should it be static?
Fixes: 6e2059b53f98 ("ipv4/igmp: init group mode as INCLUDE when join source group")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/igmp.c')
-rw-r--r-- | net/ipv4/igmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index 28fef7d15959..75151be21413 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c @@ -1387,7 +1387,8 @@ static void ip_mc_hash_remove(struct in_device *in_dev, /* * A socket has joined a multicast group on device dev. */ -void __ip_mc_inc_group(struct in_device *in_dev, __be32 addr, unsigned int mode) +static void __ip_mc_inc_group(struct in_device *in_dev, __be32 addr, + unsigned int mode) { struct ip_mc_list *im; #ifdef CONFIG_IP_MULTICAST |