diff options
author | Tejun Heo <tj@kernel.org> | 2012-04-01 15:09:55 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2012-04-01 15:09:55 -0400 |
commit | 4baf6e33251b37f111e21289f8ee71fe4cce236e (patch) | |
tree | 7decc386a60679fd2696041810cf331c0daf1f41 /net/sched/cls_cgroup.c | |
parent | 676f7c8f84d15e94065841529016da5ab92e901b (diff) |
cgroup: convert all non-memcg controllers to the new cftype interface
Convert debug, freezer, cpuset, cpu_cgroup, cpuacct, net_prio, blkio,
net_cls and device controllers to use the new cftype based interface.
Termination entry is added to cftype arrays and populate callbacks are
replaced with cgroup_subsys->base_cftypes initializations.
This is functionally identical transformation. There shouldn't be any
visible behavior change.
memcg is rather special and will be converted separately.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Li Zefan <lizf@cn.fujitsu.com>
Cc: Paul Menage <paul@paulmenage.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Vivek Goyal <vgoyal@redhat.com>
Diffstat (limited to 'net/sched/cls_cgroup.c')
-rw-r--r-- | net/sched/cls_cgroup.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/net/sched/cls_cgroup.c b/net/sched/cls_cgroup.c index 024df8a32275..7743ea8d1d38 100644 --- a/net/sched/cls_cgroup.c +++ b/net/sched/cls_cgroup.c | |||
@@ -70,21 +70,17 @@ static struct cftype ss_files[] = { | |||
70 | .read_u64 = read_classid, | 70 | .read_u64 = read_classid, |
71 | .write_u64 = write_classid, | 71 | .write_u64 = write_classid, |
72 | }, | 72 | }, |
73 | { } /* terminate */ | ||
73 | }; | 74 | }; |
74 | 75 | ||
75 | static int cgrp_populate(struct cgroup_subsys *ss, struct cgroup *cgrp) | ||
76 | { | ||
77 | return cgroup_add_files(cgrp, ss, ss_files, ARRAY_SIZE(ss_files)); | ||
78 | } | ||
79 | |||
80 | struct cgroup_subsys net_cls_subsys = { | 76 | struct cgroup_subsys net_cls_subsys = { |
81 | .name = "net_cls", | 77 | .name = "net_cls", |
82 | .create = cgrp_create, | 78 | .create = cgrp_create, |
83 | .destroy = cgrp_destroy, | 79 | .destroy = cgrp_destroy, |
84 | .populate = cgrp_populate, | ||
85 | #ifdef CONFIG_NET_CLS_CGROUP | 80 | #ifdef CONFIG_NET_CLS_CGROUP |
86 | .subsys_id = net_cls_subsys_id, | 81 | .subsys_id = net_cls_subsys_id, |
87 | #endif | 82 | #endif |
83 | .base_cftypes = ss_files, | ||
88 | .module = THIS_MODULE, | 84 | .module = THIS_MODULE, |
89 | }; | 85 | }; |
90 | 86 | ||