diff options
Diffstat (limited to 'include/net/af_unix.h')
| -rw-r--r-- | include/net/af_unix.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/af_unix.h b/include/net/af_unix.h index 65f49fd7def..6de1e9e35c7 100644 --- a/include/net/af_unix.h +++ b/include/net/af_unix.h @@ -79,9 +79,10 @@ struct unix_sock {  	struct mutex		readlock;          struct sock		*peer;          struct sock		*other; -        struct sock		*gc_tree; +	struct list_head	link;          atomic_t                inflight;          spinlock_t		lock; +	unsigned int		gc_candidate : 1;          wait_queue_head_t       peer_wait;  };  #define unix_sk(__sk) ((struct unix_sock *)__sk)  |