aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuniyuki Iwashima <[email protected]>2024-12-13 11:08:50 +0000
committerPaolo Abeni <[email protected]>2024-12-17 11:08:28 +0000
commitbf61ffeb9cc48ee7d1945f26578291da5d9305e4 (patch)
tree3d546bdd9d81c9cae4802346c70d78180ba4adc3
parentaf_unix: Clean up error paths in unix_dgram_sendmsg(). (diff)
downloadkernel-bf61ffeb9cc48ee7d1945f26578291da5d9305e4.tar.gz
kernel-bf61ffeb9cc48ee7d1945f26578291da5d9305e4.zip
af_unix: Remove unix_our_peer().
unix_our_peer() is used only in unix_may_send(). Let's inline it in unix_may_send(). Signed-off-by: Kuniyuki Iwashima <[email protected]> Signed-off-by: Paolo Abeni <[email protected]>
-rw-r--r--net/unix/af_unix.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 239ce2f77d55..8f2b605ce5b3 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -286,14 +286,9 @@ static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb)
}
#endif /* CONFIG_SECURITY_NETWORK */
-static inline int unix_our_peer(struct sock *sk, struct sock *osk)
-{
- return unix_peer(osk) == sk;
-}
-
static inline int unix_may_send(struct sock *sk, struct sock *osk)
{
- return unix_peer(osk) == NULL || unix_our_peer(sk, osk);
+ return !unix_peer(osk) || unix_peer(osk) == sk;
}
static inline int unix_recvq_full_lockless(const struct sock *sk)