public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir
@ 2006-12-03 13:31 Robert P. J. Day
  2006-12-03 16:21 ` Alan
  2006-12-03 17:24 ` Randy Dunlap
  0 siblings, 2 replies; 5+ messages in thread
From: Robert P. J. Day @ 2006-12-03 13:31 UTC (permalink / raw)
  To: Linux kernel mailing list


  Replace kmalloc()+memset() combination with kzalloc().

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>

---

 auditfilter.c |    3 +--
 futex.c       |    4 +---
 kexec.c       |    3 +--
 3 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c
index 4f40d92..2e896f8 100644
--- a/kernel/auditfilter.c
+++ b/kernel/auditfilter.c
@@ -636,10 +636,9 @@ static struct audit_rule *audit_krule_to
 	struct audit_rule *rule;
 	int i;

-	rule = kmalloc(sizeof(*rule), GFP_KERNEL);
+	rule = kzalloc(sizeof(*rule), GFP_KERNEL);
 	if (unlikely(!rule))
 		return NULL;
-	memset(rule, 0, sizeof(*rule));

 	rule->flags = krule->flags | krule->listnr;
 	rule->action = krule->action;
diff --git a/kernel/futex.c b/kernel/futex.c
index 93ef30b..999bfaf 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -324,12 +324,10 @@ static int refill_pi_state_cache(void)
 	if (likely(current->pi_state_cache))
 		return 0;

-	pi_state = kmalloc(sizeof(*pi_state), GFP_KERNEL);
-
+	pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
 	if (!pi_state)
 		return -ENOMEM;

-	memset(pi_state, 0, sizeof(*pi_state));
 	INIT_LIST_HEAD(&pi_state->list);
 	/* pi_mutex gets initialized later */
 	pi_state->owner = NULL;
diff --git a/kernel/kexec.c b/kernel/kexec.c
index fcdd5d2..d43692c 100644
--- a/kernel/kexec.c
+++ b/kernel/kexec.c
@@ -108,11 +108,10 @@ static int do_kimage_alloc(struct kimage

 	/* Allocate a controlling structure */
 	result = -ENOMEM;
-	image = kmalloc(sizeof(*image), GFP_KERNEL);
+	image = kzalloc(sizeof(*image), GFP_KERNEL);
 	if (!image)
 		goto out;

-	memset(image, 0, sizeof(*image));
 	image->head = 0;
 	image->entry = &image->head;
 	image->last_entry = &image->head;

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

* Re: [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir
  2006-12-03 13:31 [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir Robert P. J. Day
@ 2006-12-03 16:21 ` Alan
  2006-12-03 17:24 ` Randy Dunlap
  1 sibling, 0 replies; 5+ messages in thread
From: Alan @ 2006-12-03 16:21 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Linux kernel mailing list

On Sun, 3 Dec 2006 08:31:50 -0500 (EST)
"Robert P. J. Day" <rpjday@mindspring.com> wrote:

> 
>   Replace kmalloc()+memset() combination with kzalloc().
> 
> Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>

Acked-by: Alan Cox <alan@redhat.com>

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

* Re: [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir
  2006-12-03 13:31 [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir Robert P. J. Day
  2006-12-03 16:21 ` Alan
@ 2006-12-03 17:24 ` Randy Dunlap
  2006-12-03 17:27   ` Robert P. J. Day
  1 sibling, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2006-12-03 17:24 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Linux kernel mailing list

On Sun, 3 Dec 2006 08:31:50 -0500 (EST) Robert P. J. Day wrote:

> 
>   Replace kmalloc()+memset() combination with kzalloc().
> 
> Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
> 
> ---
> 
>  auditfilter.c |    3 +--
>  futex.c       |    4 +---
>  kexec.c       |    3 +--
>  3 files changed, 3 insertions(+), 7 deletions(-)

Please use diffstat -p1 -w70 as indicated in
Documentation/SubmittingPatches.

---
~Randy

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

* Re: [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir
  2006-12-03 17:24 ` Randy Dunlap
@ 2006-12-03 17:27   ` Robert P. J. Day
  2006-12-03 17:32     ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Robert P. J. Day @ 2006-12-03 17:27 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Linux kernel mailing list

On Sun, 3 Dec 2006, Randy Dunlap wrote:

> On Sun, 3 Dec 2006 08:31:50 -0500 (EST) Robert P. J. Day wrote:
>
> >
> >   Replace kmalloc()+memset() combination with kzalloc().
> >
> > Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
> >
> > ---
> >
> >  auditfilter.c |    3 +--
> >  futex.c       |    4 +---
> >  kexec.c       |    3 +--
> >  3 files changed, 3 insertions(+), 7 deletions(-)
>
> Please use diffstat -p1 -w70 as indicated in
> Documentation/SubmittingPatches.

whoops, sorry.  i hadn't noticed that before.  should i resubmit that
patch with the correct diffstat formatting?

rday

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

* Re: [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir
  2006-12-03 17:27   ` Robert P. J. Day
@ 2006-12-03 17:32     ` Randy Dunlap
  0 siblings, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2006-12-03 17:32 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Linux kernel mailing list

Robert P. J. Day wrote:
> On Sun, 3 Dec 2006, Randy Dunlap wrote:
> 
>> On Sun, 3 Dec 2006 08:31:50 -0500 (EST) Robert P. J. Day wrote:
>>
>>>   Replace kmalloc()+memset() combination with kzalloc().
>>>
>>> Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
>>>
>>> ---
>>>
>>>  auditfilter.c |    3 +--
>>>  futex.c       |    4 +---
>>>  kexec.c       |    3 +--
>>>  3 files changed, 3 insertions(+), 7 deletions(-)
>> Please use diffstat -p1 -w70 as indicated in
>> Documentation/SubmittingPatches.
> 
> whoops, sorry.  i hadn't noticed that before.  should i resubmit that
> patch with the correct diffstat formatting?

No.

-- 
~Randy

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

end of thread, other threads:[~2006-12-03 17:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-03 13:31 [PATCH] kernel: replace "kmalloc+memset" with kzalloc in kernel/ dir Robert P. J. Day
2006-12-03 16:21 ` Alan
2006-12-03 17:24 ` Randy Dunlap
2006-12-03 17:27   ` Robert P. J. Day
2006-12-03 17:32     ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox