sctp: allow setting SCTP_SACK_IMMEDIATELY by the application
[pandora-kernel.git] / include / net / af_unix.h
index 91ab5b0..f4842f7 100644 (file)
@@ -54,10 +54,12 @@ struct unix_sock {
        struct list_head        link;
        atomic_long_t           inflight;
        spinlock_t              lock;
-       unsigned int            gc_candidate : 1;
-       unsigned int            gc_maybe_cycle : 1;
        unsigned char           recursion_level;
+       unsigned long           gc_flags;
+#define UNIX_GC_CANDIDATE      0
+#define UNIX_GC_MAYBE_CYCLE    1
        struct socket_wq        peer_wq;
+       wait_queue_t            peer_wake;
 };
 #define unix_sk(__sk) ((struct unix_sock *)__sk)