[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
@@ -1148,7 +1148,7 @@ fn_trie_insert(struct fib_table *tb, struct rtmsg *r, struct kern_rta *rta,
|
||||
|
||||
key = ntohl(key);
|
||||
|
||||
pr_debug("Insert table=%d %08x/%d\n", tb->tb_id, key, plen);
|
||||
pr_debug("Insert table=%u %08x/%d\n", tb->tb_id, key, plen);
|
||||
|
||||
mask = ntohl(inet_make_mask(plen));
|
||||
|
||||
@@ -1943,9 +1943,9 @@ out:
|
||||
/* Fix more generic FIB names for init later */
|
||||
|
||||
#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