Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/i86pc/vm/
H A Dkboot_mmu.c133 x86pte_t pt_bits = PT_NOCONSIST | PT_VALID | PT_WRITABLE; in kbm_remap_window()
167 pteval = pa_to_ma(pa) | PT_NOCONSIST | PT_VALID | PT_WRITABLE; in kbm_map()
213 pteval = ma | PT_NOCONSIST | PT_VALID | PT_REF | PT_WRITABLE; in kbm_map_ma()
369 PT_NOCONSIST | PT_VALID; in kbm_remap()
394 if (!(old_pte & PT_VALID) || ma_to_pa(old_pte) == -1) in kbm_remap()
407 PT_NOCONSIST | PT_REF | PT_MOD | PT_VALID; in kbm_read_only()
505 *pteval = pa_to_ma(new_table) | PT_VALID; in make_ptable()
508 PT_VALID | PT_REF | PT_USER | PT_WRITABLE; in make_ptable()
H A Dhat_pte.h46 #define PTE_ISVALID(p) PTE_GET(p, PT_VALID)
H A Dhat_kdi.c230 pte = kdi_ptom(mmu_ptob(mmu_btop(pa))) | PT_VALID; in kdi_prw()
H A Dhtable.c345 if (kpm_vbase && xen_kpm_page(pfn, PT_VALID | PT_WRITABLE) < 0) in ptable_free()
858 PT_VALID | PT_WRITABLE) < 0) { in htable_alloc()
945 (void) xen_kpm_page(ht->ht_pfn, PT_VALID); in htable_alloc()
947 (void) xen_kpm_page(hat->hat_user_ptable, PT_VALID); in htable_alloc()
2126 if (l > 0 && (prev & PT_VALID) && !(prev & PT_PAGESIZE)) { in x86pte_set()
H A Di86_mmu.c297 (void) xen_kpm_page(pfn, PT_VALID | PT_WRITABLE); in xen_kpm_finish_init()
H A Dhat_i86.c642 mmu.pte_bits[i] = PT_VALID | pt_kern; in mmu_init()
654 mmu.ptp_bits[2] = PT_VALID; in mmu_init()
/titanic_44/usr/src/uts/i86pc/sys/
H A Dmach_mmu.h100 #define PT_VALID (0x001) /* a valid translation is present */ macro
114 #define PT_PTPBITS (PT_VALID | PT_USER | PT_WRITABLE | PT_REF)
/titanic_44/usr/src/uts/i86xpv/boot/
H A Dboot_xconsole.c52 #define PTE_BITS (PT_VALID | PT_WRITABLE)
53 #define PTE_DEV_BITS (PT_VALID | PT_WRITABLE | PT_NOCACHE | PT_NOCONSIST | \
/titanic_44/usr/src/uts/i86pc/boot/
H A Dboot_mmu.c98 if (pteval & PT_VALID) { in find_pte()
/titanic_44/usr/src/uts/i86xpv/os/
H A Dxen_machdep.c555 xen_info->shared_info | PT_NOCONSIST | PT_VALID | PT_WRITABLE, in xen_suspend_domain()
1124 int pt_bits = PT_VALID; in xen_gdt_setprot()
1153 int pt_bits = PT_VALID; in xen_ldt_setprot()
H A Dxen_mmu.c451 if (kpm_vbase != NULL && xen_kpm_page(pfn, PT_VALID | PT_WRITABLE) < 0) in reassign_pfn()
H A Dxpv_panic.c167 pte = pfn_to_pa(pfn) | PT_VALID; in xpv_panic_map()
/titanic_44/usr/src/uts/i86pc/os/
H A Dfastboot.c114 static x86pte_t ptp_bits = PT_VALID | PT_REF | PT_USER | PT_WRITABLE;
116 PT_VALID | PT_REF | PT_MOD | PT_NOCONSIST | PT_WRITABLE;
314 } else if (table[index] & PT_VALID) { in fastboot_map_with_size()
329 table[index] = nk->fi_next_table_pa | PT_VALID; in fastboot_map_with_size()
H A Dfakebop.c1659 pte = mfn_to_ma(copy_mfn) | PT_NOCONSIST | PT_VALID; in relocate_boot_archive()
/titanic_44/usr/src/cmd/mdb/i86pc/modules/unix/
H A Di86mmu.c469 if (PTE_GET(pte, PT_VALID) == 0) in do_pte_dcmd()
808 if ((pte & PT_VALID) == 0) in do_report_maps()
/titanic_44/usr/src/uts/i86pc/dboot/
H A Ddboot_startkern.c90 x86pte_t ptp_bits = PT_VALID | PT_REF | PT_WRITABLE | PT_USER;
91 x86pte_t pte_bits = PT_VALID | PT_REF | PT_WRITABLE | PT_MOD | PT_NOCONSIST;
416 *pteval = pa_to_ma((uintptr_t)new_table) | PT_VALID; in make_ptable()
/titanic_44/usr/src/uts/common/xen/os/
H A Dgnttab.c653 FRAME_TO_MA(frames[i]) | PT_VALID | PT_WRITABLE, in gnttab_resume()
/titanic_44/usr/src/uts/i86xpv/vm/
H A Dseg_mf.c260 pte = mmu_ptob((x86pte_t)mfn) | PT_VALID | PT_USER | PT_FOREIGN; in segmf_faultpage()
/titanic_44/usr/src/uts/common/xen/dtrace/
H A Dxdt.c569 pte = mmu_ptob((x86pte_t)mfn) | PT_VALID | PT_USER in xdt_map_trace_buffers()
/titanic_44/usr/src/cmd/mdb/intel/modules/mdb_kb/
H A Dmdb_kb.c100 #define PT_VALID 0x1 macro