diff options
author | Eric Dumazet <edumazet@google.com> | 2023-03-16 16:32:02 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-03-17 09:56:37 +0100 |
commit | 736c8b52c8ada4ca93a59f7d597c5650ebc45921 (patch) | |
tree | 9a96d9a2954793f393f6c63f699ed2c8455df5c1 /net/ipv4/raw_diag.c | |
parent | ipv4: raw: constify raw_v4_match() socket argument (diff) | |
download | linux-736c8b52c8ada4ca93a59f7d597c5650ebc45921.tar.xz linux-736c8b52c8ada4ca93a59f7d597c5650ebc45921.zip |
inet_diag: constify raw_lookup() socket argument
Now both raw_v4_match() and raw_v6_match() accept a const socket,
raw_lookup() can do the same to clarify its role.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/raw_diag.c')
-rw-r--r-- | net/ipv4/raw_diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/raw_diag.c b/net/ipv4/raw_diag.c index 999321834b94..bca49a844f01 100644 --- a/net/ipv4/raw_diag.c +++ b/net/ipv4/raw_diag.c @@ -34,7 +34,7 @@ raw_get_hashinfo(const struct inet_diag_req_v2 *r) * use helper to figure it out. */ -static bool raw_lookup(struct net *net, struct sock *sk, +static bool raw_lookup(struct net *net, const struct sock *sk, const struct inet_diag_req_v2 *req) { struct inet_diag_req_raw *r = (void *)req; |