diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-31 21:50:07 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-31 22:28:41 -0500 |
commit | 4814bdbd590e835ecec2d5e505165ec1c19796b2 (patch) | |
tree | b53996e694125012b202ea35a46fdf3cb39ae1df /include | |
parent | 7462bd744e8882f9ebb9220d46fd4fec8b35b082 (diff) |
[NETNS]: Lookup in FIB semantic hashes taking into account the namespace.
The namespace is not available in the fib_sync_down_addr, add it as a
parameter.
Looking up a device by the pointer to it is OK. Looking up using a
result from fib_trie/fib_hash table lookup is also safe. No need to
fix that at all. So, just fix lookup by address and insertion to the
hash table path.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ip_fib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index cb0df37950b7..90d1175f63de 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h | |||
@@ -220,7 +220,7 @@ extern void fib_select_default(struct net *net, const struct flowi *flp, | |||
220 | /* Exported by fib_semantics.c */ | 220 | /* Exported by fib_semantics.c */ |
221 | extern int ip_fib_check_default(__be32 gw, struct net_device *dev); | 221 | extern int ip_fib_check_default(__be32 gw, struct net_device *dev); |
222 | extern int fib_sync_down_dev(struct net_device *dev, int force); | 222 | extern int fib_sync_down_dev(struct net_device *dev, int force); |
223 | extern int fib_sync_down_addr(__be32 local); | 223 | extern int fib_sync_down_addr(struct net *net, __be32 local); |
224 | extern int fib_sync_up(struct net_device *dev); | 224 | extern int fib_sync_up(struct net_device *dev); |
225 | extern __be32 __fib_res_prefsrc(struct fib_result *res); | 225 | extern __be32 __fib_res_prefsrc(struct fib_result *res); |
226 | extern void fib_select_multipath(const struct flowi *flp, struct fib_result *res); | 226 | extern void fib_select_multipath(const struct flowi *flp, struct fib_result *res); |