HomeSort by: relevance | last modified time | path
    Searched refs:PGO_SYNCIO (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/sys/uvm/
uvm_pager.h 146 #define PGO_SYNCIO 0x002 /* use sync I/O */
uvm_object.c 149 PGO_SYNCIO);
uvm_aobj.c 896 if ((flags & PGO_SYNCIO) == 0) {
994 error = uvm_swap_get(ptmp, swslot, PGO_SYNCIO);
1253 0, VM_PROT_READ | VM_PROT_WRITE, 0, PGO_SYNCIO);
uvm_swap.c 1821 ((flags & PGO_SYNCIO) ? 0 : B_ASYNC));
1837 KASSERT(flags & PGO_SYNCIO);
1843 ((flags & PGO_SYNCIO) ? 0 : B_ASYNC));
uvm_vnode.c 144 * => flags: PGO_SYNCIO -- use sync. I/O
474 (void) uvn_put(uobj, pgend, 0, PGO_FREE | PGO_SYNCIO);
uvm_loan.c 520 VM_PROT_READ, 0, PGO_SYNCIO);
649 &pg, &npages, 0, VM_PROT_READ, MADV_NORMAL, PGO_SYNCIO);
uvm_bio.c 576 PGO_SYNCIO|PGO_OVERWRITE|PGO_PASTEOF|PGO_NOBLOCKALLOC|
850 int gpflags = flags | PGO_NOTIMESTAMP | PGO_SYNCIO;
uvm_fault.c 388 PGO_SYNCIO);
924 PGO_LOCKED|PGO_SYNCIO);
2156 0, access_type, advice, PGO_SYNCIO);
uvm_mmap.c 523 uvmflags |= PGO_SYNCIO;
  /src/sys/ufs/lfs/
lfs_pages.c 394 * the request does not have PGO_SYNCIO. When the pagedaemon gives
442 sync = (ap->a_flags & PGO_SYNCIO) != 0;
620 ap->a_flags & ~PGO_SYNCIO, &busypg);
709 ap->a_flags &= ~PGO_SYNCIO;
ulfs_inode.c 216 VM_PROT_WRITE, 0, PGO_SYNCIO | PGO_PASTEOF | PGO_NOBLOCKALLOC |
ulfs_readwrite.c 308 PGO_CLEANIT | PGO_SYNCIO);
402 PGO_CLEANIT | PGO_SYNCIO);
lfs_inode.c 298 PGO_CLEANIT | PGO_SYNCIO);
418 ((ioflag & IO_SYNC) ? PGO_SYNCIO : 0));
876 error = VOP_PUTPAGES(vp, off, 0, PGO_FREE | PGO_SYNCIO);
  /src/sys/ufs/ffs/
ffs_vnops.c 328 ((ap->a_flags & FSYNC_WAIT) ? PGO_SYNCIO : 0));
439 pflags |= PGO_SYNCIO;
ffs_inode.c 340 round_page(eob), PGO_CLEANIT | PGO_SYNCIO |
393 ((ioflag & IO_SYNC) ? PGO_SYNCIO : 0));
  /src/sys/nfs/
nfs_clntsubs.c 290 0, PGO_SYNCIO | PGO_CLEANIT |
364 0, PGO_SYNCIO | PGO_CLEANIT | PGO_FREE | PGO_ALLPAGES);
nfs_bio.c 543 0, PGO_SYNCIO | PGO_FREE);
572 PGO_CLEANIT | PGO_SYNCIO);
  /src/sys/ufs/ufs/
ufs_inode.c 247 VM_PROT_WRITE, 0, PGO_SYNCIO | PGO_PASTEOF | PGO_NOBLOCKALLOC |
ufs_readwrite.c 346 PGO_CLEANIT | PGO_SYNCIO | PGO_JOURNALLOCKED);
447 PGO_CLEANIT | PGO_SYNCIO | PGO_JOURNALLOCKED);
  /src/sys/miscfs/genfs/
genfs_io.c 111 const bool async = (flags & PGO_SYNCIO) == 0;
827 * => if PGO_CLEANIT or PGO_SYNCIO is set, we may block (due to I/O).
830 * => if neither PGO_CLEANIT nor PGO_SYNCIO is set, we will not block
880 bool async = (origflags & PGO_SYNCIO) == 0;
1443 const bool async = (flags & PGO_SYNCIO) == 0;
1636 if ((ap->a_flags & PGO_SYNCIO) == 0) {
1864 const int pgoflags = PGO_CLEANIT | PGO_SYNCIO | PGO_JOURNALLOCKED |
1934 error = genfs_do_io(vp, off, kva + koff, len, PGO_SYNCIO, rw,
  /src/sys/ufs/ext2fs/
ext2fs_readwrite.c 349 PGO_CLEANIT | PGO_SYNCIO);
  /src/sys/kern/
vfs_subr.c 205 int flushflags = PGO_ALLPAGES | PGO_FREE | PGO_SYNCIO |
289 error = VOP_PUTPAGES(vp, off, 0, PGO_FREE | PGO_SYNCIO);
344 (sync ? PGO_SYNCIO : 0) |
  /src/sys/ufs/chfs/
chfs_vnops.c 868 PGO_CLEANIT | PGO_SYNCIO | PGO_JOURNALLOCKED);
972 PGO_CLEANIT | PGO_SYNCIO | PGO_JOURNALLOCKED);
  /src/sys/rump/librump/rumpkern/
vm.c 1345 #define PAGERFLAGS (PGO_SYNCIO | PGO_NOBLOCKALLOC | PGO_NOTIMESTAMP)
  /src/sys/dev/
fss.c 1107 round_page(off+len), PGO_CLEANIT | PGO_FREE | PGO_SYNCIO);

Completed in 65 milliseconds

1 2