Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756704AbbKRSCY (ORCPT ); Wed, 18 Nov 2015 13:02:24 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46183 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756687AbbKRSCW (ORCPT ); Wed, 18 Nov 2015 13:02:22 -0500 Date: Wed, 18 Nov 2015 19:02:14 +0100 From: Mateusz Guzik To: "Dmitry V. Levin" Cc: Alexander Viro , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RESEND PATCH] vfs: show_vfsstat: do not ignore errors from show_devname method Message-ID: <20151118180213.GA9688@mguzik> References: <20150319113043.GC11802@altlinux.org> <20151118174248.GA13411@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20151118174248.GA13411@altlinux.org> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1549 Lines: 47 On Wed, Nov 18, 2015 at 08:42:48PM +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. > > Signed-off-by: Dmitry V. Levin > --- > fs/proc_namespace.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/fs/proc_namespace.c b/fs/proc_namespace.c > index 8ebd9a3..876459559 100644 > --- a/fs/proc_namespace.c > +++ b/fs/proc_namespace.c > @@ -197,17 +197,19 @@ 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 "); > 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; > I would suggest this should also remove now spurious initialization of err to 0 and now always-true !err check prior to calling ->show_stats. -- Mateusz Guzik -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/