source: trunk/packages/xen-common/xen-common/patches/linux-2.6.18/net-gso-5-rcv-mss.patch @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

  • Property svn:mime-type set to text/x-patch
File size: 527 bytes
RevLine 
[34]1diff -pruN ../orig-linux-2.6.18/net/ipv4/tcp_input.c ./net/ipv4/tcp_input.c
2--- ../orig-linux-2.6.18/net/ipv4/tcp_input.c   2006-09-20 04:42:06.000000000 +0100
3+++ ./net/ipv4/tcp_input.c      2007-01-12 18:10:16.000000000 +0000
4@@ -127,7 +127,7 @@ static void tcp_measure_rcv_mss(struct s
5        /* skb->len may jitter because of SACKs, even if peer
6         * sends good full-sized frames.
7         */
8-       len = skb->len;
9+       len = skb_shinfo(skb)->gso_size ?: skb->len;
10        if (len >= icsk->icsk_ack.rcv_mss) {
11                icsk->icsk_ack.rcv_mss = len;
12        } else {
Note: See TracBrowser for help on using the repository browser.