mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-21 06:34:00 +00:00
sock: Add sock_owned_by_user_nocheck
This allows checking socket lock ownership with producing lockdep warnings. Signed-off-by: Tom Herbert <tom@quantonium.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f72c4ac695
commit
602f7a2714
1 changed files with 5 additions and 0 deletions
|
@ -1514,6 +1514,11 @@ static inline bool sock_owned_by_user(const struct sock *sk)
|
|||
return sk->sk_lock.owned;
|
||||
}
|
||||
|
||||
static inline bool sock_owned_by_user_nocheck(const struct sock *sk)
|
||||
{
|
||||
return sk->sk_lock.owned;
|
||||
}
|
||||
|
||||
/* no reclassification while locks are held */
|
||||
static inline bool sock_allow_reclassification(const struct sock *csk)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue