Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6560d4d authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

net: ping: remove some sparse errors



net/ipv4/sysctl_net_ipv4.c:78:6: warning: symbol 'inet_get_ping_group_range_table'
was not declared. Should it be static?

net/ipv4/sysctl_net_ipv4.c:119:31: warning: incorrect type in argument 2
(different signedness)
net/ipv4/sysctl_net_ipv4.c:119:31: expected int *range
net/ipv4/sysctl_net_ipv4.c:119:31: got unsigned int *<noident>

Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3a53943b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ static int ipv4_local_port_range(ctl_table *table, int write,
}


void inet_get_ping_group_range_table(struct ctl_table *table, gid_t *low, gid_t *high)
static void inet_get_ping_group_range_table(struct ctl_table *table, gid_t *low, gid_t *high)
{
	gid_t *data = table->data;
	unsigned seq;
@@ -88,7 +88,7 @@ void inet_get_ping_group_range_table(struct ctl_table *table, gid_t *low, gid_t
}

/* Update system visible IP port range */
static void set_ping_group_range(struct ctl_table *table, int range[2])
static void set_ping_group_range(struct ctl_table *table, gid_t range[2])
{
	gid_t *data = table->data;
	write_seqlock(&sysctl_local_ports.lock);