diff options
author | Steven Whitehouse <steve@chygwyn.com> | 2006-08-11 16:43:41 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 14:54:36 -0700 |
commit | d880309ae17783c27016bf4f903782d322d0a2a1 (patch) | |
tree | 9d573199c073960cd9b077c7f22c6183fbb2564e /net/decnet | |
parent | b6fe17d6cc5d570b72f8e4da351b593c5a680355 (diff) | |
download | linux-d880309ae17783c27016bf4f903782d322d0a2a1.tar.bz2 |
[DECNET] Fix to multiple tables routing
Here is a fix to Patrick McHardy's increase number of routing tables
patch for DECnet. I did just test this and it appears to be working
fine with this patch.
Signed-off-by: Steven Whitehouse <steve@chygwyn.com>
Acked-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/decnet')
-rw-r--r-- | net/decnet/dn_rules.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/decnet/dn_rules.c b/net/decnet/dn_rules.c index 878312ff34ec..c8d9411e5943 100644 --- a/net/decnet/dn_rules.c +++ b/net/decnet/dn_rules.c @@ -116,6 +116,7 @@ static struct nla_policy dn_fib_rule_policy[FRA_MAX+1] __read_mostly = { [FRA_SRC] = { .type = NLA_U16 }, [FRA_DST] = { .type = NLA_U16 }, [FRA_FWMARK] = { .type = NLA_U32 }, + [FRA_TABLE] = { .type = NLA_U32 }, }; static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags) |