diff options
author | Rakib Mullick <rakib.mullick@gmail.com> | 2017-04-09 07:36:14 +0600 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-04-11 08:57:54 +0900 |
commit | 30e03acda5fd9c77ec9bf8b3c5def9540c6b0486 (patch) | |
tree | 7bc3f6678eec60cfa78f1b85bac4a503db21542c /kernel/cgroup | |
parent | 75fa8e5d3b1f3f7bdafcde12e973b0faaf13f1c4 (diff) | |
download | linux-30e03acda5fd9c77ec9bf8b3c5def9540c6b0486.tar.bz2 |
cpuset: Remove cpuset_update_active_cpus()'s parameter.
In cpuset_update_active_cpus(), cpu_online isn't used anymore. Remove
it.
Signed-off-by: Rakib Mullick<rakib.mullick@gmail.com>
Acked-by: Zefan Li <lizefan@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/cgroup')
-rw-r--r-- | kernel/cgroup/cpuset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c index 8b84db2d2d17..f6501f4f6040 100644 --- a/kernel/cgroup/cpuset.c +++ b/kernel/cgroup/cpuset.c @@ -2351,7 +2351,7 @@ static void cpuset_hotplug_workfn(struct work_struct *work) rebuild_sched_domains(); } -void cpuset_update_active_cpus(bool cpu_online) +void cpuset_update_active_cpus(void) { /* * We're inside cpu hotplug critical region which usually nests |