2 * DECnet An implementation of the DECnet protocol suite for the LINUX
3 * operating system. DECnet is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * DECnet Routing Forwarding Information Base (Routing Tables)
8 * Author: Steve Whitehouse <SteveW@ACM.org>
9 * Mostly copied from the IPv4 routing code
15 #include <linux/string.h>
16 #include <linux/net.h>
17 #include <linux/socket.h>
18 #include <linux/sockios.h>
19 #include <linux/init.h>
20 #include <linux/skbuff.h>
21 #include <linux/netlink.h>
22 #include <linux/rtnetlink.h>
23 #include <linux/proc_fs.h>
24 #include <linux/netdevice.h>
25 #include <linux/timer.h>
26 #include <linux/spinlock.h>
27 #include <asm/atomic.h>
28 #include <asm/uaccess.h>
29 #include <linux/route.h> /* RTF_xxx */
30 #include <net/neighbour.h>
33 #include <net/fib_rules.h>
35 #include <net/dn_route.h>
36 #include <net/dn_fib.h>
37 #include <net/dn_neigh.h>
38 #include <net/dn_dev.h>
42 struct dn_zone
*dz_next
;
43 struct dn_fib_node
**dz_hash
;
47 #define DZ_HASHMASK(dz) ((dz)->dz_hashmask)
50 #define DZ_MASK(dz) ((dz)->dz_mask)
55 struct dn_zone
*dh_zones
[17];
56 struct dn_zone
*dh_zone_list
;
59 #define dz_key_0(key) ((key).datum = 0)
60 #define dz_prefix(key,dz) ((key).datum)
62 #define for_nexthops(fi) { int nhsel; const struct dn_fib_nh *nh;\
63 for(nhsel = 0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
65 #define endfor_nexthops(fi) }
67 #define DN_MAX_DIVISOR 1024
69 #define DN_S_ACCESSED 2
71 #define DN_FIB_SCAN(f, fp) \
72 for( ; ((f) = *(fp)) != NULL; (fp) = &(f)->fn_next)
74 #define DN_FIB_SCAN_KEY(f, fp, key) \
75 for( ; ((f) = *(fp)) != NULL && dn_key_eq((f)->fn_key, (key)); (fp) = &(f)->fn_next)
77 #define RT_TABLE_MIN 1
78 #define DN_FIB_TABLE_HASHSZ 256
79 static struct hlist_head dn_fib_table_hash
[DN_FIB_TABLE_HASHSZ
];
80 static DEFINE_RWLOCK(dn_fib_tables_lock
);
82 static kmem_cache_t
*dn_hash_kmem __read_mostly
;
83 static int dn_fib_hash_zombies
;
85 static inline dn_fib_idx_t
dn_hash(dn_fib_key_t key
, struct dn_zone
*dz
)
87 u16 h
= dn_ntohs(key
.datum
)>>(16 - dz
->dz_order
);
91 return *(dn_fib_idx_t
*)&h
;
94 static inline dn_fib_key_t
dz_key(__le16 dst
, struct dn_zone
*dz
)
97 k
.datum
= dst
& DZ_MASK(dz
);
101 static inline struct dn_fib_node
**dn_chain_p(dn_fib_key_t key
, struct dn_zone
*dz
)
103 return &dz
->dz_hash
[dn_hash(key
, dz
).datum
];
106 static inline struct dn_fib_node
*dz_chain(dn_fib_key_t key
, struct dn_zone
*dz
)
108 return dz
->dz_hash
[dn_hash(key
, dz
).datum
];
111 static inline int dn_key_eq(dn_fib_key_t a
, dn_fib_key_t b
)
113 return a
.datum
== b
.datum
;
116 static inline int dn_key_leq(dn_fib_key_t a
, dn_fib_key_t b
)
118 return a
.datum
<= b
.datum
;
121 static inline void dn_rebuild_zone(struct dn_zone
*dz
,
122 struct dn_fib_node
**old_ht
,
126 struct dn_fib_node
*f
, **fp
, *next
;
128 for(i
= 0; i
< old_divisor
; i
++) {
129 for(f
= old_ht
[i
]; f
; f
= f
->fn_next
) {
131 for(fp
= dn_chain_p(f
->fn_key
, dz
);
132 *fp
&& dn_key_leq((*fp
)->fn_key
, f
->fn_key
);
133 fp
= &(*fp
)->fn_next
)
141 static void dn_rehash_zone(struct dn_zone
*dz
)
143 struct dn_fib_node
**ht
, **old_ht
;
144 int old_divisor
, new_divisor
;
147 old_divisor
= dz
->dz_divisor
;
149 switch(old_divisor
) {
155 printk(KERN_DEBUG
"DECnet: dn_rehash_zone: BUG! %d\n", old_divisor
);
158 new_hashmask
= 0x3FF;
162 ht
= kcalloc(new_divisor
, sizeof(struct dn_fib_node
*), GFP_KERNEL
);
166 write_lock_bh(&dn_fib_tables_lock
);
167 old_ht
= dz
->dz_hash
;
169 dz
->dz_hashmask
= new_hashmask
;
170 dz
->dz_divisor
= new_divisor
;
171 dn_rebuild_zone(dz
, old_ht
, old_divisor
);
172 write_unlock_bh(&dn_fib_tables_lock
);
176 static void dn_free_node(struct dn_fib_node
*f
)
178 dn_fib_release_info(DN_FIB_INFO(f
));
179 kmem_cache_free(dn_hash_kmem
, f
);
183 static struct dn_zone
*dn_new_zone(struct dn_hash
*table
, int z
)
186 struct dn_zone
*dz
= kzalloc(sizeof(struct dn_zone
), GFP_KERNEL
);
192 dz
->dz_hashmask
= 0x0F;
198 dz
->dz_hash
= kcalloc(dz
->dz_divisor
, sizeof(struct dn_fib_node
*), GFP_KERNEL
);
205 dz
->dz_mask
= dnet_make_mask(z
);
207 for(i
= z
+ 1; i
<= 16; i
++)
208 if (table
->dh_zones
[i
])
211 write_lock_bh(&dn_fib_tables_lock
);
213 dz
->dz_next
= table
->dh_zone_list
;
214 table
->dh_zone_list
= dz
;
216 dz
->dz_next
= table
->dh_zones
[i
]->dz_next
;
217 table
->dh_zones
[i
]->dz_next
= dz
;
219 table
->dh_zones
[z
] = dz
;
220 write_unlock_bh(&dn_fib_tables_lock
);
225 static int dn_fib_nh_match(struct rtmsg
*r
, struct nlmsghdr
*nlh
, struct dn_kern_rta
*rta
, struct dn_fib_info
*fi
)
227 struct rtnexthop
*nhp
;
230 if (rta
->rta_priority
&& *rta
->rta_priority
!= fi
->fib_priority
)
233 if (rta
->rta_oif
|| rta
->rta_gw
) {
234 if ((!rta
->rta_oif
|| *rta
->rta_oif
== fi
->fib_nh
->nh_oif
) &&
235 (!rta
->rta_gw
|| memcmp(rta
->rta_gw
, &fi
->fib_nh
->nh_gw
, 2) == 0))
240 if (rta
->rta_mp
== NULL
)
243 nhp
= RTA_DATA(rta
->rta_mp
);
244 nhlen
= RTA_PAYLOAD(rta
->rta_mp
);
247 int attrlen
= nhlen
- sizeof(struct rtnexthop
);
250 if (attrlen
< 0 || (nhlen
-= nhp
->rtnh_len
) < 0)
252 if (nhp
->rtnh_ifindex
&& nhp
->rtnh_ifindex
!= nh
->nh_oif
)
255 gw
= dn_fib_get_attr16(RTNH_DATA(nhp
), attrlen
, RTA_GATEWAY
);
257 if (gw
&& gw
!= nh
->nh_gw
)
260 nhp
= RTNH_NEXT(nhp
);
261 } endfor_nexthops(fi
);
266 static int dn_fib_dump_info(struct sk_buff
*skb
, u32 pid
, u32 seq
, int event
,
267 u32 tb_id
, u8 type
, u8 scope
, void *dst
, int dst_len
,
268 struct dn_fib_info
*fi
, unsigned int flags
)
271 struct nlmsghdr
*nlh
;
272 unsigned char *b
= skb
->tail
;
274 nlh
= NLMSG_NEW(skb
, pid
, seq
, event
, sizeof(*rtm
), flags
);
275 rtm
= NLMSG_DATA(nlh
);
276 rtm
->rtm_family
= AF_DECnet
;
277 rtm
->rtm_dst_len
= dst_len
;
278 rtm
->rtm_src_len
= 0;
280 rtm
->rtm_table
= tb_id
;
281 RTA_PUT_U32(skb
, RTA_TABLE
, tb_id
);
282 rtm
->rtm_flags
= fi
->fib_flags
;
283 rtm
->rtm_scope
= scope
;
284 rtm
->rtm_type
= type
;
285 if (rtm
->rtm_dst_len
)
286 RTA_PUT(skb
, RTA_DST
, 2, dst
);
287 rtm
->rtm_protocol
= fi
->fib_protocol
;
288 if (fi
->fib_priority
)
289 RTA_PUT(skb
, RTA_PRIORITY
, 4, &fi
->fib_priority
);
290 if (rtnetlink_put_metrics(skb
, fi
->fib_metrics
) < 0)
292 if (fi
->fib_nhs
== 1) {
293 if (fi
->fib_nh
->nh_gw
)
294 RTA_PUT(skb
, RTA_GATEWAY
, 2, &fi
->fib_nh
->nh_gw
);
295 if (fi
->fib_nh
->nh_oif
)
296 RTA_PUT(skb
, RTA_OIF
, sizeof(int), &fi
->fib_nh
->nh_oif
);
298 if (fi
->fib_nhs
> 1) {
299 struct rtnexthop
*nhp
;
300 struct rtattr
*mp_head
;
301 if (skb_tailroom(skb
) <= RTA_SPACE(0))
303 mp_head
= (struct rtattr
*)skb_put(skb
, RTA_SPACE(0));
306 if (skb_tailroom(skb
) < RTA_ALIGN(RTA_ALIGN(sizeof(*nhp
)) + 4))
308 nhp
= (struct rtnexthop
*)skb_put(skb
, RTA_ALIGN(sizeof(*nhp
)));
309 nhp
->rtnh_flags
= nh
->nh_flags
& 0xFF;
310 nhp
->rtnh_hops
= nh
->nh_weight
- 1;
311 nhp
->rtnh_ifindex
= nh
->nh_oif
;
313 RTA_PUT(skb
, RTA_GATEWAY
, 2, &nh
->nh_gw
);
314 nhp
->rtnh_len
= skb
->tail
- (unsigned char *)nhp
;
315 } endfor_nexthops(fi
);
316 mp_head
->rta_type
= RTA_MULTIPATH
;
317 mp_head
->rta_len
= skb
->tail
- (u8
*)mp_head
;
320 nlh
->nlmsg_len
= skb
->tail
- b
;
326 skb_trim(skb
, b
- skb
->data
);
331 static void dn_rtmsg_fib(int event
, struct dn_fib_node
*f
, int z
, u32 tb_id
,
332 struct nlmsghdr
*nlh
, struct netlink_skb_parms
*req
)
335 u32 pid
= req
? req
->pid
: 0;
338 skb
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
342 err
= dn_fib_dump_info(skb
, pid
, nlh
->nlmsg_seq
, event
, tb_id
,
343 f
->fn_type
, f
->fn_scope
, &f
->fn_key
, z
,
350 err
= rtnl_notify(skb
, pid
, RTNLGRP_DECnet_ROUTE
, nlh
, GFP_KERNEL
);
353 rtnl_set_sk_err(RTNLGRP_DECnet_ROUTE
, err
);
356 static __inline__
int dn_hash_dump_bucket(struct sk_buff
*skb
,
357 struct netlink_callback
*cb
,
358 struct dn_fib_table
*tb
,
360 struct dn_fib_node
*f
)
365 for(i
= 0; f
; i
++, f
= f
->fn_next
) {
368 if (f
->fn_state
& DN_S_ZOMBIE
)
370 if (dn_fib_dump_info(skb
, NETLINK_CB(cb
->skb
).pid
,
374 (f
->fn_state
& DN_S_ZOMBIE
) ? 0 : f
->fn_type
,
375 f
->fn_scope
, &f
->fn_key
, dz
->dz_order
,
376 f
->fn_info
, NLM_F_MULTI
) < 0) {
385 static __inline__
int dn_hash_dump_zone(struct sk_buff
*skb
,
386 struct netlink_callback
*cb
,
387 struct dn_fib_table
*tb
,
393 for(h
= 0; h
< dz
->dz_divisor
; h
++) {
397 memset(&cb
->args
[4], 0, sizeof(cb
->args
) - 4*sizeof(cb
->args
[0]));
398 if (dz
->dz_hash
== NULL
|| dz
->dz_hash
[h
] == NULL
)
400 if (dn_hash_dump_bucket(skb
, cb
, tb
, dz
, dz
->dz_hash
[h
]) < 0) {
409 static int dn_fib_table_dump(struct dn_fib_table
*tb
, struct sk_buff
*skb
,
410 struct netlink_callback
*cb
)
414 struct dn_hash
*table
= (struct dn_hash
*)tb
->data
;
417 read_lock(&dn_fib_tables_lock
);
418 for(dz
= table
->dh_zone_list
, m
= 0; dz
; dz
= dz
->dz_next
, m
++) {
422 memset(&cb
->args
[3], 0, sizeof(cb
->args
) - 3*sizeof(cb
->args
[0]));
424 if (dn_hash_dump_zone(skb
, cb
, tb
, dz
) < 0) {
426 read_unlock(&dn_fib_tables_lock
);
430 read_unlock(&dn_fib_tables_lock
);
436 int dn_fib_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
439 unsigned int e
= 0, s_e
;
440 struct dn_fib_table
*tb
;
441 struct hlist_node
*node
;
444 if (NLMSG_PAYLOAD(cb
->nlh
, 0) >= sizeof(struct rtmsg
) &&
445 ((struct rtmsg
*)NLMSG_DATA(cb
->nlh
))->rtm_flags
&RTM_F_CLONED
)
446 return dn_cache_dump(skb
, cb
);
451 for (h
= s_h
; h
< DN_FIB_TABLE_HASHSZ
; h
++, s_h
= 0) {
453 hlist_for_each_entry(tb
, node
, &dn_fib_table_hash
[h
], hlist
) {
457 memset(&cb
->args
[2], 0, sizeof(cb
->args
) -
458 2 * sizeof(cb
->args
[0]));
459 if (tb
->dump(tb
, skb
, cb
) < 0)
473 static int dn_fib_table_insert(struct dn_fib_table
*tb
, struct rtmsg
*r
, struct dn_kern_rta
*rta
, struct nlmsghdr
*n
, struct netlink_skb_parms
*req
)
475 struct dn_hash
*table
= (struct dn_hash
*)tb
->data
;
476 struct dn_fib_node
*new_f
, *f
, **fp
, **del_fp
;
478 struct dn_fib_info
*fi
;
479 int z
= r
->rtm_dst_len
;
480 int type
= r
->rtm_type
;
487 dz
= table
->dh_zones
[z
];
488 if (!dz
&& !(dz
= dn_new_zone(table
, z
)))
494 memcpy(&dst
, rta
->rta_dst
, 2);
495 if (dst
& ~DZ_MASK(dz
))
497 key
= dz_key(dst
, dz
);
500 if ((fi
= dn_fib_create_info(r
, rta
, n
, &err
)) == NULL
)
503 if (dz
->dz_nent
> (dz
->dz_divisor
<< 2) &&
504 dz
->dz_divisor
> DN_MAX_DIVISOR
&&
505 (z
==16 || (1<<z
) > dz
->dz_divisor
))
508 fp
= dn_chain_p(key
, dz
);
511 if (dn_key_leq(key
, f
->fn_key
))
517 if (f
&& (f
->fn_state
& DN_S_ZOMBIE
) &&
518 dn_key_eq(f
->fn_key
, key
)) {
525 DN_FIB_SCAN_KEY(f
, fp
, key
) {
526 if (fi
->fib_priority
<= DN_FIB_INFO(f
)->fib_priority
)
530 if (f
&& dn_key_eq(f
->fn_key
, key
) &&
531 fi
->fib_priority
== DN_FIB_INFO(f
)->fib_priority
) {
532 struct dn_fib_node
**ins_fp
;
535 if (n
->nlmsg_flags
& NLM_F_EXCL
)
538 if (n
->nlmsg_flags
& NLM_F_REPLACE
) {
548 DN_FIB_SCAN_KEY(f
, fp
, key
) {
549 if (fi
->fib_priority
!= DN_FIB_INFO(f
)->fib_priority
)
551 if (f
->fn_type
== type
&& f
->fn_scope
== r
->rtm_scope
552 && DN_FIB_INFO(f
) == fi
)
556 if (!(n
->nlmsg_flags
& NLM_F_APPEND
)) {
564 if (!(n
->nlmsg_flags
& NLM_F_CREATE
))
569 new_f
= kmem_cache_alloc(dn_hash_kmem
, SLAB_KERNEL
);
573 memset(new_f
, 0, sizeof(struct dn_fib_node
));
576 new_f
->fn_type
= type
;
577 new_f
->fn_scope
= r
->rtm_scope
;
578 DN_FIB_INFO(new_f
) = fi
;
581 write_lock_bh(&dn_fib_tables_lock
);
583 write_unlock_bh(&dn_fib_tables_lock
);
588 write_lock_bh(&dn_fib_tables_lock
);
589 *del_fp
= f
->fn_next
;
590 write_unlock_bh(&dn_fib_tables_lock
);
592 if (!(f
->fn_state
& DN_S_ZOMBIE
))
593 dn_rtmsg_fib(RTM_DELROUTE
, f
, z
, tb
->n
, n
, req
);
594 if (f
->fn_state
& DN_S_ACCESSED
)
595 dn_rt_cache_flush(-1);
599 dn_rt_cache_flush(-1);
602 dn_rtmsg_fib(RTM_NEWROUTE
, new_f
, z
, tb
->n
, n
, req
);
606 dn_fib_release_info(fi
);
611 static int dn_fib_table_delete(struct dn_fib_table
*tb
, struct rtmsg
*r
, struct dn_kern_rta
*rta
, struct nlmsghdr
*n
, struct netlink_skb_parms
*req
)
613 struct dn_hash
*table
= (struct dn_hash
*)tb
->data
;
614 struct dn_fib_node
**fp
, **del_fp
, *f
;
615 int z
= r
->rtm_dst_len
;
624 if ((dz
= table
->dh_zones
[z
]) == NULL
)
630 memcpy(&dst
, rta
->rta_dst
, 2);
631 if (dst
& ~DZ_MASK(dz
))
633 key
= dz_key(dst
, dz
);
636 fp
= dn_chain_p(key
, dz
);
639 if (dn_key_eq(f
->fn_key
, key
))
641 if (dn_key_leq(key
, f
->fn_key
))
647 DN_FIB_SCAN_KEY(f
, fp
, key
) {
648 struct dn_fib_info
*fi
= DN_FIB_INFO(f
);
650 if (f
->fn_state
& DN_S_ZOMBIE
)
655 if (del_fp
== NULL
&&
656 (!r
->rtm_type
|| f
->fn_type
== r
->rtm_type
) &&
657 (r
->rtm_scope
== RT_SCOPE_NOWHERE
|| f
->fn_scope
== r
->rtm_scope
) &&
659 fi
->fib_protocol
== r
->rtm_protocol
) &&
660 dn_fib_nh_match(r
, n
, rta
, fi
) == 0)
666 dn_rtmsg_fib(RTM_DELROUTE
, f
, z
, tb
->n
, n
, req
);
669 write_lock_bh(&dn_fib_tables_lock
);
670 *del_fp
= f
->fn_next
;
671 write_unlock_bh(&dn_fib_tables_lock
);
673 if (f
->fn_state
& DN_S_ACCESSED
)
674 dn_rt_cache_flush(-1);
678 f
->fn_state
|= DN_S_ZOMBIE
;
679 if (f
->fn_state
& DN_S_ACCESSED
) {
680 f
->fn_state
&= ~DN_S_ACCESSED
;
681 dn_rt_cache_flush(-1);
683 if (++dn_fib_hash_zombies
> 128)
693 static inline int dn_flush_list(struct dn_fib_node
**fp
, int z
, struct dn_hash
*table
)
696 struct dn_fib_node
*f
;
698 while((f
= *fp
) != NULL
) {
699 struct dn_fib_info
*fi
= DN_FIB_INFO(f
);
701 if (fi
&& ((f
->fn_state
& DN_S_ZOMBIE
) || (fi
->fib_flags
& RTNH_F_DEAD
))) {
702 write_lock_bh(&dn_fib_tables_lock
);
704 write_unlock_bh(&dn_fib_tables_lock
);
716 static int dn_fib_table_flush(struct dn_fib_table
*tb
)
718 struct dn_hash
*table
= (struct dn_hash
*)tb
->data
;
722 dn_fib_hash_zombies
= 0;
723 for(dz
= table
->dh_zone_list
; dz
; dz
= dz
->dz_next
) {
726 for(i
= dz
->dz_divisor
-1; i
>= 0; i
--)
727 tmp
+= dn_flush_list(&dz
->dz_hash
[i
], dz
->dz_order
, table
);
735 static int dn_fib_table_lookup(struct dn_fib_table
*tb
, const struct flowi
*flp
, struct dn_fib_res
*res
)
739 struct dn_hash
*t
= (struct dn_hash
*)tb
->data
;
741 read_lock(&dn_fib_tables_lock
);
742 for(dz
= t
->dh_zone_list
; dz
; dz
= dz
->dz_next
) {
743 struct dn_fib_node
*f
;
744 dn_fib_key_t k
= dz_key(flp
->fld_dst
, dz
);
746 for(f
= dz_chain(k
, dz
); f
; f
= f
->fn_next
) {
747 if (!dn_key_eq(k
, f
->fn_key
)) {
748 if (dn_key_leq(k
, f
->fn_key
))
754 f
->fn_state
|= DN_S_ACCESSED
;
756 if (f
->fn_state
&DN_S_ZOMBIE
)
759 if (f
->fn_scope
< flp
->fld_scope
)
762 err
= dn_fib_semantic_match(f
->fn_type
, DN_FIB_INFO(f
), flp
, res
);
765 res
->type
= f
->fn_type
;
766 res
->scope
= f
->fn_scope
;
767 res
->prefixlen
= dz
->dz_order
;
776 read_unlock(&dn_fib_tables_lock
);
781 struct dn_fib_table
*dn_fib_get_table(u32 n
, int create
)
783 struct dn_fib_table
*t
;
784 struct hlist_node
*node
;
787 if (n
< RT_TABLE_MIN
)
790 if (n
> RT_TABLE_MAX
)
793 h
= n
& (DN_FIB_TABLE_HASHSZ
- 1);
795 hlist_for_each_entry_rcu(t
, node
, &dn_fib_table_hash
[h
], hlist
) {
806 if (in_interrupt() && net_ratelimit()) {
807 printk(KERN_DEBUG
"DECnet: BUG! Attempt to create routing table from interrupt\n");
810 if ((t
= kmalloc(sizeof(struct dn_fib_table
) + sizeof(struct dn_hash
), GFP_KERNEL
)) == NULL
)
813 memset(t
, 0, sizeof(struct dn_fib_table
));
816 t
->insert
= dn_fib_table_insert
;
817 t
->delete = dn_fib_table_delete
;
818 t
->lookup
= dn_fib_table_lookup
;
819 t
->flush
= dn_fib_table_flush
;
820 t
->dump
= dn_fib_table_dump
;
821 memset(t
->data
, 0, sizeof(struct dn_hash
));
822 hlist_add_head_rcu(&t
->hlist
, &dn_fib_table_hash
[h
]);
827 struct dn_fib_table
*dn_fib_empty_table(void)
831 for(id
= RT_TABLE_MIN
; id
<= RT_TABLE_MAX
; id
++)
832 if (dn_fib_get_table(id
, 0) == NULL
)
833 return dn_fib_get_table(id
, 1);
837 void dn_fib_flush(void)
840 struct dn_fib_table
*tb
;
841 struct hlist_node
*node
;
844 for (h
= 0; h
< DN_FIB_TABLE_HASHSZ
; h
++) {
845 hlist_for_each_entry(tb
, node
, &dn_fib_table_hash
[h
], hlist
)
846 flushed
+= tb
->flush(tb
);
850 dn_rt_cache_flush(-1);
853 void __init
dn_fib_table_init(void)
855 dn_hash_kmem
= kmem_cache_create("dn_fib_info_cache",
856 sizeof(struct dn_fib_info
),
857 0, SLAB_HWCACHE_ALIGN
,
861 void __exit
dn_fib_table_cleanup(void)
863 struct dn_fib_table
*t
;
864 struct hlist_node
*node
, *next
;
867 write_lock(&dn_fib_tables_lock
);
868 for (h
= 0; h
< DN_FIB_TABLE_HASHSZ
; h
++) {
869 hlist_for_each_entry_safe(t
, node
, next
, &dn_fib_table_hash
[h
],
871 hlist_del(&t
->hlist
);
875 write_unlock(&dn_fib_tables_lock
);