Home
last modified time | relevance | path

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

/linux-4.4.14/arch/x86/kvm/
Dvmx.c597 struct page *pml_pg; member
7844 struct page *pml_pg; in vmx_create_pml_buffer() local
7846 pml_pg = alloc_page(GFP_KERNEL | __GFP_ZERO); in vmx_create_pml_buffer()
7847 if (!pml_pg) in vmx_create_pml_buffer()
7850 vmx->pml_pg = pml_pg; in vmx_create_pml_buffer()
7852 vmcs_write64(PML_ADDRESS, page_to_phys(vmx->pml_pg)); in vmx_create_pml_buffer()
7860 if (vmx->pml_pg) { in vmx_destroy_pml_buffer()
7861 __free_page(vmx->pml_pg); in vmx_destroy_pml_buffer()
7862 vmx->pml_pg = NULL; in vmx_destroy_pml_buffer()
7884 pml_buf = page_address(vmx->pml_pg); in vmx_flush_pml_buffer()