Commit c49fa257 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

hhf: make qdisc ops static

This module shouldn't be randomly exporting symbols
Signed-off-by: default avatarStephen Hemminger <stephen@networkplumber.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent db34de93
...@@ -711,7 +711,7 @@ static int hhf_dump_stats(struct Qdisc *sch, struct gnet_dump *d) ...@@ -711,7 +711,7 @@ static int hhf_dump_stats(struct Qdisc *sch, struct gnet_dump *d)
return gnet_stats_copy_app(d, &st, sizeof(st)); return gnet_stats_copy_app(d, &st, sizeof(st));
} }
struct Qdisc_ops hhf_qdisc_ops __read_mostly = { static struct Qdisc_ops hhf_qdisc_ops __read_mostly = {
.id = "hhf", .id = "hhf",
.priv_size = sizeof(struct hhf_sched_data), .priv_size = sizeof(struct hhf_sched_data),
...@@ -727,7 +727,6 @@ struct Qdisc_ops hhf_qdisc_ops __read_mostly = { ...@@ -727,7 +727,6 @@ struct Qdisc_ops hhf_qdisc_ops __read_mostly = {
.dump_stats = hhf_dump_stats, .dump_stats = hhf_dump_stats,
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
EXPORT_SYMBOL(hhf_qdisc_ops);
static int __init hhf_module_init(void) static int __init hhf_module_init(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment