diff options
Diffstat (limited to 'include/net/sock.h')
-rw-r--r-- | include/net/sock.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index a6b9a8d1a6df..4827094f1db4 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -60,7 +60,7 @@ | |||
60 | #include <linux/sched.h> | 60 | #include <linux/sched.h> |
61 | #include <linux/wait.h> | 61 | #include <linux/wait.h> |
62 | #include <linux/cgroup-defs.h> | 62 | #include <linux/cgroup-defs.h> |
63 | 63 | #include <linux/rbtree.h> | |
64 | #include <linux/filter.h> | 64 | #include <linux/filter.h> |
65 | #include <linux/rculist_nulls.h> | 65 | #include <linux/rculist_nulls.h> |
66 | #include <linux/poll.h> | 66 | #include <linux/poll.h> |
@@ -397,7 +397,10 @@ struct sock { | |||
397 | int sk_wmem_queued; | 397 | int sk_wmem_queued; |
398 | refcount_t sk_wmem_alloc; | 398 | refcount_t sk_wmem_alloc; |
399 | unsigned long sk_tsq_flags; | 399 | unsigned long sk_tsq_flags; |
400 | struct sk_buff *sk_send_head; | 400 | union { |
401 | struct sk_buff *sk_send_head; | ||
402 | struct rb_root tcp_rtx_queue; | ||
403 | }; | ||
401 | struct sk_buff_head sk_write_queue; | 404 | struct sk_buff_head sk_write_queue; |
402 | __s32 sk_peek_off; | 405 | __s32 sk_peek_off; |
403 | int sk_write_pending; | 406 | int sk_write_pending; |