[NET]: Use u32 for routing table IDs

Use u32 for routing table IDs in net/ipv4 and net/decnet in preparation of
support for a larger number of routing tables. net/ipv6 already uses u32
everywhere and needs no further changes. No functional changes are made by
this patch.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Patrick McHardy
2006-08-10 23:08:33 -07:00
committed by David S. Miller
parent d924424aae
commit 2dfe55b47e
10 changed files with 31 additions and 31 deletions

View File

@ -765,9 +765,9 @@ static int fn_hash_dump(struct fib_table *tb, struct sk_buff *skb, struct netlin
}
#ifdef CONFIG_IP_MULTIPLE_TABLES
struct fib_table * fib_hash_init(int id)
struct fib_table * fib_hash_init(u32 id)
#else
struct fib_table * __init fib_hash_init(int id)
struct fib_table * __init fib_hash_init(u32 id)
#endif
{
struct fib_table *tb;