Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6f076f5dd9d227cea2704061048894b00cc0d62b
Commit:     6f076f5dd9d227cea2704061048894b00cc0d62b
Parent:     a6a62b69b9f1b0cec0a119c5f4cd2f17d091e8f5
Author:     Stephen Rothwell <[EMAIL PROTECTED]>
AuthorDate: Thu May 10 03:15:27 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu May 10 09:26:52 2007 -0700

    early_pfn_to_nid needs to be __meminit
    
    Since it is referenced by memmap_init_zone (which is __meminit) via the
    early_pfn_in_nid macro when CONFIG_NODES_SPAN_OTHER_NODES is set (which
    basically means PowerPC 64).
    
    This removes a section mismatch warning in those circumstances.
    
    Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]>
    Cc: Yasunori Goto <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 mm/page_alloc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index f9b5d6d..ae96dd8 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -2284,7 +2284,7 @@ static int __meminit next_active_region_index_in_nid(int 
index, int nid)
  * was used and there are no special requirements, this is a convenient
  * alternative
  */
-int __init early_pfn_to_nid(unsigned long pfn)
+int __meminit early_pfn_to_nid(unsigned long pfn)
 {
        int i;
 
-
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