From: Li Zefan Date: Tue, 13 Aug 2013 02:05:59 +0000 (+0800) Subject: cpuset: fix the return value of cpuset_write_u64() X-Git-Tag: upstream/snapshot3+hdmi~4516^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a903f0865a190f8778c73df1a810ea6e25e5d7cf;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git cpuset: fix the return value of cpuset_write_u64() Writing to this file always returns -ENODEV: # echo 1 > cpuset.memory_pressure_enabled -bash: echo: write error: No such device Signed-off-by: Li Zefan Cc: # 3.9+ Signed-off-by: Tejun Heo --- diff --git a/kernel/cpuset.c b/kernel/cpuset.c index e565778..010a008 100644 --- a/kernel/cpuset.c +++ b/kernel/cpuset.c @@ -1608,11 +1608,13 @@ static int cpuset_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val) { struct cpuset *cs = cgroup_cs(cgrp); cpuset_filetype_t type = cft->private; - int retval = -ENODEV; + int retval = 0; mutex_lock(&cpuset_mutex); - if (!is_cpuset_online(cs)) + if (!is_cpuset_online(cs)) { + retval = -ENODEV; goto out_unlock; + } switch (type) { case FILE_CPU_EXCLUSIVE: