Signed-off-by: Gleb Natapov <[email protected]>
---
lib/x86/processor.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/x86/processor.h b/lib/x86/processor.h
index c348808..c3ab109 100644
--- a/lib/x86/processor.h
+++ b/lib/x86/processor.h
@@ -193,13 +193,13 @@ static inline u16 sldt(void)
static inline void ltr(unsigned val)
{
- asm volatile ("ltr %0" : : "rm"(val));
+ asm volatile ("ltr %w0" : : "rm"(val));
}
static inline u16 str(void)
{
u16 val;
- asm volatile ("str %0" : "=rm"(val));
+ asm volatile ("str %w0" : "=rm"(val));
return val;
}
--
1.7.2.3
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html