The patch titled
     add-vmcore: use the existing ia64_tpa() instead of asm code
has been removed from the -mm tree.  Its filename was
     add-vmcore-use-the-existing-ia64_tpa-instead-of-asm-code.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: add-vmcore: use the existing ia64_tpa() instead of asm code
From: "Ken'ichi Ohmichi" <[EMAIL PROTECTED]>

Signed-off-by: Ken'ichi Ohmichi <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 arch/ia64/kernel/machine_kexec.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff -puN 
arch/ia64/kernel/machine_kexec.c~add-vmcore-use-the-existing-ia64_tpa-instead-of-asm-code
 arch/ia64/kernel/machine_kexec.c
--- 
a/arch/ia64/kernel/machine_kexec.c~add-vmcore-use-the-existing-ia64_tpa-instead-of-asm-code
+++ a/arch/ia64/kernel/machine_kexec.c
@@ -21,6 +21,7 @@
 #include <asm/setup.h>
 #include <asm/delay.h>
 #include <asm/meminit.h>
+#include <asm/processor.h>
 
 typedef NORET_TYPE void (*relocate_new_kernel_t)(
                                        unsigned long indirection_page,
@@ -145,9 +146,6 @@ void arch_crash_save_vmcoreinfo(void)
 
 unsigned long paddr_vmcoreinfo_note(void)
 {
-       unsigned long vaddr, paddr;
-       vaddr = (unsigned long)(char *)&vmcoreinfo_note;
-       asm volatile ("tpa %0 = %1" : "=r"(paddr) : "r"(vaddr) : "memory");
-       return paddr;
+       return ia64_tpa((unsigned long)(char *)&vmcoreinfo_note);
 }
 
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to