| Kernel v2.4.1 /net/decnet/dn_fib.c |
|---|
 2.4.1
 net
 decnet
 dn_fib.c
diff -u --recursive --new-file v2.4.0/linux/net/decnet/dn_fib.c linux/net/decnet/dn_fib.c
--- v2.4.0/linux/net/decnet/dn_fib.c Sat Jan 8 21:36:20 2000
+++ linux/net/decnet/dn_fib.c Mon Jan 22 13:32:10 2001
@@ -55,7 +55,7 @@
#endif /* CONFIG_RTNETLINK */
-static struct dn_fib_info *dn_fib_info_list = NULL;
+static struct dn_fib_info *dn_fib_info_list;
static rwlock_t dn_fib_info_lock = RW_LOCK_UNLOCKED;
int dn_fib_info_cnt;
@@ -641,15 +641,11 @@
return 0;
}
-
#endif /* CONFIG_PROC_FS */
-
void __exit dn_fib_cleanup(void)
{
-#ifdef CONFIG_PROC_FS
proc_net_remove("decnet_route");
-#endif
dn_fib_table_cleanup();
dn_fib_rules_cleanup();
|