diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-10-04 20:14:17 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-05 00:47:39 -0700 |
commit | 1df9916e46451533463f227e6be57cc2cfca4c5f (patch) | |
tree | e37eeef3f4a1b4e0fc760d5f8075b34d19e2e471 /net/core | |
parent | 6a31d2a97c04ffe9b161ec0177a2296366ff9249 (diff) | |
download | linux-1df9916e46451533463f227e6be57cc2cfca4c5f.tar.gz linux-1df9916e46451533463f227e6be57cc2cfca4c5f.tar.bz2 linux-1df9916e46451533463f227e6be57cc2cfca4c5f.zip |
fib: fib_rules_cleanup can be static
fib_rules_cleanup_ups is only defined and used in one place.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/fib_rules.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/fib_rules.c b/net/core/fib_rules.c index 332c2e31d048..cfb7d25c172d 100644 --- a/net/core/fib_rules.c +++ b/net/core/fib_rules.c @@ -144,7 +144,7 @@ fib_rules_register(const struct fib_rules_ops *tmpl, struct net *net) } EXPORT_SYMBOL_GPL(fib_rules_register); -void fib_rules_cleanup_ops(struct fib_rules_ops *ops) +static void fib_rules_cleanup_ops(struct fib_rules_ops *ops) { struct fib_rule *rule, *tmp; @@ -153,7 +153,6 @@ void fib_rules_cleanup_ops(struct fib_rules_ops *ops) fib_rule_put(rule); } } -EXPORT_SYMBOL_GPL(fib_rules_cleanup_ops); static void fib_rules_put_rcu(struct rcu_head *head) { |