diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-10 06:18:25 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:01:22 -0500 |
commit | 868d13ac811746e28e4c806f2b1bd8575796f9af (patch) | |
tree | 9629052707e471597afd13771e23b31b3b11b539 /include/net | |
parent | f8c26b8d589867aed8251db2935f8aa03aa68717 (diff) |
[NETNS]: Pass fib_rules_ops into default_pref method.
fib_rules_ops contains operations and the list of configured rules. ops will
become per/namespace soon, so we need them to be known in the default_pref
callback.
Acked-by: Benjamin Thery <benjamin.thery@bull.net>
Acked-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/fib_rules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/fib_rules.h b/include/net/fib_rules.h index f7351b0ad552..e9a074cf59ed 100644 --- a/include/net/fib_rules.h +++ b/include/net/fib_rules.h | |||
@@ -56,7 +56,7 @@ struct fib_rules_ops | |||
56 | int (*fill)(struct fib_rule *, struct sk_buff *, | 56 | int (*fill)(struct fib_rule *, struct sk_buff *, |
57 | struct nlmsghdr *, | 57 | struct nlmsghdr *, |
58 | struct fib_rule_hdr *); | 58 | struct fib_rule_hdr *); |
59 | u32 (*default_pref)(void); | 59 | u32 (*default_pref)(struct fib_rules_ops *ops); |
60 | size_t (*nlmsg_payload)(struct fib_rule *); | 60 | size_t (*nlmsg_payload)(struct fib_rule *); |
61 | 61 | ||
62 | /* Called after modifications to the rules set, must flush | 62 | /* Called after modifications to the rules set, must flush |