Commit c8cdaf99 authored by YOSHIFUJI Hideaki's avatar YOSHIFUJI Hideaki

[IPV4,IPV6]: Share cork.rt between IPv4 and IPv6.

Signed-off-by: default avatarYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
parent a9b05723
...@@ -315,7 +315,6 @@ struct ipv6_pinfo { ...@@ -315,7 +315,6 @@ struct ipv6_pinfo {
struct sk_buff *pktoptions; struct sk_buff *pktoptions;
struct { struct {
struct ipv6_txoptions *opt; struct ipv6_txoptions *opt;
struct rt6_info *rt;
int hop_limit; int hop_limit;
int tclass; int tclass;
} cork; } cork;
......
...@@ -136,7 +136,7 @@ struct inet_sock { ...@@ -136,7 +136,7 @@ struct inet_sock {
unsigned int flags; unsigned int flags;
unsigned int fragsize; unsigned int fragsize;
struct ip_options *opt; struct ip_options *opt;
struct rtable *rt; struct dst_entry *dst;
int length; /* Total length of all frames */ int length; /* Total length of all frames */
__be32 addr; __be32 addr;
struct flowi fl; struct flowi fl;
......
...@@ -825,7 +825,7 @@ int ip_append_data(struct sock *sk, ...@@ -825,7 +825,7 @@ int ip_append_data(struct sock *sk,
inet->cork.fragsize = mtu = inet->pmtudisc == IP_PMTUDISC_PROBE ? inet->cork.fragsize = mtu = inet->pmtudisc == IP_PMTUDISC_PROBE ?
rt->u.dst.dev->mtu : rt->u.dst.dev->mtu :
dst_mtu(rt->u.dst.path); dst_mtu(rt->u.dst.path);
inet->cork.rt = rt; inet->cork.dst = &rt->u.dst;
inet->cork.length = 0; inet->cork.length = 0;
sk->sk_sndmsg_page = NULL; sk->sk_sndmsg_page = NULL;
sk->sk_sndmsg_off = 0; sk->sk_sndmsg_off = 0;
...@@ -834,7 +834,7 @@ int ip_append_data(struct sock *sk, ...@@ -834,7 +834,7 @@ int ip_append_data(struct sock *sk,
transhdrlen += exthdrlen; transhdrlen += exthdrlen;
} }
} else { } else {
rt = inet->cork.rt; rt = (struct rtable *)inet->cork.dst;
if (inet->cork.flags & IPCORK_OPT) if (inet->cork.flags & IPCORK_OPT)
opt = inet->cork.opt; opt = inet->cork.opt;
...@@ -1083,7 +1083,7 @@ ssize_t ip_append_page(struct sock *sk, struct page *page, ...@@ -1083,7 +1083,7 @@ ssize_t ip_append_page(struct sock *sk, struct page *page,
if (skb_queue_empty(&sk->sk_write_queue)) if (skb_queue_empty(&sk->sk_write_queue))
return -EINVAL; return -EINVAL;
rt = inet->cork.rt; rt = (struct rtable *)inet->cork.dst;
if (inet->cork.flags & IPCORK_OPT) if (inet->cork.flags & IPCORK_OPT)
opt = inet->cork.opt; opt = inet->cork.opt;
...@@ -1208,10 +1208,8 @@ static void ip_cork_release(struct inet_sock *inet) ...@@ -1208,10 +1208,8 @@ static void ip_cork_release(struct inet_sock *inet)
inet->cork.flags &= ~IPCORK_OPT; inet->cork.flags &= ~IPCORK_OPT;
kfree(inet->cork.opt); kfree(inet->cork.opt);
inet->cork.opt = NULL; inet->cork.opt = NULL;
if (inet->cork.rt) { dst_release(inet->cork.dst);
ip_rt_put(inet->cork.rt); inet->cork.dst = NULL;
inet->cork.rt = NULL;
}
} }
/* /*
...@@ -1224,7 +1222,7 @@ int ip_push_pending_frames(struct sock *sk) ...@@ -1224,7 +1222,7 @@ int ip_push_pending_frames(struct sock *sk)
struct sk_buff **tail_skb; struct sk_buff **tail_skb;
struct inet_sock *inet = inet_sk(sk); struct inet_sock *inet = inet_sk(sk);
struct ip_options *opt = NULL; struct ip_options *opt = NULL;
struct rtable *rt = inet->cork.rt; struct rtable *rt = (struct rtable *)inet->cork.dst;
struct iphdr *iph; struct iphdr *iph;
__be16 df = 0; __be16 df = 0;
__u8 ttl; __u8 ttl;
......
...@@ -1115,7 +1115,7 @@ int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to, ...@@ -1115,7 +1115,7 @@ int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to,
/* need source address above miyazawa*/ /* need source address above miyazawa*/
} }
dst_hold(&rt->u.dst); dst_hold(&rt->u.dst);
np->cork.rt = rt; inet->cork.dst = &rt->u.dst;
inet->cork.fl = *fl; inet->cork.fl = *fl;
np->cork.hop_limit = hlimit; np->cork.hop_limit = hlimit;
np->cork.tclass = tclass; np->cork.tclass = tclass;
...@@ -1136,7 +1136,7 @@ int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to, ...@@ -1136,7 +1136,7 @@ int ip6_append_data(struct sock *sk, int getfrag(void *from, char *to,
length += exthdrlen; length += exthdrlen;
transhdrlen += exthdrlen; transhdrlen += exthdrlen;
} else { } else {
rt = np->cork.rt; rt = (struct rt6_info *)inet->cork.dst;
fl = &inet->cork.fl; fl = &inet->cork.fl;
if (inet->cork.flags & IPCORK_OPT) if (inet->cork.flags & IPCORK_OPT)
opt = np->cork.opt; opt = np->cork.opt;
...@@ -1381,9 +1381,9 @@ static void ip6_cork_release(struct inet_sock *inet, struct ipv6_pinfo *np) ...@@ -1381,9 +1381,9 @@ static void ip6_cork_release(struct inet_sock *inet, struct ipv6_pinfo *np)
inet->cork.flags &= ~IPCORK_OPT; inet->cork.flags &= ~IPCORK_OPT;
kfree(np->cork.opt); kfree(np->cork.opt);
np->cork.opt = NULL; np->cork.opt = NULL;
if (np->cork.rt) { if (inet->cork.dst) {
dst_release(&np->cork.rt->u.dst); dst_release(inet->cork.dst);
np->cork.rt = NULL; inet->cork.dst = NULL;
inet->cork.flags &= ~IPCORK_ALLFRAG; inet->cork.flags &= ~IPCORK_ALLFRAG;
} }
memset(&inet->cork.fl, 0, sizeof(inet->cork.fl)); memset(&inet->cork.fl, 0, sizeof(inet->cork.fl));
...@@ -1398,7 +1398,7 @@ int ip6_push_pending_frames(struct sock *sk) ...@@ -1398,7 +1398,7 @@ int ip6_push_pending_frames(struct sock *sk)
struct ipv6_pinfo *np = inet6_sk(sk); struct ipv6_pinfo *np = inet6_sk(sk);
struct ipv6hdr *hdr; struct ipv6hdr *hdr;
struct ipv6_txoptions *opt = np->cork.opt; struct ipv6_txoptions *opt = np->cork.opt;
struct rt6_info *rt = np->cork.rt; struct rt6_info *rt = (struct rt6_info *)inet->cork.dst;
struct flowi *fl = &inet->cork.fl; struct flowi *fl = &inet->cork.fl;
unsigned char proto = fl->proto; unsigned char proto = fl->proto;
int err = 0; int err = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment