All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86, efi: Convert efi_phys_get_time() args to physical addresses
@ 2011-10-11 10:52 Matt Fleming
  2011-11-07 11:31 ` Matt Fleming
  2011-12-05 13:29 ` [tip:x86/asm] " tip-bot for Maurice Ma
  0 siblings, 2 replies; 6+ messages in thread
From: Matt Fleming @ 2011-10-11 10:52 UTC (permalink / raw)
  To: linux-kernel
  Cc: Matthew Garrett, Thomas Gleixner, Ingo Molnar, H. Peter Anvin,
	x86, Zhang Rui

From: Maurice Ma <maurice.ma@intel.com>

Because callers of efi_phys_get_time() pass virtual stack addresses as
arguments, we need to find their corresponding physical addresses and
when calling GetTime() in physical mode.

Without this patch the following line is printed on boot,

	"Oops: efitime: can't read time!"

Cc: Matthew Garrett <mjg@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Cc: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Maurice Ma <maurice.ma@intel.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
---
 arch/x86/platform/efi/efi.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
index 3ae4128..d182bba 100644
--- a/arch/x86/platform/efi/efi.c
+++ b/arch/x86/platform/efi/efi.c
@@ -237,7 +237,8 @@ static efi_status_t __init phys_efi_get_time(efi_time_t *tm,
 
 	spin_lock_irqsave(&rtc_lock, flags);
 	efi_call_phys_prelog();
-	status = efi_call_phys2(efi_phys.get_time, tm, tc);
+	status = efi_call_phys2(efi_phys.get_time, virt_to_phys(tm),
+				virt_to_phys(tc));
 	efi_call_phys_epilog();
 	spin_unlock_irqrestore(&rtc_lock, flags);
 	return status;
-- 
1.7.4.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-12-05 13:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-11 10:52 [PATCH] x86, efi: Convert efi_phys_get_time() args to physical addresses Matt Fleming
2011-11-07 11:31 ` Matt Fleming
2011-11-07 19:08   ` H. Peter Anvin
2011-11-08 11:27     ` Matt Fleming
2011-11-25 16:38     ` Matt Fleming
2011-12-05 13:29 ` [tip:x86/asm] " tip-bot for Maurice Ma

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.