aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorstephen hemminger <stephen@networkplumber.org>2013-12-26 10:09:05 -0800
committerDavid S. Miller <davem@davemloft.net>2013-12-26 13:29:35 -0500
commitc49fa257ba260410c76ab6e7f66fa1ec2dab3faa (patch)
treea26b14e97aba5746034b16c4b875dbcd731ed1e0 /net
parentrose: cleanup checkpatch errors,spaces required (diff)
downloadlinux-dev-c49fa257ba260410c76ab6e7f66fa1ec2dab3faa.tar.xz
linux-dev-c49fa257ba260410c76ab6e7f66fa1ec2dab3faa.zip
hhf: make qdisc ops static
This module shouldn't be randomly exporting symbols Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/sched/sch_hhf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/sch_hhf.c b/net/sched/sch_hhf.c
index 97aa33dbb90f..cf7f614e841b 100644
--- a/net/sched/sch_hhf.c
+++ b/net/sched/sch_hhf.c
@@ -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));
}
-struct Qdisc_ops hhf_qdisc_ops __read_mostly = {
+static struct Qdisc_ops hhf_qdisc_ops __read_mostly = {
.id = "hhf",
.priv_size = sizeof(struct hhf_sched_data),
@@ -727,7 +727,6 @@ struct Qdisc_ops hhf_qdisc_ops __read_mostly = {
.dump_stats = hhf_dump_stats,
.owner = THIS_MODULE,
};
-EXPORT_SYMBOL(hhf_qdisc_ops);
static int __init hhf_module_init(void)
{