mirror of https://gitee.com/openkylin/linux.git
KVM/x86: Fix invvpid and invept register operand size in 64-bit mode
Register operand size of invvpid and invept instruction in 64-bit mode has always 64 bits. Adjust inline function argument type to reflect correct size. Signed-off-by: Uros Bizjak <ubizjak@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
bf627a9288
commit
5ebb272b2e
|
@ -2070,7 +2070,7 @@ static int __find_msr_index(struct vcpu_vmx *vmx, u32 msr)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void __invvpid(int ext, u16 vpid, gva_t gva)
|
static inline void __invvpid(unsigned long ext, u16 vpid, gva_t gva)
|
||||||
{
|
{
|
||||||
struct {
|
struct {
|
||||||
u64 vpid : 16;
|
u64 vpid : 16;
|
||||||
|
@ -2085,7 +2085,7 @@ static inline void __invvpid(int ext, u16 vpid, gva_t gva)
|
||||||
BUG_ON(error);
|
BUG_ON(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void __invept(int ext, u64 eptp, gpa_t gpa)
|
static inline void __invept(unsigned long ext, u64 eptp, gpa_t gpa)
|
||||||
{
|
{
|
||||||
struct {
|
struct {
|
||||||
u64 eptp, gpa;
|
u64 eptp, gpa;
|
||||||
|
|
Loading…
Reference in New Issue