]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
vfs: show_vfsstat: do not ignore errors from show_devname method
authorDmitry V. Levin <ldv@altlinux.org>
Thu, 19 Mar 2015 11:10:54 +0000 (11:10 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Sat, 30 Apr 2016 22:06:01 +0000 (00:06 +0200)
commit 5f8d498d4364f544fee17125787a47553db02afa upstream.

Explicitly check show_devname method return code and bail out in case
of an error.  This fixes regression introduced by commit 9d4d65748a5c.

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
[bwh: Backported to 3.16: add the 'out' label]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/proc_namespace.c

index 1a81373947f33ec4e56b5e34e24814b4c267800a..f39ff1c6a041d84a400d61f974f4ac0ace09b56c 100644 (file)
@@ -191,6 +191,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 ");
@@ -216,6 +218,7 @@ static int show_vfsstat(struct seq_file *m, struct vfsmount *mnt)
        }
 
        seq_putc(m, '\n');
+out:
        return err;
 }