diff options
| author | Kuniyuki Iwashima <[email protected]> | 2024-01-23 17:08:54 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2024-01-27 04:34:25 +0000 |
| commit | 5b17307bd0789edea0675d524a2b277b93bbde62 (patch) | |
| tree | 12578ed97ff17461f11530773e48c2ab9ecff385 /include/net/af_unix.h | |
| parent | af_unix: Do not use atomic ops for unix_sk(sk)->inflight. (diff) | |
| download | kernel-5b17307bd0789edea0675d524a2b277b93bbde62.tar.gz kernel-5b17307bd0789edea0675d524a2b277b93bbde62.zip | |
af_unix: Return struct unix_sock from unix_get_socket().
Currently, unix_get_socket() returns struct sock, but after calling
it, we always cast it to unix_sk().
Let's return struct unix_sock from unix_get_socket().
Signed-off-by: Kuniyuki Iwashima <[email protected]>
Acked-by: Pavel Begunkov <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'include/net/af_unix.h')
| -rw-r--r-- | include/net/af_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/af_unix.h b/include/net/af_unix.h index ac38b63db554..2c98ef95017b 100644 --- a/include/net/af_unix.h +++ b/include/net/af_unix.h @@ -14,7 +14,7 @@ void unix_destruct_scm(struct sk_buff *skb); void io_uring_destruct_scm(struct sk_buff *skb); void unix_gc(void); void wait_for_unix_gc(void); -struct sock *unix_get_socket(struct file *filp); +struct unix_sock *unix_get_socket(struct file *filp); struct sock *unix_peer_get(struct sock *sk); #define UNIX_HASH_MOD (256 - 1) |
