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

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

inet: constify __inet_inherit_port() sock argument



socket is not touched, make it const.

Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a2432c4f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -199,7 +199,7 @@ static inline int inet_sk_listen_hashfn(const struct sock *sk)
}
}


/* Caller must disable local BH processing. */
/* Caller must disable local BH processing. */
int __inet_inherit_port(struct sock *sk, struct sock *child);
int __inet_inherit_port(const struct sock *sk, struct sock *child);


void inet_put_port(struct sock *sk);
void inet_put_port(struct sock *sk);


+1 −1
Original line number Original line Diff line number Diff line
@@ -126,7 +126,7 @@ void inet_put_port(struct sock *sk)
}
}
EXPORT_SYMBOL(inet_put_port);
EXPORT_SYMBOL(inet_put_port);


int __inet_inherit_port(struct sock *sk, struct sock *child)
int __inet_inherit_port(const struct sock *sk, struct sock *child)
{
{
	struct inet_hashinfo *table = sk->sk_prot->h.hashinfo;
	struct inet_hashinfo *table = sk->sk_prot->h.hashinfo;
	unsigned short port = inet_sk(child)->inet_num;
	unsigned short port = inet_sk(child)->inet_num;