2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * IPv4 FIB: lookup engine and maintenance routines.
8 * Version: $Id: fib_hash.c,v 1.13 2001/10/31 21:55:54 davem Exp $
10 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
18 #include <linux/config.h>
19 #include <asm/uaccess.h>
20 #include <asm/system.h>
21 #include <linux/bitops.h>
22 #include <linux/types.h>
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
26 #include <linux/string.h>
27 #include <linux/socket.h>
28 #include <linux/sockios.h>
29 #include <linux/errno.h>
31 #include <linux/inet.h>
32 #include <linux/netdevice.h>
33 #include <linux/if_arp.h>
34 #include <linux/proc_fs.h>
35 #include <linux/skbuff.h>
36 #include <linux/netlink.h>
37 #include <linux/init.h>
40 #include <net/protocol.h>
41 #include <net/route.h>
44 #include <net/ip_fib.h>
46 #include "fib_lookup.h"
48 static kmem_cache_t *fn_hash_kmem __read_mostly;
49 static kmem_cache_t *fn_alias_kmem __read_mostly;
52 struct hlist_node fn_hash;
53 struct list_head fn_alias;
58 struct fn_zone *fz_next; /* Next not empty zone */
59 struct hlist_head *fz_hash; /* Hash table pointer */
60 int fz_nent; /* Number of entries */
62 int fz_divisor; /* Hash divisor */
63 u32 fz_hashmask; /* (fz_divisor - 1) */
64 #define FZ_HASHMASK(fz) ((fz)->fz_hashmask)
66 int fz_order; /* Zone order */
68 #define FZ_MASK(fz) ((fz)->fz_mask)
71 /* NOTE. On fast computers evaluation of fz_hashmask and fz_mask
72 * can be cheaper than memory lookup, so that FZ_* macros are used.
76 struct fn_zone *fn_zones[33];
77 struct fn_zone *fn_zone_list;
80 static inline u32 fn_hash(u32 key, struct fn_zone *fz)
82 u32 h = ntohl(key)>>(32 - fz->fz_order);
90 static inline u32 fz_key(u32 dst, struct fn_zone *fz)
92 return dst & FZ_MASK(fz);
95 static DEFINE_RWLOCK(fib_hash_lock);
96 static unsigned int fib_hash_genid;
98 #define FZ_MAX_DIVISOR ((PAGE_SIZE<<MAX_ORDER) / sizeof(struct hlist_head))
100 static struct hlist_head *fz_hash_alloc(int divisor)
102 unsigned long size = divisor * sizeof(struct hlist_head);
104 if (size <= PAGE_SIZE) {
105 return kmalloc(size, GFP_KERNEL);
107 return (struct hlist_head *)
108 __get_free_pages(GFP_KERNEL, get_order(size));
112 /* The fib hash lock must be held when this is called. */
113 static inline void fn_rebuild_zone(struct fn_zone *fz,
114 struct hlist_head *old_ht,
119 for (i = 0; i < old_divisor; i++) {
120 struct hlist_node *node, *n;
123 hlist_for_each_entry_safe(f, node, n, &old_ht[i], fn_hash) {
124 struct hlist_head *new_head;
126 hlist_del(&f->fn_hash);
128 new_head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
129 hlist_add_head(&f->fn_hash, new_head);
134 static void fz_hash_free(struct hlist_head *hash, int divisor)
136 unsigned long size = divisor * sizeof(struct hlist_head);
138 if (size <= PAGE_SIZE)
141 free_pages((unsigned long)hash, get_order(size));
144 static void fn_rehash_zone(struct fn_zone *fz)
146 struct hlist_head *ht, *old_ht;
147 int old_divisor, new_divisor;
150 old_divisor = fz->fz_divisor;
152 switch (old_divisor) {
160 if ((old_divisor << 1) > FZ_MAX_DIVISOR) {
161 printk(KERN_CRIT "route.c: bad divisor %d!\n", old_divisor);
164 new_divisor = (old_divisor << 1);
168 new_hashmask = (new_divisor - 1);
170 #if RT_CACHE_DEBUG >= 2
171 printk("fn_rehash_zone: hash for zone %d grows from %d\n", fz->fz_order, old_divisor);
174 ht = fz_hash_alloc(new_divisor);
177 memset(ht, 0, new_divisor * sizeof(struct hlist_head));
179 write_lock_bh(&fib_hash_lock);
180 old_ht = fz->fz_hash;
182 fz->fz_hashmask = new_hashmask;
183 fz->fz_divisor = new_divisor;
184 fn_rebuild_zone(fz, old_ht, old_divisor);
186 write_unlock_bh(&fib_hash_lock);
188 fz_hash_free(old_ht, old_divisor);
192 static inline void fn_free_node(struct fib_node * f)
194 kmem_cache_free(fn_hash_kmem, f);
197 static inline void fn_free_alias(struct fib_alias *fa)
199 fib_release_info(fa->fa_info);
200 kmem_cache_free(fn_alias_kmem, fa);
203 static struct fn_zone *
204 fn_new_zone(struct fn_hash *table, int z)
207 struct fn_zone *fz = kmalloc(sizeof(struct fn_zone), GFP_KERNEL);
211 memset(fz, 0, sizeof(struct fn_zone));
217 fz->fz_hashmask = (fz->fz_divisor - 1);
218 fz->fz_hash = fz_hash_alloc(fz->fz_divisor);
223 memset(fz->fz_hash, 0, fz->fz_divisor * sizeof(struct hlist_head *));
225 fz->fz_mask = inet_make_mask(z);
227 /* Find the first not empty zone with more specific mask */
228 for (i=z+1; i<=32; i++)
229 if (table->fn_zones[i])
231 write_lock_bh(&fib_hash_lock);
233 /* No more specific masks, we are the first. */
234 fz->fz_next = table->fn_zone_list;
235 table->fn_zone_list = fz;
237 fz->fz_next = table->fn_zones[i]->fz_next;
238 table->fn_zones[i]->fz_next = fz;
240 table->fn_zones[z] = fz;
242 write_unlock_bh(&fib_hash_lock);
247 fn_hash_lookup(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
251 struct fn_hash *t = (struct fn_hash*)tb->tb_data;
253 read_lock(&fib_hash_lock);
254 for (fz = t->fn_zone_list; fz; fz = fz->fz_next) {
255 struct hlist_head *head;
256 struct hlist_node *node;
258 u32 k = fz_key(flp->fl4_dst, fz);
260 head = &fz->fz_hash[fn_hash(k, fz)];
261 hlist_for_each_entry(f, node, head, fn_hash) {
265 err = fib_semantic_match(&f->fn_alias,
267 f->fn_key, fz->fz_mask,
275 read_unlock(&fib_hash_lock);
279 static int fn_hash_last_dflt=-1;
282 fn_hash_select_default(struct fib_table *tb, const struct flowi *flp, struct fib_result *res)
285 struct hlist_node *node;
287 struct fib_info *fi = NULL;
288 struct fib_info *last_resort;
289 struct fn_hash *t = (struct fn_hash*)tb->tb_data;
290 struct fn_zone *fz = t->fn_zones[0];
299 read_lock(&fib_hash_lock);
300 hlist_for_each_entry(f, node, &fz->fz_hash[0], fn_hash) {
301 struct fib_alias *fa;
303 list_for_each_entry(fa, &f->fn_alias, fa_list) {
304 struct fib_info *next_fi = fa->fa_info;
306 if (fa->fa_scope != res->scope ||
307 fa->fa_type != RTN_UNICAST)
310 if (next_fi->fib_priority > res->fi->fib_priority)
312 if (!next_fi->fib_nh[0].nh_gw ||
313 next_fi->fib_nh[0].nh_scope != RT_SCOPE_LINK)
315 fa->fa_state |= FA_S_ACCESSED;
318 if (next_fi != res->fi)
320 } else if (!fib_detect_death(fi, order, &last_resort,
321 &last_idx, &fn_hash_last_dflt)) {
323 fib_info_put(res->fi);
325 atomic_inc(&fi->fib_clntref);
326 fn_hash_last_dflt = order;
334 if (order <= 0 || fi == NULL) {
335 fn_hash_last_dflt = -1;
339 if (!fib_detect_death(fi, order, &last_resort, &last_idx, &fn_hash_last_dflt)) {
341 fib_info_put(res->fi);
343 atomic_inc(&fi->fib_clntref);
344 fn_hash_last_dflt = order;
350 fib_info_put(res->fi);
351 res->fi = last_resort;
353 atomic_inc(&last_resort->fib_clntref);
355 fn_hash_last_dflt = last_idx;
357 read_unlock(&fib_hash_lock);
360 /* Insert node F to FZ. */
361 static inline void fib_insert_node(struct fn_zone *fz, struct fib_node *f)
363 struct hlist_head *head = &fz->fz_hash[fn_hash(f->fn_key, fz)];
365 hlist_add_head(&f->fn_hash, head);
368 /* Return the node in FZ matching KEY. */
369 static struct fib_node *fib_find_node(struct fn_zone *fz, u32 key)
371 struct hlist_head *head = &fz->fz_hash[fn_hash(key, fz)];
372 struct hlist_node *node;
375 hlist_for_each_entry(f, node, head, fn_hash) {
376 if (f->fn_key == key)
384 fn_hash_insert(struct fib_table *tb, struct rtmsg *r, struct kern_rta *rta,
385 struct nlmsghdr *n, struct netlink_skb_parms *req)
387 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
388 struct fib_node *new_f, *f;
389 struct fib_alias *fa, *new_fa;
392 int z = r->rtm_dst_len;
393 int type = r->rtm_type;
400 fz = table->fn_zones[z];
401 if (!fz && !(fz = fn_new_zone(table, z)))
407 memcpy(&dst, rta->rta_dst, 4);
408 if (dst & ~FZ_MASK(fz))
410 key = fz_key(dst, fz);
413 if ((fi = fib_create_info(r, rta, n, &err)) == NULL)
416 if (fz->fz_nent > (fz->fz_divisor<<1) &&
417 fz->fz_divisor < FZ_MAX_DIVISOR &&
418 (z==32 || (1<<z) > fz->fz_divisor))
421 f = fib_find_node(fz, key);
426 fa = fib_find_alias(&f->fn_alias, tos, fi->fib_priority);
428 /* Now fa, if non-NULL, points to the first fib alias
429 * with the same keys [prefix,tos,priority], if such key already
430 * exists or to the node before which we will insert new one.
432 * If fa is NULL, we will need to allocate a new one and
433 * insert to the head of f.
435 * If f is NULL, no fib node matched the destination key
436 * and we need to allocate a new one of those as well.
439 if (fa && fa->fa_tos == tos &&
440 fa->fa_info->fib_priority == fi->fib_priority) {
441 struct fib_alias *fa_orig;
444 if (n->nlmsg_flags & NLM_F_EXCL)
447 if (n->nlmsg_flags & NLM_F_REPLACE) {
448 struct fib_info *fi_drop;
451 write_lock_bh(&fib_hash_lock);
452 fi_drop = fa->fa_info;
455 fa->fa_scope = r->rtm_scope;
456 state = fa->fa_state;
457 fa->fa_state &= ~FA_S_ACCESSED;
459 write_unlock_bh(&fib_hash_lock);
461 fib_release_info(fi_drop);
462 if (state & FA_S_ACCESSED)
467 /* Error if we find a perfect match which
468 * uses the same scope, type, and nexthop
472 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
473 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
474 if (fa->fa_tos != tos)
476 if (fa->fa_info->fib_priority != fi->fib_priority)
478 if (fa->fa_type == type &&
479 fa->fa_scope == r->rtm_scope &&
483 if (!(n->nlmsg_flags & NLM_F_APPEND))
488 if (!(n->nlmsg_flags&NLM_F_CREATE))
492 new_fa = kmem_cache_alloc(fn_alias_kmem, SLAB_KERNEL);
498 new_f = kmem_cache_alloc(fn_hash_kmem, SLAB_KERNEL);
500 goto out_free_new_fa;
502 INIT_HLIST_NODE(&new_f->fn_hash);
503 INIT_LIST_HEAD(&new_f->fn_alias);
508 new_fa->fa_info = fi;
509 new_fa->fa_tos = tos;
510 new_fa->fa_type = type;
511 new_fa->fa_scope = r->rtm_scope;
512 new_fa->fa_state = 0;
515 * Insert new entry to the list.
518 write_lock_bh(&fib_hash_lock);
520 fib_insert_node(fz, new_f);
521 list_add_tail(&new_fa->fa_list,
522 (fa ? &fa->fa_list : &f->fn_alias));
524 write_unlock_bh(&fib_hash_lock);
530 rtmsg_fib(RTM_NEWROUTE, key, new_fa, z, tb->tb_id, n, req);
534 kmem_cache_free(fn_alias_kmem, new_fa);
536 fib_release_info(fi);
542 fn_hash_delete(struct fib_table *tb, struct rtmsg *r, struct kern_rta *rta,
543 struct nlmsghdr *n, struct netlink_skb_parms *req)
545 struct fn_hash *table = (struct fn_hash*)tb->tb_data;
547 struct fib_alias *fa, *fa_to_delete;
548 int z = r->rtm_dst_len;
555 if ((fz = table->fn_zones[z]) == NULL)
561 memcpy(&dst, rta->rta_dst, 4);
562 if (dst & ~FZ_MASK(fz))
564 key = fz_key(dst, fz);
567 f = fib_find_node(fz, key);
572 fa = fib_find_alias(&f->fn_alias, tos, 0);
577 fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list);
578 list_for_each_entry_continue(fa, &f->fn_alias, fa_list) {
579 struct fib_info *fi = fa->fa_info;
581 if (fa->fa_tos != tos)
585 fa->fa_type == r->rtm_type) &&
586 (r->rtm_scope == RT_SCOPE_NOWHERE ||
587 fa->fa_scope == r->rtm_scope) &&
589 fi->fib_protocol == r->rtm_protocol) &&
590 fib_nh_match(r, n, rta, fi) == 0) {
600 rtmsg_fib(RTM_DELROUTE, key, fa, z, tb->tb_id, n, req);
603 write_lock_bh(&fib_hash_lock);
604 list_del(&fa->fa_list);
605 if (list_empty(&f->fn_alias)) {
606 hlist_del(&f->fn_hash);
610 write_unlock_bh(&fib_hash_lock);
612 if (fa->fa_state & FA_S_ACCESSED)
625 static int fn_flush_list(struct fn_zone *fz, int idx)
627 struct hlist_head *head = &fz->fz_hash[idx];
628 struct hlist_node *node, *n;
632 hlist_for_each_entry_safe(f, node, n, head, fn_hash) {
633 struct fib_alias *fa, *fa_node;
637 list_for_each_entry_safe(fa, fa_node, &f->fn_alias, fa_list) {
638 struct fib_info *fi = fa->fa_info;
640 if (fi && (fi->fib_flags&RTNH_F_DEAD)) {
641 write_lock_bh(&fib_hash_lock);
642 list_del(&fa->fa_list);
643 if (list_empty(&f->fn_alias)) {
644 hlist_del(&f->fn_hash);
648 write_unlock_bh(&fib_hash_lock);
662 static int fn_hash_flush(struct fib_table *tb)
664 struct fn_hash *table = (struct fn_hash *) tb->tb_data;
668 for (fz = table->fn_zone_list; fz; fz = fz->fz_next) {
671 for (i = fz->fz_divisor - 1; i >= 0; i--)
672 found += fn_flush_list(fz, i);
679 fn_hash_dump_bucket(struct sk_buff *skb, struct netlink_callback *cb,
680 struct fib_table *tb,
682 struct hlist_head *head)
684 struct hlist_node *node;
690 hlist_for_each_entry(f, node, head, fn_hash) {
691 struct fib_alias *fa;
693 list_for_each_entry(fa, &f->fn_alias, fa_list) {
697 if (fib_dump_info(skb, NETLINK_CB(cb->skb).pid,
720 fn_hash_dump_zone(struct sk_buff *skb, struct netlink_callback *cb,
721 struct fib_table *tb,
727 for (h=0; h < fz->fz_divisor; h++) {
728 if (h < s_h) continue;
730 memset(&cb->args[3], 0,
731 sizeof(cb->args) - 3*sizeof(cb->args[0]));
732 if (fz->fz_hash == NULL ||
733 hlist_empty(&fz->fz_hash[h]))
735 if (fn_hash_dump_bucket(skb, cb, tb, fz, &fz->fz_hash[h])<0) {
744 static int fn_hash_dump(struct fib_table *tb, struct sk_buff *skb, struct netlink_callback *cb)
748 struct fn_hash *table = (struct fn_hash*)tb->tb_data;
751 read_lock(&fib_hash_lock);
752 for (fz = table->fn_zone_list, m=0; fz; fz = fz->fz_next, m++) {
753 if (m < s_m) continue;
755 memset(&cb->args[2], 0,
756 sizeof(cb->args) - 2*sizeof(cb->args[0]));
757 if (fn_hash_dump_zone(skb, cb, tb, fz) < 0) {
759 read_unlock(&fib_hash_lock);
763 read_unlock(&fib_hash_lock);
768 #ifdef CONFIG_IP_MULTIPLE_TABLES
769 struct fib_table * fib_hash_init(int id)
771 struct fib_table * __init fib_hash_init(int id)
774 struct fib_table *tb;
776 if (fn_hash_kmem == NULL)
777 fn_hash_kmem = kmem_cache_create("ip_fib_hash",
778 sizeof(struct fib_node),
779 0, SLAB_HWCACHE_ALIGN,
782 if (fn_alias_kmem == NULL)
783 fn_alias_kmem = kmem_cache_create("ip_fib_alias",
784 sizeof(struct fib_alias),
785 0, SLAB_HWCACHE_ALIGN,
788 tb = kmalloc(sizeof(struct fib_table) + sizeof(struct fn_hash),
794 tb->tb_lookup = fn_hash_lookup;
795 tb->tb_insert = fn_hash_insert;
796 tb->tb_delete = fn_hash_delete;
797 tb->tb_flush = fn_hash_flush;
798 tb->tb_select_default = fn_hash_select_default;
799 tb->tb_dump = fn_hash_dump;
800 memset(tb->tb_data, 0, sizeof(struct fn_hash));
804 /* ------------------------------------------------------------------------ */
805 #ifdef CONFIG_PROC_FS
807 struct fib_iter_state {
808 struct fn_zone *zone;
810 struct hlist_head *hash_head;
812 struct fib_alias *fa;
818 static struct fib_alias *fib_get_first(struct seq_file *seq)
820 struct fib_iter_state *iter = seq->private;
821 struct fn_hash *table = (struct fn_hash *) ip_fib_main_table->tb_data;
824 iter->hash_head = NULL;
828 iter->genid = fib_hash_genid;
831 for (iter->zone = table->fn_zone_list; iter->zone;
832 iter->zone = iter->zone->fz_next) {
835 if (!iter->zone->fz_nent)
838 iter->hash_head = iter->zone->fz_hash;
839 maxslot = iter->zone->fz_divisor;
841 for (iter->bucket = 0; iter->bucket < maxslot;
842 ++iter->bucket, ++iter->hash_head) {
843 struct hlist_node *node;
846 hlist_for_each_entry(fn,node,iter->hash_head,fn_hash) {
847 struct fib_alias *fa;
849 list_for_each_entry(fa,&fn->fn_alias,fa_list) {
861 static struct fib_alias *fib_get_next(struct seq_file *seq)
863 struct fib_iter_state *iter = seq->private;
865 struct fib_alias *fa;
867 /* Advance FA, if any. */
872 list_for_each_entry_continue(fa, &fn->fn_alias, fa_list) {
878 fa = iter->fa = NULL;
882 struct hlist_node *node = &fn->fn_hash;
883 hlist_for_each_entry_continue(fn, node, fn_hash) {
886 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
893 fn = iter->fn = NULL;
895 /* Advance hash chain. */
900 struct hlist_node *node;
903 maxslot = iter->zone->fz_divisor;
905 while (++iter->bucket < maxslot) {
908 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
909 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
917 iter->zone = iter->zone->fz_next;
923 iter->hash_head = iter->zone->fz_hash;
925 hlist_for_each_entry(fn, node, iter->hash_head, fn_hash) {
926 list_for_each_entry(fa, &fn->fn_alias, fa_list) {
938 static struct fib_alias *fib_get_idx(struct seq_file *seq, loff_t pos)
940 struct fib_iter_state *iter = seq->private;
941 struct fib_alias *fa;
943 if (iter->valid && pos >= iter->pos && iter->genid == fib_hash_genid) {
947 fa = fib_get_first(seq);
950 while (pos && (fa = fib_get_next(seq)))
952 return pos ? NULL : fa;
955 static void *fib_seq_start(struct seq_file *seq, loff_t *pos)
959 read_lock(&fib_hash_lock);
960 if (ip_fib_main_table)
961 v = *pos ? fib_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
965 static void *fib_seq_next(struct seq_file *seq, void *v, loff_t *pos)
968 return v == SEQ_START_TOKEN ? fib_get_first(seq) : fib_get_next(seq);
971 static void fib_seq_stop(struct seq_file *seq, void *v)
973 read_unlock(&fib_hash_lock);
976 static unsigned fib_flag_trans(int type, u32 mask, struct fib_info *fi)
978 static const unsigned type2flags[RTN_MAX + 1] = {
979 [7] = RTF_REJECT, [8] = RTF_REJECT,
981 unsigned flags = type2flags[type];
983 if (fi && fi->fib_nh->nh_gw)
984 flags |= RTF_GATEWAY;
985 if (mask == 0xFFFFFFFF)
992 * This outputs /proc/net/route.
994 * It always works in backward compatibility mode.
995 * The format of the file is not supposed to be changed.
997 static int fib_seq_show(struct seq_file *seq, void *v)
999 struct fib_iter_state *iter;
1004 struct fib_alias *fa;
1005 struct fib_info *fi;
1007 if (v == SEQ_START_TOKEN) {
1008 seq_printf(seq, "%-127s\n", "Iface\tDestination\tGateway "
1009 "\tFlags\tRefCnt\tUse\tMetric\tMask\t\tMTU"
1014 iter = seq->private;
1019 mask = FZ_MASK(iter->zone);
1020 flags = fib_flag_trans(fa->fa_type, mask, fi);
1022 snprintf(bf, sizeof(bf),
1023 "%s\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
1024 fi->fib_dev ? fi->fib_dev->name : "*", prefix,
1025 fi->fib_nh->nh_gw, flags, 0, 0, fi->fib_priority,
1026 mask, (fi->fib_advmss ? fi->fib_advmss + 40 : 0),
1030 snprintf(bf, sizeof(bf),
1031 "*\t%08X\t%08X\t%04X\t%d\t%u\t%d\t%08X\t%d\t%u\t%u",
1032 prefix, 0, flags, 0, 0, 0, mask, 0, 0, 0);
1033 seq_printf(seq, "%-127s\n", bf);
1038 static struct seq_operations fib_seq_ops = {
1039 .start = fib_seq_start,
1040 .next = fib_seq_next,
1041 .stop = fib_seq_stop,
1042 .show = fib_seq_show,
1045 static int fib_seq_open(struct inode *inode, struct file *file)
1047 struct seq_file *seq;
1049 struct fib_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
1054 rc = seq_open(file, &fib_seq_ops);
1058 seq = file->private_data;
1060 memset(s, 0, sizeof(*s));
1068 static struct file_operations fib_seq_fops = {
1069 .owner = THIS_MODULE,
1070 .open = fib_seq_open,
1072 .llseek = seq_lseek,
1073 .release = seq_release_private,
1076 int __init fib_proc_init(void)
1078 if (!proc_net_fops_create("route", S_IRUGO, &fib_seq_fops))
1083 void __init fib_proc_exit(void)
1085 proc_net_remove("route");
1087 #endif /* CONFIG_PROC_FS */