All of lore.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] slub.c:early_kmem_cache_node_alloc() shouldn't be __init
@ 2007-07-10 12:44 Adrian Bunk
  2007-07-10 18:33 ` Christoph Lameter
  0 siblings, 1 reply; 4+ messages in thread
From: Adrian Bunk @ 2007-07-10 12:44 UTC (permalink / raw)
  To: Christoph Lameter; +Cc: linux-kernel

This patch fixes the following section mismatch:

<--  snip  -->

...
  MODPOST vmlinux
WARNING: mm/built-in.o(.text+0x24bd3): Section mismatch: reference to .init.text:early_kmem_cache_node_alloc (between 'init_kmem_cache_nodes' and 'calculate_sizes')
...

<--  snip  -->

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---
--- linux-2.6.22-rc6-mm1/mm/slub.c.old	2007-07-10 04:31:32.000000000 +0200
+++ linux-2.6.22-rc6-mm1/mm/slub.c	2007-07-10 04:31:52.000000000 +0200
@@ -1882,8 +1882,8 @@
  * Note that this function only works on the kmalloc_node_cache
  * when allocating for the kmalloc_node_cache.
  */
-static struct kmem_cache_node * __init early_kmem_cache_node_alloc(gfp_t gfpflags,
-								int node)
+static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
+							   int node)
 {
 	struct page *page;
 	struct kmem_cache_node *n;


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

end of thread, other threads:[~2007-07-10 19:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-10 12:44 [2.6 patch] slub.c:early_kmem_cache_node_alloc() shouldn't be __init Adrian Bunk
2007-07-10 18:33 ` Christoph Lameter
2007-07-10 19:01   ` Adrian Bunk
2007-07-10 19:43     ` Christoph Lameter

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.