diff options
author | Florent Fourcot <florent.fourcot@enst-bretagne.fr> | 2014-01-16 11:21:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-17 20:56:33 -0500 |
commit | 1d13a96c74fc4802a775189ddb58bc6469ffdaa3 (patch) | |
tree | bf854b523585d551146a82d12d429ab19ae6ef3c /include/net | |
parent | d037c4d70fb281cd54efb03254b51c7452750491 (diff) |
ipv6: tcp: fix flowlabel value in ACK messages send from TIME_WAIT
This patch is following the commit b903d324bee262 (ipv6: tcp: fix TCLASS
value in ACK messages sent from TIME_WAIT).
For the same reason than tclass, we have to store the flow label in the
inet_timewait_sock to provide consistency of flow label on the last ACK.
Signed-off-by: Florent Fourcot <florent.fourcot@enst-bretagne.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/inet_timewait_sock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/inet_timewait_sock.h b/include/net/inet_timewait_sock.h index 71c6e264e5b5..61474ea02152 100644 --- a/include/net/inet_timewait_sock.h +++ b/include/net/inet_timewait_sock.h | |||
@@ -133,9 +133,9 @@ struct inet_timewait_sock { | |||
133 | /* And these are ours. */ | 133 | /* And these are ours. */ |
134 | unsigned int tw_ipv6only : 1, | 134 | unsigned int tw_ipv6only : 1, |
135 | tw_transparent : 1, | 135 | tw_transparent : 1, |
136 | tw_pad : 6, /* 6 bits hole */ | 136 | tw_flowlabel : 20, |
137 | tw_tos : 8, | 137 | tw_pad : 2, /* 2 bits hole */ |
138 | tw_pad2 : 16; /* 16 bits hole */ | 138 | tw_tos : 8; |
139 | kmemcheck_bitfield_end(flags); | 139 | kmemcheck_bitfield_end(flags); |
140 | u32 tw_ttd; | 140 | u32 tw_ttd; |
141 | struct inet_bind_bucket *tw_tb; | 141 | struct inet_bind_bucket *tw_tb; |