[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:
committed by
David S. Miller
parent
d924424aae
commit
2dfe55b47e
@ -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;
|
||||
|
Reference in New Issue
Block a user