[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.64.0702230940220.22414@sbz-30.cs.Helsinki.FI>
Date: Fri, 23 Feb 2007 09:41:12 +0200 (EET)
From: Pekka J Enberg <penberg@...helsinki.fi>
To: akpm@...ux-foundation.org
cc: rusty@...tcorp.com.au, linux-kernel@...r.kernel.org
Subject: [PATCH] module: use krealloc
From: Pekka Enberg <penberg@...helsinki.fi>
This converts an open-coded krealloc() to use the shiny new API.
Cc: Rusty Russell <rusty@...tcorp.com.au>
Signed-off-by: Pekka Enberg <penberg@...helsinki.fi>
---
kernel/module.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: uml-2.6/kernel/module.c
===================================================================
--- uml-2.6.orig/kernel/module.c 2007-02-23 09:24:14.000000000 +0200
+++ uml-2.6/kernel/module.c 2007-02-23 09:34:43.000000000 +0200
@@ -308,14 +308,14 @@
{
/* Reallocation required? */
if (pcpu_num_used + 1 > pcpu_num_allocated) {
- int *new = kmalloc(sizeof(new[0]) * pcpu_num_allocated*2,
- GFP_KERNEL);
+ int *new;
+
+ new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
+ GFP_KERNEL);
if (!new)
return 0;
- memcpy(new, pcpu_size, sizeof(new[0])*pcpu_num_allocated);
pcpu_num_allocated *= 2;
- kfree(pcpu_size);
pcpu_size = new;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists