Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751897AbbKIWEo (ORCPT ); Mon, 9 Nov 2015 17:04:44 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:46165 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751512AbbKIWEn (ORCPT ); Mon, 9 Nov 2015 17:04:43 -0500 X-IronPort-AV: E=Sophos;i="5.20,267,1444687200"; d="scan'208";a="186827089" Date: Mon, 9 Nov 2015 22:04:40 +0000 (GMT) From: Julia Lawall X-X-Sender: jll@hadrien To: Greg KH cc: kbuild test robot , Shivani Bhardwaj , kbuild-all@01.org, andreas.dilger@intel.com, oleg.drokin@intel.com, lustre-devel@lists.lustre.org, linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org Subject: Re: [PATCH] staging: lustre: acl: fix ifnullfree.cocci warnings In-Reply-To: <20151109195902.GB11820@kroah.com> Message-ID: References: <201511100309.kmJ2bdfD%fengguang.wu@intel.com> <20151109194350.GA117144@cairo> <20151109195902.GB11820@kroah.com> User-Agent: Alpine 2.10 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1943 Lines: 53 On Mon, 9 Nov 2015, Greg KH wrote: > On Tue, Nov 10, 2015 at 03:43:50AM +0800, kbuild test robot wrote: > > drivers/staging/lustre/lustre/llite/xattr.c:199:2-7: WARNING: NULL check before freeing functions like kfree, debugfs_remove, debugfs_remove_recursive or usb_free_urb is not needed. Maybe consider reorganizing relevant code to avoid passing NULL values. > > > > NULL check before some freeing functions is not needed. > > > > Based on checkpatch warning > > "kfree(NULL) is safe this check is probably not required" > > and kfreeaddr.cocci by Julia Lawall. > > > > Generated by: scripts/coccinelle/free/ifnullfree.cocci > > > > CC: Shivani Bhardwaj > > Signed-off-by: Fengguang Wu > > --- > > > > xattr.c | 3 +-- > > 1 file changed, 1 insertion(+), 2 deletions(-) > > > > --- a/drivers/staging/lustre/lustre/llite/xattr.c > > +++ b/drivers/staging/lustre/lustre/llite/xattr.c > > @@ -192,11 +192,10 @@ int ll_setxattr_common(struct inode *ino > > valid, name, pv, size, 0, flags, > > ll_i2suppgid(inode), &req); > > #ifdef CONFIG_FS_POSIX_ACL > > - if (new_value != NULL) > > /* > > * Release the posix ACL space. > > */ > > - kfree(new_value); > > + kfree(new_value); > > Looks like a bug in coccinelle, the comment line should also be indented > to the left. > > Julia, any ideas? I think it's on the border of what the person is going to have to resign themselves to doing by hand. I'm not sure which side of the border it is on, but I try to focus more on getting the code printed in the right place than on the comments. I can check on it, though, and maybe an easy fix is possible. thanks, julia -- 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/