From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.free-electrons.com ([62.4.15.54]) by bombadil.infradead.org with esmtp (Exim 4.85_2 #1 (Red Hat Linux)) id 1c8AU6-0002R4-NR for linux-mtd@lists.infradead.org; Sat, 19 Nov 2016 18:35:31 +0000 Date: Sat, 19 Nov 2016 19:35:09 +0100 From: Boris Brezillon To: Sudip Mukherjee Cc: Richard Weinberger , David Woodhouse , Brian Norris , Marek Vasut , Cyrille Pitchen , linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org Subject: Re: [PATCH v2] mtd: nand: nandsim: fix error check Message-ID: <20161119193509.2e3f1ef6@bbrezillon> In-Reply-To: <1479283375-4335-1-git-send-email-sudipm.mukherjee@gmail.com> References: <1479283375-4335-1-git-send-email-sudipm.mukherjee@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, 16 Nov 2016 08:02:55 +0000 Sudip Mukherjee wrote: > debugfs_create_dir() and debugfs_create_file() returns NULL on error or > a pointer on success. They do not return the error value with ERR_PTR. > So we should not check the return with IS_ERR_OR_NULL, instead we > should just check for NULL. > > Signed-off-by: Sudip Mukherjee Applied. Thanks, Boris > --- > > v2: nuked err > > drivers/mtd/nand/nandsim.c | 15 +++++---------- > 1 file changed, 5 insertions(+), 10 deletions(-) > > diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c > index c76287a..c847426 100644 > --- a/drivers/mtd/nand/nandsim.c > +++ b/drivers/mtd/nand/nandsim.c > @@ -525,24 +525,20 @@ static int nandsim_debugfs_create(struct nandsim *dev) > { > struct nandsim_debug_info *dbg = &dev->dbg; > struct dentry *dent; > - int err; > > if (!IS_ENABLED(CONFIG_DEBUG_FS)) > return 0; > > dent = debugfs_create_dir("nandsim", NULL); > - if (IS_ERR_OR_NULL(dent)) { > - int err = dent ? -ENODEV : PTR_ERR(dent); > - > - NS_ERR("cannot create \"nandsim\" debugfs directory, err %d\n", > - err); > - return err; > + if (!dent) { > + NS_ERR("cannot create \"nandsim\" debugfs directory\n"); > + return -ENODEV; > } > dbg->dfs_root = dent; > > dent = debugfs_create_file("wear_report", S_IRUSR, > dbg->dfs_root, dev, &dfs_fops); > - if (IS_ERR_OR_NULL(dent)) > + if (!dent) > goto out_remove; > dbg->dfs_wear_report = dent; > > @@ -550,8 +546,7 @@ static int nandsim_debugfs_create(struct nandsim *dev) > > out_remove: > debugfs_remove_recursive(dbg->dfs_root); > - err = dent ? PTR_ERR(dent) : -ENODEV; > - return err; > + return -ENODEV; > } > > /**