diff options
author | Steven Whitehouse <steve@chygwyn.com> | 2006-08-11 19:43:41 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 17:54:36 -0400 |
commit | d880309ae17783c27016bf4f903782d322d0a2a1 (patch) | |
tree | 9d573199c073960cd9b077c7f22c6183fbb2564e /net | |
parent | b6fe17d6cc5d570b72f8e4da351b593c5a680355 (diff) |
[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')
-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 = { | |||
116 | [FRA_SRC] = { .type = NLA_U16 }, | 116 | [FRA_SRC] = { .type = NLA_U16 }, |
117 | [FRA_DST] = { .type = NLA_U16 }, | 117 | [FRA_DST] = { .type = NLA_U16 }, |
118 | [FRA_FWMARK] = { .type = NLA_U32 }, | 118 | [FRA_FWMARK] = { .type = NLA_U32 }, |
119 | [FRA_TABLE] = { .type = NLA_U32 }, | ||
119 | }; | 120 | }; |
120 | 121 | ||
121 | static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags) | 122 | static int dn_fib_rule_match(struct fib_rule *rule, struct flowi *fl, int flags) |