HomeSort by: relevance | last modified time | path
    Searched refs:PG_RDONLY (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/uvm/
uvm_page.h 233 * PG_RDONLY:
251 #define PG_RDONLY 0x00000080 /* page must be mapped read-only */
uvm_vnode.c 373 /* skip PG_RDONLY pages if requested */
374 if ((flags & UFP_NORDONLY) && (pg->flags & PG_RDONLY)) {
uvm_bio.c 276 * is marked as PG_RDONLY.
282 KASSERT((pg->flags & PG_RDONLY) == 0 ||
868 /* Don't need the empty blocks allocated, PG_RDONLY is okay */
915 KASSERT((pg->flags & PG_RDONLY) == 0 || (flags & UBC_WRITE) == 0);
uvm_loan.c 853 pg->flags |= PG_RDONLY;
uvm_page.c 2052 if ((pg->flags & PG_RDONLY) != 0) {
  /src/sys/ufs/lfs/
ulfs_inode.c 232 * PG_RDONLY on any pages that are now fully backed by disk blocks.
247 pgs[i]->flags &= ~PG_RDONLY;
  /src/sys/ufs/ufs/
ufs_inode.c 263 * and clear PG_RDONLY on any pages that are now fully backed
278 pgs[i]->flags &= ~PG_RDONLY;
  /src/sys/miscfs/genfs/
genfs_io.c 404 KASSERT((pg->flags & PG_RDONLY) == 0 || !blockalloc);
405 pg->flags &= ~PG_RDONLY;
429 (blockalloc && (pg->flags & PG_RDONLY) != 0)) {
523 KASSERT(!memwrite || !blockalloc || (pg->flags & PG_RDONLY) == 0);
669 if ((pgs[pidx]->flags & PG_RDONLY)) {
723 * mark the pages we zeroed PG_RDONLY.
739 pgs[pidx + i]->flags |= PG_RDONLY;
788 * for read faults, we marked the page PG_RDONLY so that future
807 pg->flags &= ~PG_RDONLY;
1538 * mark the pages we zeroed PG_RDONLY
    [all...]
  /src/sys/nfs/
nfs_bio.c 1010 pgs[i]->flags |= PG_NEEDCOMMIT | PG_RDONLY;
1067 pgs[i]->flags &= ~(PG_NEEDCOMMIT | PG_RDONLY);
1133 pgs[i]->flags &= ~(PG_NEEDCOMMIT | PG_RDONLY);
1306 * set PG_RDONLY on the pages so that we come back here if someone
1320 pg->flags |= PG_RDONLY;
1366 pg->flags &= ~(PG_NEEDCOMMIT | PG_RDONLY);
  /src/sys/arch/ia64/ia64/
pmap.c 751 m->flags |= PG_RDONLY;
1066 m->flags |= PG_RDONLY;
1805 m->flags &= ~PG_RDONLY;
2300 if (pg->flags & PG_RDONLY)
2312 pg->flags |= PG_RDONLY;
2354 if (pg->flags & PG_RDONLY)
2641 m->flags |= PG_RDONLY;
  /src/sys/fs/puffs/
puffs_vnops.c 2840 vmp->flags |= PG_RDONLY;
3092 pgs[i]->flags |= PG_RDONLY;

Completed in 21 milliseconds