mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
cpuset: fix error handling regression in proc_cpuset_show()
4c737b41de
("cgroup: make cgroup_path() and friends behave in the
style of strlcpy()") botched the conversion of proc_cpuset_show() and
broke its error handling. It made the function return 0 on failures
and fail to handle error returns from cgroup_path_ns(). Fix it.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
ed1777de25
commit
679a5e3f12
@ -2698,12 +2698,13 @@ int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
|
|||||||
if (!buf)
|
if (!buf)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
retval = -ENAMETOOLONG;
|
|
||||||
css = task_get_css(tsk, cpuset_cgrp_id);
|
css = task_get_css(tsk, cpuset_cgrp_id);
|
||||||
retval = cgroup_path_ns(css->cgroup, buf, PATH_MAX,
|
retval = cgroup_path_ns(css->cgroup, buf, PATH_MAX,
|
||||||
current->nsproxy->cgroup_ns);
|
current->nsproxy->cgroup_ns);
|
||||||
css_put(css);
|
css_put(css);
|
||||||
if (retval >= PATH_MAX)
|
if (retval >= PATH_MAX)
|
||||||
|
retval = -ENAMETOOLONG;
|
||||||
|
if (retval < 0)
|
||||||
goto out_free;
|
goto out_free;
|
||||||
seq_puts(m, buf);
|
seq_puts(m, buf);
|
||||||
seq_putc(m, '\n');
|
seq_putc(m, '\n');
|
||||||
@ -2711,7 +2712,7 @@ int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
|
|||||||
out_free:
|
out_free:
|
||||||
kfree(buf);
|
kfree(buf);
|
||||||
out:
|
out:
|
||||||
return 0;
|
return retval;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_PROC_PID_CPUSET */
|
#endif /* CONFIG_PROC_PID_CPUSET */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user