diff options
| author | Ingo Molnar <[email protected]> | 2014-07-16 15:10:07 +0200 | 
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2014-07-16 15:10:07 +0200 | 
| commit | d26fad5b38e1c4667d4f2604936e59c837caa54d (patch) | |
| tree | 04b524a69a0129c181567445bff18847a1b44721 /net/ipv4/tcp_input.c | |
| parent | e720fff6341fe4b95e5a93c939bd3c77fa55ced4 (diff) | |
| parent | 1795cd9b3a91d4b5473c97f491d63892442212ab (diff) | |
Merge tag 'v3.16-rc5' into sched/core, to refresh the branch before applying bigger tree-wide changes
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_input.c')
| -rw-r--r-- | net/ipv4/tcp_input.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 40661fc1e233..b5c23756965a 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -1162,7 +1162,7 @@ static int tcp_match_skb_to_sack(struct sock *sk, struct sk_buff *skb,  			unsigned int new_len = (pkt_len / mss) * mss;  			if (!in_sack && new_len < pkt_len) {  				new_len += mss; -				if (new_len > skb->len) +				if (new_len >= skb->len)  					return 0;  			}  			pkt_len = new_len;  |