aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/af_inet6.c
diff options
context:
space:
mode:
authorBrian Haley <brian.haley@hp.com>2009-10-05 04:24:16 -0400
committerDavid S. Miller <davem@davemloft.net>2009-10-07 04:10:45 -0400
commit51953d5bc43e468f24cc573a45cde1d32af129b8 (patch)
treee275eb5019dc07bdea3ac61b6198c5c410c49e41 /net/ipv6/af_inet6.c
parentd73d3a8cb4723e161589864741d8528d70b350eb (diff)
Use sk_mark for IPv6 routing lookups
Atis Elsts wrote: > Not sure if there is need to fill the mark from skb in tunnel xmit functions. In any case, it's not done for GRE or IPIP tunnels at the moment. Ok, I'll just drop that part, I'm not sure what should be done in this case. > Also, in this patch you are doing that for SIT (v6-in-v4) tunnels only, and not doing it for v4-in-v6 or v6-in-v6 tunnels. Any reason for that? I just sent that patch out too quickly, here's a better one with the updates. Add support for IPv6 route lookups using sk_mark. Signed-off-by: Brian Haley <brian.haley@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/af_inet6.c')
-rw-r--r--net/ipv6/af_inet6.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c
index e127a32f9540..da36497ae647 100644
--- a/net/ipv6/af_inet6.c
+++ b/net/ipv6/af_inet6.c
@@ -654,6 +654,7 @@ int inet6_sk_rebuild_header(struct sock *sk)
654 ipv6_addr_copy(&fl.fl6_src, &np->saddr); 654 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
655 fl.fl6_flowlabel = np->flow_label; 655 fl.fl6_flowlabel = np->flow_label;
656 fl.oif = sk->sk_bound_dev_if; 656 fl.oif = sk->sk_bound_dev_if;
657 fl.mark = sk->sk_mark;
657 fl.fl_ip_dport = inet->dport; 658 fl.fl_ip_dport = inet->dport;
658 fl.fl_ip_sport = inet->sport; 659 fl.fl_ip_sport = inet->sport;
659 security_sk_classify_flow(sk, &fl); 660 security_sk_classify_flow(sk, &fl);