diff options
-rw-r--r-- | net/sched/police.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/net/sched/police.c b/net/sched/police.c index a8345163cc60..fa877f8f652c 100644 --- a/net/sched/police.c +++ b/net/sched/police.c | |||
@@ -407,7 +407,7 @@ police_cleanup_module(void) | |||
407 | module_init(police_init_module); | 407 | module_init(police_init_module); |
408 | module_exit(police_cleanup_module); | 408 | module_exit(police_cleanup_module); |
409 | 409 | ||
410 | #endif | 410 | #else /* CONFIG_NET_CLS_ACT */ |
411 | 411 | ||
412 | struct tcf_police * tcf_police_locate(struct rtattr *rta, struct rtattr *est) | 412 | struct tcf_police * tcf_police_locate(struct rtattr *rta, struct rtattr *est) |
413 | { | 413 | { |
@@ -544,6 +544,7 @@ int tcf_police(struct sk_buff *skb, struct tcf_police *p) | |||
544 | spin_unlock(&p->lock); | 544 | spin_unlock(&p->lock); |
545 | return p->action; | 545 | return p->action; |
546 | } | 546 | } |
547 | EXPORT_SYMBOL(tcf_police); | ||
547 | 548 | ||
548 | int tcf_police_dump(struct sk_buff *skb, struct tcf_police *p) | 549 | int tcf_police_dump(struct sk_buff *skb, struct tcf_police *p) |
549 | { | 550 | { |
@@ -600,13 +601,4 @@ errout: | |||
600 | return -1; | 601 | return -1; |
601 | } | 602 | } |
602 | 603 | ||
603 | 604 | #endif /* CONFIG_NET_CLS_ACT */ | |
604 | EXPORT_SYMBOL(tcf_police); | ||
605 | EXPORT_SYMBOL(tcf_police_destroy); | ||
606 | EXPORT_SYMBOL(tcf_police_dump); | ||
607 | EXPORT_SYMBOL(tcf_police_dump_stats); | ||
608 | EXPORT_SYMBOL(tcf_police_hash); | ||
609 | EXPORT_SYMBOL(tcf_police_ht); | ||
610 | EXPORT_SYMBOL(tcf_police_locate); | ||
611 | EXPORT_SYMBOL(tcf_police_lookup); | ||
612 | EXPORT_SYMBOL(tcf_police_new_index); | ||