diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 11:44:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 11:44:24 -0400 |
commit | e3ebadd95cb621e2c7436f3d3646447ac9d5c16d (patch) | |
tree | 510b41550cc3751cfb565e3e2ba195a68b784a03 /arch/i386 | |
parent | 15700770ef7c5d12e2f1659d2ddbeb3f658d9f37 (diff) |
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/alternative.c | 4 | ||||
-rw-r--r-- | arch/i386/mm/init.c | 15 |
2 files changed, 9 insertions, 10 deletions
diff --git a/arch/i386/kernel/alternative.c b/arch/i386/kernel/alternative.c index e5cec6685cc5..d8cda14fff8b 100644 --- a/arch/i386/kernel/alternative.c +++ b/arch/i386/kernel/alternative.c | |||
@@ -390,8 +390,8 @@ void __init alternative_instructions(void) | |||
390 | _text, _etext); | 390 | _text, _etext); |
391 | } | 391 | } |
392 | free_init_pages("SMP alternatives", | 392 | free_init_pages("SMP alternatives", |
393 | __pa_symbol(&__smp_locks), | 393 | (unsigned long)__smp_locks, |
394 | __pa_symbol(&__smp_locks_end)); | 394 | (unsigned long)__smp_locks_end); |
395 | } else { | 395 | } else { |
396 | alternatives_smp_module_add(NULL, "core kernel", | 396 | alternatives_smp_module_add(NULL, "core kernel", |
397 | __smp_locks, __smp_locks_end, | 397 | __smp_locks, __smp_locks_end, |
diff --git a/arch/i386/mm/init.c b/arch/i386/mm/init.c index dbe16f63a566..1a7197e89eb4 100644 --- a/arch/i386/mm/init.c +++ b/arch/i386/mm/init.c | |||
@@ -843,11 +843,10 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end) | |||
843 | unsigned long addr; | 843 | unsigned long addr; |
844 | 844 | ||
845 | for (addr = begin; addr < end; addr += PAGE_SIZE) { | 845 | for (addr = begin; addr < end; addr += PAGE_SIZE) { |
846 | struct page *page = pfn_to_page(addr >> PAGE_SHIFT); | 846 | ClearPageReserved(virt_to_page(addr)); |
847 | ClearPageReserved(page); | 847 | init_page_count(virt_to_page(addr)); |
848 | init_page_count(page); | 848 | memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE); |
849 | memset(page_address(page), POISON_FREE_INITMEM, PAGE_SIZE); | 849 | free_page(addr); |
850 | __free_page(page); | ||
851 | totalram_pages++; | 850 | totalram_pages++; |
852 | } | 851 | } |
853 | printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10); | 852 | printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10); |
@@ -856,14 +855,14 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end) | |||
856 | void free_initmem(void) | 855 | void free_initmem(void) |
857 | { | 856 | { |
858 | free_init_pages("unused kernel memory", | 857 | free_init_pages("unused kernel memory", |
859 | __pa_symbol(&__init_begin), | 858 | (unsigned long)(&__init_begin), |
860 | __pa_symbol(&__init_end)); | 859 | (unsigned long)(&__init_end)); |
861 | } | 860 | } |
862 | 861 | ||
863 | #ifdef CONFIG_BLK_DEV_INITRD | 862 | #ifdef CONFIG_BLK_DEV_INITRD |
864 | void free_initrd_mem(unsigned long start, unsigned long end) | 863 | void free_initrd_mem(unsigned long start, unsigned long end) |
865 | { | 864 | { |
866 | free_init_pages("initrd memory", __pa(start), __pa(end)); | 865 | free_init_pages("initrd memory", start, end); |
867 | } | 866 | } |
868 | #endif | 867 | #endif |
869 | 868 | ||