diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-22 22:04:04 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:11:03 -0800 |
commit | 010278ec4cdf404aefc0bbd5e7406674fec95286 (patch) | |
tree | 11bd9546231f92214289c2db4bd8f2bc94153d27 /include/net | |
parent | 64c2d5382954ccf6054424653f4c7f4f04c1ff21 (diff) | |
download | kernel_goldelico_gta04-010278ec4cdf404aefc0bbd5e7406674fec95286.zip kernel_goldelico_gta04-010278ec4cdf404aefc0bbd5e7406674fec95286.tar.gz kernel_goldelico_gta04-010278ec4cdf404aefc0bbd5e7406674fec95286.tar.bz2 |
[NETNS]: Add netns parameter to fib_select_default.
Currently fib_select_default calls fib_get_table() with the
init_net. Prepare it to provide a correct namespace to lookup default
route.
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/ip_fib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index 39f944a..9daa60b 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h @@ -213,7 +213,8 @@ extern const struct nla_policy rtm_ipv4_policy[]; extern void ip_fib_init(void); extern int fib_validate_source(__be32 src, __be32 dst, u8 tos, int oif, struct net_device *dev, __be32 *spec_dst, u32 *itag); -extern void fib_select_default(const struct flowi *flp, struct fib_result *res); +extern void fib_select_default(struct net *net, const struct flowi *flp, + struct fib_result *res); /* Exported by fib_semantics.c */ extern int ip_fib_check_default(__be32 gw, struct net_device *dev); |