dect
/
linux-2.6
Archived
13
0
Fork 0

inet: Replace left-over references to inet->cork

The patch to replace inet->cork with cork left out two spots in
__ip_append_data that can result in bogus packet construction.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Herbert Xu 2011-03-01 23:00:58 -08:00 committed by David S. Miller
parent 7f6daa635c
commit 07df5294a7
1 changed files with 2 additions and 2 deletions

View File

@ -789,7 +789,7 @@ static int __ip_append_data(struct sock *sk, struct sk_buff_head *queue,
struct inet_sock *inet = inet_sk(sk); struct inet_sock *inet = inet_sk(sk);
struct sk_buff *skb; struct sk_buff *skb;
struct ip_options *opt = inet->cork.opt; struct ip_options *opt = cork->opt;
int hh_len; int hh_len;
int exthdrlen; int exthdrlen;
int mtu; int mtu;
@ -803,7 +803,7 @@ static int __ip_append_data(struct sock *sk, struct sk_buff_head *queue,
exthdrlen = transhdrlen ? rt->dst.header_len : 0; exthdrlen = transhdrlen ? rt->dst.header_len : 0;
length += exthdrlen; length += exthdrlen;
transhdrlen += exthdrlen; transhdrlen += exthdrlen;
mtu = inet->cork.fragsize; mtu = cork->fragsize;
hh_len = LL_RESERVED_SPACE(rt->dst.dev); hh_len = LL_RESERVED_SPACE(rt->dst.dev);