]> Pileus Git - ~andy/linux/commitdiff
net: minor: tcp: use tcp_skb_mss helper in tcp_tso_segment
authorDaniel Borkmann <dborkman@redhat.com>
Fri, 7 Jun 2013 05:11:45 +0000 (05:11 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 7 Jun 2013 21:39:05 +0000 (14:39 -0700)
We have the minimal inline helper tcp_skb_mss to access
skb_shinfo(skb)->gso_size, so also use it here to get mss.

Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp.c

index b5d4ad9880532ae749fa952ceedf64be9b6b7ea7..6a1cf95abc987ddd335f879c7a567c34769c83c7 100644 (file)
@@ -2905,7 +2905,7 @@ struct sk_buff *tcp_tso_segment(struct sk_buff *skb,
        oldlen = (u16)~skb->len;
        __skb_pull(skb, thlen);
 
-       mss = skb_shinfo(skb)->gso_size;
+       mss = tcp_skb_mss(skb);
        if (unlikely(skb->len <= mss))
                goto out;
 
@@ -3071,7 +3071,7 @@ found:
                flush |= *(u32 *)((u8 *)th + i) ^
                         *(u32 *)((u8 *)th2 + i);
 
-       mss = skb_shinfo(p)->gso_size;
+       mss = tcp_skb_mss(p);
 
        flush |= (len - 1) >= mss;
        flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);