diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-08-10 17:31:21 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:48:00 -0400 |
commit | 13dae426318aae073028a4b3bd493104a991e800 (patch) | |
tree | 29c2265378c70c9d771c8127d960455e8d64dc27 /include/linux/tcp.h | |
parent | e60402d0a909ca2e6e2fbdf9ed004ef0fae36d33 (diff) |
[TCP]: Update comment about highest_sack validity
This stale info came from the original idea, which proved to be
unnecessarily complex, sacked_out > 0 is easy to do and that when
it's going to be needed anyway (it _can_ be valid also when
sacked_out == 0 but there's not going to be a guarantee about it
for now).
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/tcp.h')
-rw-r--r-- | include/linux/tcp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 1f12fa0b67d7..f8cf090e8f49 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
@@ -332,7 +332,8 @@ struct tcp_sock { | |||
332 | 332 | ||
333 | struct tcp_sack_block_wire recv_sack_cache[4]; | 333 | struct tcp_sack_block_wire recv_sack_cache[4]; |
334 | 334 | ||
335 | u32 highest_sack; /* Start seq of globally highest revd SACK (valid only in slowpath) */ | 335 | u32 highest_sack; /* Start seq of globally highest revd SACK |
336 | * (validity guaranteed only if sacked_out > 0) */ | ||
336 | 337 | ||
337 | /* from STCP, retrans queue hinting */ | 338 | /* from STCP, retrans queue hinting */ |
338 | struct sk_buff* lost_skb_hint; | 339 | struct sk_buff* lost_skb_hint; |