ipv4: Remove tb_peers from fib_table.
No longer used. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
10b0a7732e
Коммит
391e5c22f5
|
@ -162,7 +162,6 @@ struct fib_table {
|
||||||
u32 tb_id;
|
u32 tb_id;
|
||||||
int tb_default;
|
int tb_default;
|
||||||
int tb_num_default;
|
int tb_num_default;
|
||||||
struct inet_peer_base tb_peers;
|
|
||||||
unsigned long tb_data[0];
|
unsigned long tb_data[0];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1843,8 +1843,6 @@ int fib_table_flush(struct fib_table *tb)
|
||||||
if (ll && hlist_empty(&ll->list))
|
if (ll && hlist_empty(&ll->list))
|
||||||
trie_leaf_remove(t, ll);
|
trie_leaf_remove(t, ll);
|
||||||
|
|
||||||
inetpeer_invalidate_tree(&tb->tb_peers);
|
|
||||||
|
|
||||||
pr_debug("trie_flush found=%d\n", found);
|
pr_debug("trie_flush found=%d\n", found);
|
||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
|
@ -1993,7 +1991,6 @@ struct fib_table *fib_trie_table(u32 id)
|
||||||
tb->tb_id = id;
|
tb->tb_id = id;
|
||||||
tb->tb_default = -1;
|
tb->tb_default = -1;
|
||||||
tb->tb_num_default = 0;
|
tb->tb_num_default = 0;
|
||||||
inet_peer_base_init(&tb->tb_peers);
|
|
||||||
|
|
||||||
t = (struct trie *) tb->tb_data;
|
t = (struct trie *) tb->tb_data;
|
||||||
memset(t, 0, sizeof(*t));
|
memset(t, 0, sizeof(*t));
|
||||||
|
|
Загрузка…
Ссылка в новой задаче