Home
last modified time | relevance | path

Searched refs:gdt_descr (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/arch/x86/platform/efi/
Defi_32.c61 struct desc_ptr gdt_descr; in efi_call_phys_prolog() local
69 gdt_descr.address = __pa(get_cpu_gdt_table(0)); in efi_call_phys_prolog()
70 gdt_descr.size = GDT_SIZE - 1; in efi_call_phys_prolog()
71 load_gdt(&gdt_descr); in efi_call_phys_prolog()
78 struct desc_ptr gdt_descr; in efi_call_phys_epilog() local
80 gdt_descr.address = (unsigned long)get_cpu_gdt_table(0); in efi_call_phys_epilog()
81 gdt_descr.size = GDT_SIZE - 1; in efi_call_phys_epilog()
82 load_gdt(&gdt_descr); in efi_call_phys_epilog()
/linux-4.4.14/arch/x86/kernel/cpu/
Dcommon.c388 struct desc_ptr gdt_descr; in switch_to_new_gdt() local
390 gdt_descr.address = (long)get_cpu_gdt_table(cpu); in switch_to_new_gdt()
391 gdt_descr.size = GDT_SIZE - 1; in switch_to_new_gdt()
392 load_gdt(&gdt_descr); in switch_to_new_gdt()
/linux-4.4.14/arch/x86/kvm/
Dsvm.c645 struct desc_ptr gdt_descr; in svm_hardware_enable() local
667 native_store_gdt(&gdt_descr); in svm_hardware_enable()
668 gdt = (struct desc_struct *)gdt_descr.address; in svm_hardware_enable()