All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs, dlm: don't do pointless NULL check and use kzalloc
@ 2011-07-02 17:59 Jesper Juhl
  2011-07-10 20:54 ` [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments Jesper Juhl
  0 siblings, 1 reply; 5+ messages in thread
From: Jesper Juhl @ 2011-07-02 17:59 UTC (permalink / raw)
  To: David Teigland; +Cc: linux-kernel, cluster-devel, Christine Caulfield

In fs/dlm/lock.c in the dlm_scan_waiters() function there are 2 small
issues:

1) There's no need to test the return value of the allocation and do a
memset if is succeedes. Just use kzalloc() to obtain zeroed memory.

2) Since kfree() handles NULL pointers gracefully, the test of
'warned' against NULL before the kfree() after the loop is completely
pointless. Remove it.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Acked-by: David Teigland <teigland@redhat.com>
---
 fs/dlm/lock.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c
index f71d0b5..26d6d88 100644
--- a/fs/dlm/lock.c
+++ b/fs/dlm/lock.c
@@ -849,9 +849,7 @@ void dlm_scan_waiters(struct dlm_ls *ls)
 
 		if (!num_nodes) {
 			num_nodes = ls->ls_num_nodes;
-			warned = kmalloc(GFP_KERNEL, num_nodes * sizeof(int));
-			if (warned)
-				memset(warned, 0, num_nodes * sizeof(int));
+			warned = kzalloc(GFP_KERNEL, num_nodes * sizeof(int));
 		}
 		if (!warned)
 			continue;
@@ -863,9 +861,7 @@ void dlm_scan_waiters(struct dlm_ls *ls)
 			  dlm_config.ci_waitwarn_us, lkb->lkb_wait_nodeid);
 	}
 	mutex_unlock(&ls->ls_waiters_mutex);
-
-	if (warned)
-		kfree(warned);
+	kfree(warned);
 
 	if (debug_expired)
 		log_debug(ls, "scan_waiters %u warn %u over %d us max %lld us",
-- 
1.7.6



-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.


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

* [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments
  2011-07-02 17:59 [PATCH] fs, dlm: don't do pointless NULL check and use kzalloc Jesper Juhl
@ 2011-07-10 20:54 ` Jesper Juhl
  2011-07-11 15:02     ` [Cluster-devel] " David Teigland
  0 siblings, 1 reply; 5+ messages in thread
From: Jesper Juhl @ 2011-07-10 20:54 UTC (permalink / raw)
  To: David Teigland
  Cc: linux-kernel, cluster-devel, Christine Caulfield, Dr. David Alan Gilbert

In fs/dlm/lock.c in the dlm_scan_waiters() function there are 3 small
issues:

1) There's no need to test the return value of the allocation and do a
memset if is succeedes. Just use kzalloc() to obtain zeroed memory.

2) Since kfree() handles NULL pointers gracefully, the test of
'warned' against NULL before the kfree() after the loop is completely
pointless. Remove it.

3) The arguments to kmalloc() (now kzalloc()) were swapped. Thanks to
Dr. David Alan Gilbert for pointing this out.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
 fs/dlm/lock.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c
index f71d0b5..84c52e6 100644
--- a/fs/dlm/lock.c
+++ b/fs/dlm/lock.c
@@ -849,9 +849,7 @@ void dlm_scan_waiters(struct dlm_ls *ls)
 
 		if (!num_nodes) {
 			num_nodes = ls->ls_num_nodes;
-			warned = kmalloc(GFP_KERNEL, num_nodes * sizeof(int));
-			if (warned)
-				memset(warned, 0, num_nodes * sizeof(int));
+			warned = kzalloc(num_nodes * sizeof(int), GFP_KERNEL);
 		}
 		if (!warned)
 			continue;
@@ -863,9 +861,7 @@ void dlm_scan_waiters(struct dlm_ls *ls)
 			  dlm_config.ci_waitwarn_us, lkb->lkb_wait_nodeid);
 	}
 	mutex_unlock(&ls->ls_waiters_mutex);
-
-	if (warned)
-		kfree(warned);
+	kfree(warned);
 
 	if (debug_expired)
 		log_debug(ls, "scan_waiters %u warn %u over %d us max %lld us",
-- 
1.7.6


-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.


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

* Re: [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments
  2011-07-10 20:54 ` [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments Jesper Juhl
@ 2011-07-11 15:02     ` David Teigland
  0 siblings, 0 replies; 5+ messages in thread
From: David Teigland @ 2011-07-11 15:02 UTC (permalink / raw)
  To: Jesper Juhl
  Cc: linux-kernel, cluster-devel, Christine Caulfield, Dr. David Alan Gilbert

On Sun, Jul 10, 2011 at 10:54:31PM +0200, Jesper Juhl wrote:
> In fs/dlm/lock.c in the dlm_scan_waiters() function there are 3 small
> issues:
> 
> 1) There's no need to test the return value of the allocation and do a
> memset if is succeedes. Just use kzalloc() to obtain zeroed memory.
> 
> 2) Since kfree() handles NULL pointers gracefully, the test of
> 'warned' against NULL before the kfree() after the loop is completely
> pointless. Remove it.
> 
> 3) The arguments to kmalloc() (now kzalloc()) were swapped. Thanks to
> Dr. David Alan Gilbert for pointing this out.
> 
> Signed-off-by: Jesper Juhl <jj@chaosbits.net>

Thanks, I pushed this and a patch for the other swapped kmalloc to the
next branch.
Dave


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

* [Cluster-devel] [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments
@ 2011-07-11 15:02     ` David Teigland
  0 siblings, 0 replies; 5+ messages in thread
From: David Teigland @ 2011-07-11 15:02 UTC (permalink / raw)
  To: cluster-devel.redhat.com

On Sun, Jul 10, 2011 at 10:54:31PM +0200, Jesper Juhl wrote:
> In fs/dlm/lock.c in the dlm_scan_waiters() function there are 3 small
> issues:
> 
> 1) There's no need to test the return value of the allocation and do a
> memset if is succeedes. Just use kzalloc() to obtain zeroed memory.
> 
> 2) Since kfree() handles NULL pointers gracefully, the test of
> 'warned' against NULL before the kfree() after the loop is completely
> pointless. Remove it.
> 
> 3) The arguments to kmalloc() (now kzalloc()) were swapped. Thanks to
> Dr. David Alan Gilbert for pointing this out.
> 
> Signed-off-by: Jesper Juhl <jj@chaosbits.net>

