mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
selftests: KVM: Replace get_{gdt,idt}_base() by get_{gdt,idt}()
get_gdt_base() and get_idt_base() only return the base address of the descriptor tables. Soon we will need to get the size as well. Change the prototype of those functions so that they return the whole desc_ptr struct instead of the address field. Signed-off-by: Eric Auger <eric.auger@redhat.com> Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com> Reviewed-by: Miaohe Lin <linmiaohe@huawei.com> Reviewed-by: Wei Huang <wei.huang2@amd.com> Reviewed-by: Krish Sadhukhan <krish.sadhukhan@oracle.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
a06230b62b
commit
1ecaabed4e
@ -220,20 +220,20 @@ static inline void set_cr4(uint64_t val)
|
||||
__asm__ __volatile__("mov %0, %%cr4" : : "r" (val) : "memory");
|
||||
}
|
||||
|
||||
static inline uint64_t get_gdt_base(void)
|
||||
static inline struct desc_ptr get_gdt(void)
|
||||
{
|
||||
struct desc_ptr gdt;
|
||||
__asm__ __volatile__("sgdt %[gdt]"
|
||||
: /* output */ [gdt]"=m"(gdt));
|
||||
return gdt.address;
|
||||
return gdt;
|
||||
}
|
||||
|
||||
static inline uint64_t get_idt_base(void)
|
||||
static inline struct desc_ptr get_idt(void)
|
||||
{
|
||||
struct desc_ptr idt;
|
||||
__asm__ __volatile__("sidt %[idt]"
|
||||
: /* output */ [idt]"=m"(idt));
|
||||
return idt.address;
|
||||
return idt;
|
||||
}
|
||||
|
||||
#define SET_XMM(__var, __xmm) \
|
||||
|
@ -288,9 +288,9 @@ static inline void init_vmcs_host_state(void)
|
||||
vmwrite(HOST_FS_BASE, rdmsr(MSR_FS_BASE));
|
||||
vmwrite(HOST_GS_BASE, rdmsr(MSR_GS_BASE));
|
||||
vmwrite(HOST_TR_BASE,
|
||||
get_desc64_base((struct desc64 *)(get_gdt_base() + get_tr())));
|
||||
vmwrite(HOST_GDTR_BASE, get_gdt_base());
|
||||
vmwrite(HOST_IDTR_BASE, get_idt_base());
|
||||
get_desc64_base((struct desc64 *)(get_gdt().address + get_tr())));
|
||||
vmwrite(HOST_GDTR_BASE, get_gdt().address);
|
||||
vmwrite(HOST_IDTR_BASE, get_idt().address);
|
||||
vmwrite(HOST_IA32_SYSENTER_ESP, rdmsr(MSR_IA32_SYSENTER_ESP));
|
||||
vmwrite(HOST_IA32_SYSENTER_EIP, rdmsr(MSR_IA32_SYSENTER_EIP));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user