[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080312025331.B113B1B41D1@basil.firstfloor.org>
Date: Wed, 12 Mar 2008 03:53:31 +0100 (CET)
From: Andi Kleen <andi@...stfloor.org>
To: andreas.herrmann3@....com, tglx@...utronix.de, mingo@...e.hu,
linux-kernel@...r.kernel.org
Subject: [PATCH] [5/7] Readd rdmsrl_safe
RDMSR for 64bit values with exception handling.
Makes it easier to deal with 64bit valued MSRs. The old 64bit code
base had that too as checking_rdmsrl(), but it got dropped somehow.
Needed for followup patch.
Signed-off-by: Andi Kleen <ak@...e.de>
---
include/asm-x86/msr.h | 3 +++
include/asm-x86/paravirt.h | 4 ++++
2 files changed, 7 insertions(+)
Index: linux/include/asm-x86/msr.h
===================================================================
--- linux.orig/include/asm-x86/msr.h
+++ linux/include/asm-x86/msr.h
@@ -150,6 +150,9 @@ static inline int wrmsr_safe(unsigned ms
__err; \
})
+#define rdmsrl_safe(msr,p) \
+ ({ int __err; *(p) = native_read_msr_safe(msr, &__err); __err; })
+
#define rdtscl(low) \
((low) = (u32)native_read_tsc())
Index: linux/include/asm-x86/paravirt.h
===================================================================
--- linux.orig/include/asm-x86/paravirt.h
+++ linux/include/asm-x86/paravirt.h
@@ -687,6 +687,10 @@ static inline int paravirt_write_msr(uns
(*b) = _l >> 32; \
_err; })
+#define rdmsrl_safe(msr, p) ({ \
+ int _err; \
+ *(p) = paravirt_read_msr(msr, &_err); \
+ _err; })
static inline u64 paravirt_read_tsc(void)
{
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists