commit | 2cc67cc731d9b693a08e781e98fec0e3a6d6ba44 | [log] [tgz] |
---|---|---|
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | Mon Aug 21 19:18:57 2006 +0900 |
committer | David S. Miller <davem@sunset.davemloft.net> | Fri Sep 22 15:17:59 2006 -0700 |
tree | c749d424266ae7f6427495a97da7dc7b3de2446d | |
parent | e731c248ba9e8c7025ae8b4a3fa48e4236b82e52 [diff] [blame] |
[IPV6] ROUTE: Routing by Traffic Class. Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
diff --git a/net/ipv6/fib6_rules.c b/net/ipv6/fib6_rules.c index 7b4908c..91f6233 100644 --- a/net/ipv6/fib6_rules.c +++ b/net/ipv6/fib6_rules.c
@@ -121,6 +121,9 @@ !ipv6_prefix_equal(&fl->fl6_src, &r->src.addr, r->src.plen)) return 0; + if (r->tclass && r->tclass != ((ntohl(fl->fl6_flowlabel) >> 20) & 0xff)) + return 0; + return 1; }