diff options
Diffstat (limited to 'include/net/af_unix.h')
| -rw-r--r-- | include/net/af_unix.h | 14 | 
1 files changed, 0 insertions, 14 deletions
| diff --git a/include/net/af_unix.h b/include/net/af_unix.h index b6eedf7650da..63129c79b8cb 100644 --- a/include/net/af_unix.h +++ b/include/net/af_unix.h @@ -96,20 +96,6 @@ struct unix_sock {  #define unix_state_lock(s)	spin_lock(&unix_sk(s)->lock)  #define unix_state_unlock(s)	spin_unlock(&unix_sk(s)->lock) -enum unix_socket_lock_class { -	U_LOCK_NORMAL, -	U_LOCK_SECOND,	/* for double locking, see unix_state_double_lock(). */ -	U_LOCK_DIAG, /* used while dumping icons, see sk_diag_dump_icons(). */ -	U_LOCK_GC_LISTENER, /* used for listening socket while determining gc -			     * candidates to close a small race window. -			     */ -}; - -static inline void unix_state_lock_nested(struct sock *sk, -				   enum unix_socket_lock_class subclass) -{ -	spin_lock_nested(&unix_sk(sk)->lock, subclass); -}  #define peer_wait peer_wq.wait |