Home
last modified time | relevance | path

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

/f-stack/tools/netstat/
H A Dcommon.c75 print_flags_generic(int flags, const struct bits *pbits, const char *format, in print_flags_generic() argument
81 xo_emit(format, fmt_flags(pbits, flags)); in print_flags_generic()
85 for (p = pbits; p->b_mask; p++) in print_flags_generic()
H A Dcommon.h46 void print_flags_generic(int flags, const struct bits *pbits,
/f-stack/freebsd/mips/mips/
H A Dpmap.c2023 pt_entry_t pbits, *pte; in pmap_protect() local
2066 pbits = *pte; in pmap_protect()
2067 if (!pte_test(&pbits, PTE_V) || pte_test(&pbits, in pmap_protect()
2075 pte_set(&pbits, PTE_RO); in pmap_protect()
2096 *pte = pbits; in pmap_protect()
2967 pt_entry_t pbits, *pte; in pmap_remove_write() local
2983 pbits = *pte; in pmap_remove_write()
2985 pte_clear(&pbits, PTE_D); in pmap_remove_write()
2988 pte_set(&pbits, PTE_RO); in pmap_remove_write()
2989 if (pbits != *pte) { in pmap_remove_write()
[all …]
/f-stack/freebsd/i386/i386/
H A Dpmap.c3374 pt_entry_t obits, pbits; in __CONCAT() local
3444 obits = pbits = *pte; in __CONCAT()
3445 if ((pbits & PG_V) == 0) in __CONCAT()
3449 if ((pbits & (PG_MANAGED | PG_M | PG_RW)) == in __CONCAT()
3451 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME); in __CONCAT()
3454 pbits &= ~(PG_RW | PG_M); in __CONCAT()
3458 pbits |= pg_nx; in __CONCAT()
3461 if (pbits != obits) { in __CONCAT()
3463 if (!atomic_cmpset_64(pte, obits, pbits)) in __CONCAT()
3467 pbits)) in __CONCAT()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c6321 pt_entry_t obits, pbits; in pmap_protect() local
6382 obits = pbits = *pdpe; in pmap_protect()
6386 pbits &= ~(PG_RW | PG_M); in pmap_protect()
6388 pbits |= pg_nx; in pmap_protect()
6390 if (pbits != obits) { in pmap_protect()
6442 obits = pbits = *pte; in pmap_protect()
6443 if ((pbits & PG_V) == 0) in pmap_protect()
6449 m = PHYS_TO_VM_PAGE(pbits & PG_FRAME); in pmap_protect()
6452 pbits &= ~(PG_RW | PG_M); in pmap_protect()
6455 pbits |= pg_nx; in pmap_protect()
[all …]