提交 41aefdcc 编写于 作者: M Max Asbock 提交者: Ingo Molnar

x86: shift bits the right way in native_read_tscp

native_read_tscp shifts the bits in the high order value in the
wrong direction, the attached patch fixes that.
Signed-off-by: NMax Asbock <masbock@linux.vnet.ibm.com>
Acked-by: NGlauber Costa <gcosta@redhat.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 28499143
...@@ -18,7 +18,7 @@ static inline unsigned long long native_read_tscp(unsigned int *aux) ...@@ -18,7 +18,7 @@ static inline unsigned long long native_read_tscp(unsigned int *aux)
unsigned long low, high; unsigned long low, high;
asm volatile(".byte 0x0f,0x01,0xf9" asm volatile(".byte 0x0f,0x01,0xf9"
: "=a" (low), "=d" (high), "=c" (*aux)); : "=a" (low), "=d" (high), "=c" (*aux));
return low | ((u64)high >> 32); return low | ((u64)high << 32);
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册