From: stephen hemminger Date: Tue, 31 Dec 2013 19:55:29 +0000 (-0800) Subject: sched classifier: make cgroup table local X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=de6fb288b1246a5c4e00c0cdbfe3a838a360b3f4;p=linux-beck.git sched classifier: make cgroup table local Doesn't need to be global. Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/net/sched/cls_cgroup.c b/net/sched/cls_cgroup.c index f9d212583ea2..161a03e0c002 100644 --- a/net/sched/cls_cgroup.c +++ b/net/sched/cls_cgroup.c @@ -103,7 +103,7 @@ static struct cftype ss_files[] = { { } /* terminate */ }; -struct cgroup_subsys net_cls_subsys = { +static struct cgroup_subsys net_cls_subsys = { .name = "net_cls", .css_alloc = cgrp_css_alloc, .css_online = cgrp_css_online,