aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 6c4abfbd68e6..3f6bd1112900 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5365,7 +5365,7 @@ static struct ctl_table sd_ctl_dir[] = {
5365 .procname = "sched_domain", 5365 .procname = "sched_domain",
5366 .mode = 0555, 5366 .mode = 0555,
5367 }, 5367 },
5368 {0,}, 5368 {0, },
5369}; 5369};
5370 5370
5371static struct ctl_table sd_ctl_root[] = { 5371static struct ctl_table sd_ctl_root[] = {
@@ -5375,7 +5375,7 @@ static struct ctl_table sd_ctl_root[] = {
5375 .mode = 0555, 5375 .mode = 0555,
5376 .child = sd_ctl_dir, 5376 .child = sd_ctl_dir,
5377 }, 5377 },
5378 {0,}, 5378 {0, },
5379}; 5379};
5380 5380
5381static struct ctl_table *sd_alloc_ctl_entry(int n) 5381static struct ctl_table *sd_alloc_ctl_entry(int n)
@@ -7251,13 +7251,13 @@ static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7251} 7251}
7252 7252
7253struct cgroup_subsys cpu_cgroup_subsys = { 7253struct cgroup_subsys cpu_cgroup_subsys = {
7254 .name = "cpu", 7254 .name = "cpu",
7255 .create = cpu_cgroup_create, 7255 .create = cpu_cgroup_create,
7256 .destroy = cpu_cgroup_destroy, 7256 .destroy = cpu_cgroup_destroy,
7257 .can_attach = cpu_cgroup_can_attach, 7257 .can_attach = cpu_cgroup_can_attach,
7258 .attach = cpu_cgroup_attach, 7258 .attach = cpu_cgroup_attach,
7259 .populate = cpu_cgroup_populate, 7259 .populate = cpu_cgroup_populate,
7260 .subsys_id = cpu_cgroup_subsys_id, 7260 .subsys_id = cpu_cgroup_subsys_id,
7261 .early_init = 1, 7261 .early_init = 1,
7262}; 7262};
7263 7263