Thanks, I pushed this and a patch for the other swapped kmalloc to the
next branch.
Dave



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

* Re: [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments
  2011-07-11 15:02     ` [Cluster-devel] " David Teigland
  (?)
@ 2011-07-11 20:18     ` Jesper Juhl
  -1 siblings, 0 replies; 5+ messages in thread
From: Jesper Juhl @ 2011-07-11 20:18 UTC (permalink / raw)
  To: David Teigland
  Cc: linux-kernel, cluster-devel, Christine Caulfield, Dr. David Alan Gilbert

On Mon, 11 Jul 2011, David Teigland wrote:

> On Sun, Jul 10, 2011 at 10:54:31PM +0200, Jesper Juhl wrote:
> > In fs/dlm/lock.c in the dlm_scan_waiters() function there are 3 small
> > issues:
> > 
> > 1) There's no need to test the return value of the allocation and do a
> > memset if is succeedes. Just use kzalloc() to obtain zeroed memory.
> > 
> > 2) Since kfree() handles NULL pointers gracefully, the test of
> > 'warned' against NULL before the kfree() after the loop is completely
> > pointless. Remove it.
> > 
> > 3) The arguments to kmalloc() (now kzalloc()) were swapped. Thanks to
> > Dr. David Alan Gilbert for pointing this out.
> > 
> > Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> 
> Thanks, I pushed this and a patch for the other swapped kmalloc to the
> next branch.
> Dave
> 
Ok, thanks, then I won't bother updating my patch with that other kmalloc.

-- 
Jesper Juhl <jj@chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.


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

end of thread, other threads:[~2011-07-11 20:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-02 17:59 [PATCH] fs, dlm: don't do pointless NULL check and use kzalloc Jesper Juhl
2011-07-10 20:54 ` [PATCH v3] fs, dlm: don't do pointless NULL check, use kzalloc and fix order of arguments Jesper Juhl
2011-07-11 15:02   ` David Teigland
2011-07-11 15:02     ` [Cluster-devel] " David Teigland
2011-07-11 20:18     ` Jesper Juhl

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.