projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5b3a80
)
vfs: show_vfsstat: do not ignore errors from show_devname method
author
Dmitry V. Levin
<ldv@altlinux.org>
Thu, 19 Mar 2015 11:10:54 +0000
(11:10 +0000)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 16 Mar 2016 17:09:08 +0000
(13:09 -0400)
Explicitly check show_devname method return code and bail out in case
of an error. This fixes regression introduced by commit
9d4d65748a5c
.
Cc: stable@vger.kernel.org
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/proc_namespace.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/proc_namespace.c
b/fs/proc_namespace.c
index 2256e7e23e678a11d2ab3fbaf1226a508f0ef1c8..3f1190d18991539087ddef41b922b458d16914b7 100644
(file)
--- a/
fs/proc_namespace.c
+++ b/
fs/proc_namespace.c
@@
-199,6
+199,8
@@
static int show_vfsstat(struct seq_file *m, struct vfsmount *mnt)
if (sb->s_op->show_devname) {
seq_puts(m, "device ");
err = sb->s_op->show_devname(m, mnt_path.dentry);
+ if (err)
+ goto out;
} else {
if (r->mnt_devname) {
seq_puts(m, "device ");