All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [HPDD-discuss] [PATCH 01/12] staging: lustre: fid: Use !x to check for kzalloc failure
@ 2015-06-22 17:27 Simmons, James A.
  2015-06-22 18:03   ` [lustre-devel] " Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Simmons, James A. @ 2015-06-22 17:27 UTC (permalink / raw)
  To: lustre-devel


Is this change a hard requirement? Currently the lustre code standard in our development tree is the opposite policy.


-------- Original Message --------
Subject:

[HPDD-discuss] [PATCH 01/12] staging: lustre: fid: Use !x to check for kzalloc failure

Date:

Sat, 20 Jun 2015 18:58:59 +0200

From:

Julia Lawall <Julia.Lawall@lip6.fr><mailto:Julia.Lawall@lip6.fr>

To:

Oleg Drokin <oleg.drokin@intel.com><mailto:oleg.drokin@intel.com>

CC:

<devel@driverdev.osuosl.org><mailto:devel@driverdev.osuosl.org>, Greg Kroah-Hartman <gregkh@linuxfoundation.org><mailto:gregkh@linuxfoundation.org>, <kernel-janitors@vger.kernel.org><mailto:kernel-janitors@vger.kernel.org>, <linux-kernel@vger.kernel.org><mailto:linux-kernel@vger.kernel.org>, <HPDD-discuss@lists.01.org><mailto:HPDD-discuss@lists.01.org>



!x is more normal for kzalloc failure in the kernel.



The semantic patch that makes this change is as follows:

(http://coccinelle.lip6.fr/)



// <smpl>

@@

expression x;

statement S1, S2;

@@



x = kzalloc(...);

if (

- x == NULL

+ !x

 ) S1 else S2

// </smpl>



Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr><mailto:Julia.Lawall@lip6.fr>



---

 drivers/staging/lustre/lustre/fid/fid_request.c |    4 ++--

 1 file changed, 2 insertions(+), 2 deletions(-)



diff -u -p a/drivers/staging/lustre/lustre/fid/fid_request.c b/drivers/staging/lustre/lustre/fid/fid_request.c

--- a/drivers/staging/lustre/lustre/fid/fid_request.c

+++ b/drivers/staging/lustre/lustre/fid/fid_request.c

@@ -498,11 +498,11 @@ int client_fid_init(struct obd_device *o

        int rc;



        cli->cl_seq = kzalloc(sizeof(*cli->cl_seq), GFP_NOFS);

-       if (cli->cl_seq == NULL)

+       if (!cli->cl_seq)

               return -ENOMEM;



        prefix = kzalloc(MAX_OBD_NAME + 5, GFP_NOFS);

-       if (prefix == NULL) {

+       if (!prefix) {

               rc = -ENOMEM;

               goto out_free_seq;

        }



_______________________________________________

HPDD-discuss mailing list

HPDD-discuss at lists.01.org<mailto:HPDD-discuss@lists.01.org>

https://lists.01.org/mailman/listinfo/hpdd-discuss


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.lustre.org/pipermail/lustre-devel-lustre.org/attachments/20150622/e9b7f1db/attachment-0001.htm>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-22 18:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-22 17:27 [lustre-devel] [HPDD-discuss] [PATCH 01/12] staging: lustre: fid: Use !x to check for kzalloc failure Simmons, James A.
2015-06-22 18:03 ` Greg Kroah-Hartman (gregkh@linuxfoundation.org)
2015-06-22 18:03   ` Greg Kroah-Hartman (gregkh@linuxfoundation.org)
2015-06-22 18:03   ` [lustre-devel] " Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.