net: introduce lockdep_is_held and update various places to use it
The socket is either locked if we hold the slock spin_lock for lock_sock_fast and unlock_sock_fast or we own the lock (sk_lock.owned != 0). Check for this and at the same time improve that the current thread/cpu is really holding the lock. Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
61881cfb5a
commit
1e1d04e678
@@ -1933,7 +1933,8 @@ int cipso_v4_sock_setattr(struct sock *sk,
|
||||
|
||||
sk_inet = inet_sk(sk);
|
||||
|
||||
old = rcu_dereference_protected(sk_inet->inet_opt, sock_owned_by_user(sk));
|
||||
old = rcu_dereference_protected(sk_inet->inet_opt,
|
||||
lockdep_sock_is_held(sk));
|
||||
if (sk_inet->is_icsk) {
|
||||
sk_conn = inet_csk(sk);
|
||||
if (old)
|
||||
|
Reference in New Issue
Block a user