diff options
author | Patrick McHardy <kaber@trash.net> | 2006-08-11 02:08:33 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 17:54:24 -0400 |
commit | 2dfe55b47e3d66ded5a84caf71e0da5710edf48b (patch) | |
tree | f3818a7016985f79856212d797921e319bff8cd2 /net/ipv4/fib_frontend.c | |
parent | d924424aaed116b362c6d0e667d912b77e655085 (diff) |
[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>
Diffstat (limited to 'net/ipv4/fib_frontend.c')
-rw-r--r-- | net/ipv4/fib_frontend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c index a83f1aa8034e..06f4b23f6f57 100644 --- a/net/ipv4/fib_frontend.c +++ b/net/ipv4/fib_frontend.c | |||
@@ -62,7 +62,7 @@ struct fib_table *ip_fib_main_table; | |||
62 | 62 | ||
63 | struct fib_table *fib_tables[RT_TABLE_MAX+1]; | 63 | struct fib_table *fib_tables[RT_TABLE_MAX+1]; |
64 | 64 | ||
65 | struct fib_table *__fib_new_table(int id) | 65 | struct fib_table *__fib_new_table(u32 id) |
66 | { | 66 | { |
67 | struct fib_table *tb; | 67 | struct fib_table *tb; |
68 | 68 | ||
@@ -82,7 +82,7 @@ static void fib_flush(void) | |||
82 | int flushed = 0; | 82 | int flushed = 0; |
83 | #ifdef CONFIG_IP_MULTIPLE_TABLES | 83 | #ifdef CONFIG_IP_MULTIPLE_TABLES |
84 | struct fib_table *tb; | 84 | struct fib_table *tb; |
85 | int id; | 85 | u32 id; |
86 | 86 | ||
87 | for (id = RT_TABLE_MAX; id>0; id--) { | 87 | for (id = RT_TABLE_MAX; id>0; id--) { |
88 | if ((tb = fib_get_table(id))==NULL) | 88 | if ((tb = fib_get_table(id))==NULL) |
@@ -333,8 +333,8 @@ int inet_rtm_newroute(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) | |||
333 | 333 | ||
334 | int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb) | 334 | int inet_dump_fib(struct sk_buff *skb, struct netlink_callback *cb) |
335 | { | 335 | { |
336 | int t; | 336 | u32 t; |
337 | int s_t; | 337 | u32 s_t; |
338 | struct fib_table *tb; | 338 | struct fib_table *tb; |
339 | 339 | ||
340 | if (NLMSG_PAYLOAD(cb->nlh, 0) >= sizeof(struct rtmsg) && | 340 | if (NLMSG_PAYLOAD(cb->nlh, 0) >= sizeof(struct rtmsg) && |