Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1cd7daa51baf0934882bf24a7ae378ec75df665e
Commit:     1cd7daa51baf0934882bf24a7ae378ec75df665e
Parent:     d29eff7bca60c9ee401d691d4562a4abca8de543
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 16 01:24:18 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Oct 16 09:42:51 2007 -0700

    slub.c:early_kmem_cache_node_alloc() shouldn't be __init
    
    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')
    ...
    
    Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>
    Acked-by: Christoph Lameter <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 mm/slub.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/slub.c b/mm/slub.c
index addb20a..0eab12b 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1878,8 +1878,8 @@ static void init_kmem_cache_node(struct kmem_cache_node 
*n)
  * 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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to