|
@@ -1608,11 +1608,13 @@ static int cpuset_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val)
|
|
{
|
|
{
|
|
struct cpuset *cs = cgroup_cs(cgrp);
|
|
struct cpuset *cs = cgroup_cs(cgrp);
|
|
cpuset_filetype_t type = cft->private;
|
|
cpuset_filetype_t type = cft->private;
|
|
- int retval = -ENODEV;
|
|
|
|
|
|
+ int retval = 0;
|
|
|
|
|
|
mutex_lock(&cpuset_mutex);
|
|
mutex_lock(&cpuset_mutex);
|
|
- if (!is_cpuset_online(cs))
|
|
|
|
|
|
+ if (!is_cpuset_online(cs)) {
|
|
|
|
+ retval = -ENODEV;
|
|
goto out_unlock;
|
|
goto out_unlock;
|
|
|
|
+ }
|
|
|
|
|
|
switch (type) {
|
|
switch (type) {
|
|
case FILE_CPU_EXCLUSIVE:
|
|
case FILE_CPU_EXCLUSIVE:
|