Searched refs:new_pgd (Results 1 – 6 of 6) sorted by relevance
| /arch/m68k/include/asm/ |
| A D | sun3_pgalloc.h | 41 pgd_t *new_pgd; in pgd_alloc() local 43 new_pgd = __pgd_alloc(mm, 0); in pgd_alloc() 44 if (likely(new_pgd != NULL)) { in pgd_alloc() 45 memcpy(new_pgd, swapper_pg_dir, PAGE_SIZE); in pgd_alloc() 46 memset(new_pgd, 0, (PAGE_OFFSET >> PGDIR_SHIFT)); in pgd_alloc() 48 return new_pgd; in pgd_alloc()
|
| A D | mcf_pgalloc.h | 85 pgd_t *new_pgd; in pgd_alloc() local 92 new_pgd = ptdesc_address(ptdesc); in pgd_alloc() 94 memcpy(new_pgd, swapper_pg_dir, PTRS_PER_PGD * sizeof(pgd_t)); in pgd_alloc() 95 memset(new_pgd, 0, PAGE_OFFSET >> PGDIR_SHIFT); in pgd_alloc() 96 return new_pgd; in pgd_alloc()
|
| /arch/arm/mm/ |
| A D | pgd.c | 32 pgd_t *new_pgd, *init_pgd; in pgd_alloc() local 38 new_pgd = _pgd_alloc(mm); in pgd_alloc() 39 if (!new_pgd) in pgd_alloc() 46 memcpy(new_pgd + USER_PTRS_PER_PGD, init_pgd + USER_PTRS_PER_PGD, in pgd_alloc() 49 clean_dcache_area(new_pgd, PTRS_PER_PGD * sizeof(pgd_t)); in pgd_alloc() 55 new_p4d = p4d_alloc(mm, new_pgd + pgd_index(MODULES_VADDR), in pgd_alloc() 89 new_p4d = p4d_alloc(mm, new_pgd, 0); in pgd_alloc() 125 return new_pgd; in pgd_alloc() 135 _pgd_free(mm, new_pgd); in pgd_alloc()
|
| /arch/x86/power/ |
| A D | hibernate_64.c | 74 pgd_t new_pgd = __pgd(__pa(p4d) | pgprot_val(pgtable_prot)); in set_up_temporary_text_mapping() local 77 set_pgd(pgd + pgd_index(restore_jump_address), new_pgd); in set_up_temporary_text_mapping() 80 pgd_t new_pgd = __pgd(__pa(pud) | pgprot_val(pgtable_prot)); in set_up_temporary_text_mapping() local 81 set_pgd(pgd + pgd_index(restore_jump_address), new_pgd); in set_up_temporary_text_mapping()
|
| /arch/x86/kvm/mmu/ |
| A D | mmu.c | 5027 gpa_t new_pgd, in cached_root_find_and_keep_current() argument 5032 if (is_root_usable(&mmu->root, new_pgd, new_role)) in cached_root_find_and_keep_current() 5045 if (is_root_usable(&mmu->root, new_pgd, new_role)) in cached_root_find_and_keep_current() 5061 gpa_t new_pgd, in cached_root_find_without_current() argument 5067 if (is_root_usable(&mmu->prev_roots[i], new_pgd, new_role)) in cached_root_find_without_current() 5082 gpa_t new_pgd, union kvm_mmu_page_role new_role) in fast_pgd_switch() argument 5092 return cached_root_find_and_keep_current(kvm, mmu, new_pgd, new_role); in fast_pgd_switch() 5094 return cached_root_find_without_current(kvm, mmu, new_pgd, new_role); in fast_pgd_switch() 5097 void kvm_mmu_new_pgd(struct kvm_vcpu *vcpu, gpa_t new_pgd) in kvm_mmu_new_pgd() argument 5106 if (!fast_pgd_switch(vcpu->kvm, mmu, new_pgd, new_role)) in kvm_mmu_new_pgd()
|
| /arch/x86/include/asm/ |
| A D | kvm_host.h | 2273 void kvm_mmu_new_pgd(struct kvm_vcpu *vcpu, gpa_t new_pgd);
|
Completed in 31 milliseconds