Re: [PATCH: 013/017](RFC) Memory hotplug for new nodes v.3.(changes from __init to __meminit)

From: Andrew Morton
Date: Thu Mar 09 2006 - 07:02:46 EST


Yasunori Goto <y-goto@xxxxxxxxxxxxxx> wrote:
>
> Index: pgdat6/include/linux/bootmem.h
> ===================================================================
> --- pgdat6.orig/include/linux/bootmem.h 2006-03-06 18:25:37.000000000 +0900
> +++ pgdat6/include/linux/bootmem.h 2006-03-06 21:08:05.000000000 +0900
> @@ -88,8 +88,8 @@ static inline void *alloc_remap(int nid,
> }
> #endif
>
> -extern unsigned long __initdata nr_kernel_pages;
> -extern unsigned long __initdata nr_all_pages;
> +extern unsigned long __meminitdata nr_kernel_pages;
> +extern unsigned long __meminitdata nr_all_pages;

Declaring the section for externs like this isn't very useful really. I
don't think there's any way in which the compiler can check it and the
linker will look at the definition, not at the declarations. And if we add
these, we just need to keep the declarations updated for cosmetic reasons
as you've discovered.

So I'd recommend you simply remove the __initdata tags here and leave it at
that.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/