Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1359150 > unrolled thread
| Started by | "Dmitry V. Levin" <ldv@altlinux.org> |
|---|---|
| First post | 2016-03-16 17:40 +0100 |
| Last post | 2016-03-16 18:00 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[RESEND v4 PATCH] vfs: show_vfsstat: do not ignore errors from show_devname method "Dmitry V. Levin" <ldv@altlinux.org> - 2016-03-16 17:40 +0100
Re: [RESEND v4 PATCH] vfs: show_vfsstat: do not ignore errors from show_devname method Al Viro <viro@ZenIV.linux.org.uk> - 2016-03-16 18:00 +0100
| From | "Dmitry V. Levin" <ldv@altlinux.org> |
|---|---|
| Date | 2016-03-16 17:40 +0100 |
| Subject | [RESEND v4 PATCH] vfs: show_vfsstat: do not ignore errors from show_devname method |
| Message-ID | <rdmEj-2Zu-41@gated-at.bofh.it> |
Date: Thu, 19 Mar 2015 11:10:54 +0000
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>
---
fs/proc_namespace.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/fs/proc_namespace.c b/fs/proc_namespace.c
index 2256e7e..3f1190d 100644
--- a/fs/proc_namespace.c
+++ b/fs/proc_namespace.c
@@ -190,26 +190,28 @@ out:
static int show_vfsstat(struct seq_file *m, struct vfsmount *mnt)
{
struct proc_mounts *p = m->private;
struct mount *r = real_mount(mnt);
struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
struct super_block *sb = mnt_path.dentry->d_sb;
int err;
/* device */
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 ");
mangle(m, r->mnt_devname);
} else
seq_puts(m, "no device");
}
/* mount point */
seq_puts(m, " mounted on ");
/* mountpoints outside of chroot jail will give SEQ_SKIP on this */
err = seq_path_root(m, &mnt_path, &p->root, " \t\n\\");
if (err)
goto out;
--
ldv
[toc] | [next] | [standalone]
| From | Al Viro <viro@ZenIV.linux.org.uk> |
|---|---|
| Date | 2016-03-16 18:00 +0100 |
| Subject | Re: [RESEND v4 PATCH] vfs: show_vfsstat: do not ignore errors from show_devname method |
| Message-ID | <rdmXE-36t-1@gated-at.bofh.it> |
| In reply to | #1359150 |
On Wed, Mar 16, 2016 at 07:31:22PM +0300, Dmitry V. Levin wrote: > Date: Thu, 19 Mar 2015 11:10:54 +0000 > > Explicitly check show_devname method return code and bail out in case > of an error. This fixes regression introduced by commit 9d4d65748a5c. Applied weeks ago, still not migrated into for-next; my apologies, thought I pushed it to Linus at some point last cycle. I'll take it to for-next in a few.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web