diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-08-07 21:56:52 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 14:54:09 -0700 |
commit | 0298f36a579b5bd7f10f6f6d57e5929977a865a1 (patch) | |
tree | 090ba1183c598a5e7f65e89998538f3917d7f093 | |
parent | 8423a9aadfaa135fd5fd1ab8bbd4a1e76b4143c9 (diff) | |
download | linux-3.10-0298f36a579b5bd7f10f6f6d57e5929977a865a1.tar.gz linux-3.10-0298f36a579b5bd7f10f6f6d57e5929977a865a1.tar.bz2 linux-3.10-0298f36a579b5bd7f10f6f6d57e5929977a865a1.zip |
[IPV4]: Kill fib4_rules_clean().
As noted by Adrian Bunk this function is totally unused.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/ip_fib.h | 1 | ||||
-rw-r--r-- | net/ipv4/fib_rules.c | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index 14c82e611c9..adf73586bc0 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h @@ -254,7 +254,6 @@ extern struct fib_table *fib_hash_init(int id); extern int fib4_rules_dump(struct sk_buff *skb, struct netlink_callback *cb); extern void __init fib4_rules_init(void); -extern void __exit fib4_rules_cleanup(void); #ifdef CONFIG_NET_CLS_ROUTE extern u32 fib_rules_tclass(struct fib_result *res); diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c index 03d1e8a43a4..d242e5291fc 100644 --- a/net/ipv4/fib_rules.c +++ b/net/ipv4/fib_rules.c @@ -347,8 +347,3 @@ void __init fib4_rules_init(void) fib_rules_register(&fib4_rules_ops); } - -void __exit fib4_rules_cleanup(void) -{ - fib_rules_unregister(&fib4_rules_ops); -} |