aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip_fib.h
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-01-10 06:23:38 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:01:26 -0500
commit93456b6d7753def8760b423ac6b986eb9d5a4a95 (patch)
tree840a84aa88dda5a99834af4b6c9ac6cf75c90b98 /include/net/ip_fib.h
parent7b1a74fdbb9ec38a9780620fae25519fde4b21ee (diff)
[IPV4]: Unify access to the routing tables.
Replace the direct pointers to local and main tables with calls to fib_get_table() with appropriate argument. This doesn't introduce additional dereferences, but makes the access to fib tables uniform in any (CONFIG_IP_MULTIPLE_TABLES) case. 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/ip_fib.h')
-rw-r--r--include/net/ip_fib.h39
1 files changed, 28 insertions, 11 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h
index 338d3ed10c31..249af662e897 100644
--- a/include/net/ip_fib.h
+++ b/include/net/ip_fib.h
@@ -120,16 +120,22 @@ struct fib_result_nl {
120 int err; 120 int err;
121}; 121};
122 122
123extern struct hlist_head fib_table_hash[];
124
123#ifdef CONFIG_IP_ROUTE_MULTIPATH 125#ifdef CONFIG_IP_ROUTE_MULTIPATH
124 126
125#define FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel]) 127#define FIB_RES_NH(res) ((res).fi->fib_nh[(res).nh_sel])
126#define FIB_RES_RESET(res) ((res).nh_sel = 0) 128#define FIB_RES_RESET(res) ((res).nh_sel = 0)
127 129
130#define FIB_TABLE_HASHSZ 2
131
128#else /* CONFIG_IP_ROUTE_MULTIPATH */ 132#else /* CONFIG_IP_ROUTE_MULTIPATH */
129 133
130#define FIB_RES_NH(res) ((res).fi->fib_nh[0]) 134#define FIB_RES_NH(res) ((res).fi->fib_nh[0])
131#define FIB_RES_RESET(res) 135#define FIB_RES_RESET(res)
132 136
137#define FIB_TABLE_HASHSZ 256
138
133#endif /* CONFIG_IP_ROUTE_MULTIPATH */ 139#endif /* CONFIG_IP_ROUTE_MULTIPATH */
134 140
135#define FIB_RES_PREFSRC(res) ((res).fi->fib_prefsrc ? : __fib_res_prefsrc(&res)) 141#define FIB_RES_PREFSRC(res) ((res).fi->fib_prefsrc ? : __fib_res_prefsrc(&res))
@@ -156,14 +162,17 @@ struct fib_table {
156 162
157#ifndef CONFIG_IP_MULTIPLE_TABLES 163#ifndef CONFIG_IP_MULTIPLE_TABLES
158 164
159extern struct fib_table *ip_fib_local_table; 165#define TABLE_LOCAL_INDEX 0
160extern struct fib_table *ip_fib_main_table; 166#define TABLE_MAIN_INDEX 1
161 167
162static inline struct fib_table *fib_get_table(u32 id) 168static inline struct fib_table *fib_get_table(u32 id)
163{ 169{
164 if (id != RT_TABLE_LOCAL) 170 struct hlist_head *ptr;
165 return ip_fib_main_table; 171
166 return ip_fib_local_table; 172 ptr = id == RT_TABLE_LOCAL ?
173 &fib_table_hash[TABLE_LOCAL_INDEX] :
174 &fib_table_hash[TABLE_MAIN_INDEX];
175 return hlist_entry(ptr->first, struct fib_table, tb_hlist);
167} 176}
168 177
169static inline struct fib_table *fib_new_table(u32 id) 178static inline struct fib_table *fib_new_table(u32 id)
@@ -173,16 +182,24 @@ static inline struct fib_table *fib_new_table(u32 id)
173 182
174static inline int fib_lookup(const struct flowi *flp, struct fib_result *res) 183static inline int fib_lookup(const struct flowi *flp, struct fib_result *res)
175{ 184{
176 if (ip_fib_local_table->tb_lookup(ip_fib_local_table, flp, res) && 185 struct fib_table *table;
177 ip_fib_main_table->tb_lookup(ip_fib_main_table, flp, res)) 186
178 return -ENETUNREACH; 187 table = fib_get_table(RT_TABLE_LOCAL);
179 return 0; 188 if (!table->tb_lookup(table, flp, res))
189 return 0;
190
191 table = fib_get_table(RT_TABLE_MAIN);
192 if (!table->tb_lookup(table, flp, res))
193 return 0;
194 return -ENETUNREACH;
180} 195}
181 196
182static inline void fib_select_default(const struct flowi *flp, struct fib_result *res) 197static inline void fib_select_default(const struct flowi *flp,
198 struct fib_result *res)
183{ 199{
200 struct fib_table *table = fib_get_table(RT_TABLE_MAIN);
184 if (FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK) 201 if (FIB_RES_GW(*res) && FIB_RES_NH(*res).nh_scope == RT_SCOPE_LINK)
185 ip_fib_main_table->tb_select_default(ip_fib_main_table, flp, res); 202 table->tb_select_default(table, flp, res);
186} 203}
187 204
188#else /* CONFIG_IP_MULTIPLE_TABLES */ 205#else /* CONFIG_IP_MULTIPLE_TABLES */