diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-10 06:22:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:01:25 -0500 |
commit | 7b1a74fdbb9ec38a9780620fae25519fde4b21ee (patch) | |
tree | a8405f9a3e30cf6750d60aff16e555d4901ce57f /net/ipv4/fib_trie.c | |
parent | dbb50165b512f6c9b7aae10af73ae5b6d811f4d0 (diff) |
[NETNS]: Refactor fib initialization so it can handle multiple namespaces.
This patch makes the fib to be initialized as a subsystem for the
network namespaces. The code does not handle several namespaces yet,
so in case of a creation of a network namespace, the
creation/initialization will not occur.
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 'net/ipv4/fib_trie.c')
-rw-r--r-- | net/ipv4/fib_trie.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c index 4bbfaeedf210..92b687e6a472 100644 --- a/net/ipv4/fib_trie.c +++ b/net/ipv4/fib_trie.c | |||
@@ -1956,11 +1956,7 @@ out: | |||
1956 | 1956 | ||
1957 | /* Fix more generic FIB names for init later */ | 1957 | /* Fix more generic FIB names for init later */ |
1958 | 1958 | ||
1959 | #ifdef CONFIG_IP_MULTIPLE_TABLES | 1959 | struct fib_table *fib_hash_init(u32 id) |
1960 | struct fib_table * fib_hash_init(u32 id) | ||
1961 | #else | ||
1962 | struct fib_table * __init fib_hash_init(u32 id) | ||
1963 | #endif | ||
1964 | { | 1960 | { |
1965 | struct fib_table *tb; | 1961 | struct fib_table *tb; |
1966 | struct trie *t; | 1962 | struct trie *t; |