1
0
Fork 0

vfs: show_vfsstat: do not ignore errors from show_devname method

[ Upstream commit 5f8d498d43 ]

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

Cc: stable@vger.kernel.org
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
wifi-calibration
Dmitry V. Levin 2015-03-19 11:10:54 +00:00 committed by Sasha Levin
parent 03d44e3d9d
commit 452718f548
1 changed files with 2 additions and 0 deletions

View File

@ -196,6 +196,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 ");