diff options
author | Patrick McHardy <kaber@trash.net> | 2010-04-13 05:03:17 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-13 14:49:31 -0700 |
commit | 0f87b1dd01b51dc3c789f7a212656a4a87eee1bd (patch) | |
tree | 2ce87a26afecd5c0400a6e743534a402a6ca8aec /net/ipv6/fib6_rules.c | |
parent | 28bb17268b92b0c568f2496e5e631008f9108409 (diff) | |
download | linux-0f87b1dd01b51dc3c789f7a212656a4a87eee1bd.tar.bz2 |
net: fib_rules: decouple address families from real address families
Decouple the address family values used for fib_rules from the real
address families in socket.h. This allows to use fib_rules for
code that is not a real address family without increasing AF_MAX/NPROTO.
Values up to 127 are reserved for real address families and map directly
to the corresponding AF value, values starting from 128 are for other
uses. rtnetlink is changed to invoke the AF_UNSPEC dumpit/doit handlers
for these families.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/fib6_rules.c')
-rw-r--r-- | net/ipv6/fib6_rules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/fib6_rules.c b/net/ipv6/fib6_rules.c index 92b2b7fb6c3d..8124f16f2ac2 100644 --- a/net/ipv6/fib6_rules.c +++ b/net/ipv6/fib6_rules.c @@ -238,7 +238,7 @@ static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule) } static struct fib_rules_ops fib6_rules_ops_template = { - .family = AF_INET6, + .family = FIB_RULES_IPV6, .rule_size = sizeof(struct fib6_rule), .addr_size = sizeof(struct in6_addr), .action = fib6_rule_action, |