Lines Matching refs:old
132 static void fib_replace_table(struct net *net, struct fib_table *old,
148 /* replace the old table in the hlist */
149 hlist_replace_rcu(&old->tb_hlist, &new->tb_hlist);
154 struct fib_table *old, *new, *main_table;
157 old = fib_get_table(net, RT_TABLE_LOCAL);
158 if (!old)
161 new = fib_trie_unmerge(old);
166 if (new == old)
170 fib_replace_table(net, old, new);
171 fib_free_table(old);
1172 /* delete the old */