HomeSort by: relevance | last modified time | path
    Searched defs:async (Results 1 - 23 of 23) sorted by relevancy

  /src/sys/dev/wscons/
wseventvar.h 88 int async; /* send SIGIO on input ready */ member in struct:wseventvar
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/
qmgr.h 33 bool async; member in struct:nvkm_falcon_qmgr_seq
  /src/sys/ufs/ext2fs/
ext2fs_readwrite.c 274 bool async; local in function:ext2fs_write
302 async = vp->v_mount->mnt_flag & MNT_ASYNC;
335 * XXXUBC simplistic async flushing.
338 if (!async && oldoff >> fshift != uio->uio_offset >> fshift) {
  /src/sys/dev/
sequencervar.h 91 pid_t async; /* process who wants audio SIGIO */ member in struct:sequencer_softc
midivar.h 203 pid_t async; /* process who wants audio SIGIO */ member in struct:midi_softc
  /src/sys/fs/msdosfs/
msdosfs_lookup.c 570 int async = ddep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local in function:msdosfs_createde
572 #define async 0 macro
642 if (async)
673 if (async)
735 if (async)
760 if (async)
900 int async = pdep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local in function:msdosfs_removede
902 #define async 0 macro
962 if (async)
msdosfs_vnops.c 562 bool async; local in function:msdosfs_write
608 async = vp->v_mount->mnt_flag & MNT_ASYNC;
643 * XXXUBC simplistic async flushing.
646 if (!async && oldoff >> 16 != uio->uio_offset >> 16) {
786 int async = pdep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local in function:msdosfs_mkdir
848 if (async)
  /src/sys/rump/librump/rumpvfs/
rumpblk.c 227 "rumpblk", "async I/O");
234 "rumpblk", "bytes written async");
494 int async = bp->b_flags & B_ASYNC; local in function:dostrategy
504 if (async)
508 if (async)
549 off, off, (off + bp->b_bcount), async ? "a" : ""));
552 if (BUF_ISWRITE(bp) && !async)
  /src/sys/ufs/lfs/
ulfs_readwrite.c 243 bool async; local in function:WRITE
272 async = vp->v_mount->mnt_flag & MNT_ASYNC;
280 async = true;
393 * XXXUBC simplistic async flushing.
396 __USE(async);
lfs_vfsops.c 2075 bool async = (flags & PGO_SYNCIO) == 0; local in function:lfs_gop_write
2293 * LFS doesn't like async I/O here, dies with
2295 * valid? I retained non-async behaviour when
2324 if (!async) {
  /src/sys/ufs/ufs/
ufs_readwrite.c 251 bool async; local in function:WRITE
281 async = vp->v_mount->mnt_flag & MNT_ASYNC;
431 * XXXUBC simplistic async flushing.
434 if (!async && oldoff >> fshift != uio->uio_offset >> fshift) {
  /src/sys/dev/ic/
icp_ioctl.h 125 } __packed async; member in union:__anon07d367500308::__anon07d36750040a
  /src/sys/ufs/chfs/
chfs_vnops.c 776 bool async; local in function:chfs_write
836 async = vp->v_mount->mnt_flag & MNT_ASYNC;
954 * XXXUBC simplistic async flushing.
957 if (!async && oldoff >> 16 != uio->uio_offset >> 16) {
  /src/sys/arch/arc/dev/
pccons.c 127 static u_char async, kernel, polling; /* Really, you don't want to know. */ variable in typeref:typename:u_char
458 async = 0;
497 if (async)
501 if (async)
503 async = 1;
  /src/sys/fs/udf/
udf_vnops.c 165 /* async check to see if all node descriptors are written out */
377 * XXXUBC simplistic async flushing.
1371 int async = vp->v_mount->mnt_flag & MNT_ASYNC; local in function:udf_close
1377 if (!async && (vp->v_type != VDIR)) {
  /src/sys/miscfs/genfs/
genfs_io.c 111 const bool async = (flags & PGO_SYNCIO) == 0; local in function:genfs_getpages
313 pgs = kmem_zalloc(pgs_size, async ? KM_NOSLEEP : KM_SLEEP);
375 async ? UFP_NOWAIT : UFP_ALL) != orignmempages) {
379 KASSERT(async != 0);
465 async ? UFP_NOWAIT : UFP_ALL) != npages) {
469 KASSERT(async != 0);
479 async, memwrite, blockalloc, glocked);
483 if (error == 0 && async)
524 if (i < ridx || i >= ridx + orignmempages || async) {
578 bool async, bool memwrite, bool blockalloc, bool glocked
880 bool async = (origflags & PGO_SYNCIO) == 0; local in function:genfs_do_putpages
1443 const bool async = (flags & PGO_SYNCIO) == 0; local in function:genfs_do_io
    [all...]
  /src/sys/dev/scsipi/
scsipi_base.c 462 * URGENT commands can never be ASYNC.
467 printf("URGENT and ASYNC\n");
1654 panic("scsipi_done: ASYNC and POLL");
2218 int oasync, async, poll, error; local in function:scsipi_execute_xs
2295 * completion, clear the ASYNC flag.
2301 async = (xs->xs_control & XS_CTL_ASYNC);
2336 if (async)
2361 * If it was meant to run async and we cleared async ourselves,
  /src/sys/kern/
vfs_mount.c 943 int error, async, used_syncer, used_extattr; local in function:dounmount
970 async = mp->mnt_flag & MNT_ASYNC;
984 mp->mnt_flag |= async;
vfs_vnode.c 197 * There are three lru lists: one holds vnodes waiting for async release,
846 const bool async = ((flags & VRELEL_ASYNC) != 0); local in function:vrelel
931 if ((curlwp == uvm.pagedaemon_lwp) || async) {
  /src/sys/uvm/
uvm_swap.c 1812 * => can be sync or async
1867 bool write, async, swap_encrypt; local in function:uvm_swap_io
1873 async = (flags & B_ASYNC) != 0;
1881 KASSERT(curlwp != uvm.pagedaemon_lwp || async);
1986 * for async ops we must set up the iodone handler.
1989 if (async) {
1991 UVMHIST_LOG(pdhist, "doing async!", 0, 0, 0, 0);
2005 * now we start the I/O, and if async, return.
2009 if (async) {
  /src/sys/dev/pci/
if_iwm.c 4195 int async, wantresp; local in function:iwm_send_cmd
4201 async = hcmd->flags & IWM_CMD_ASYNC;
4210 KASSERT(!async);
4307 code, hdrlen + paylen, async ? " (async)" : ""));
4336 if (!async) {
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu.h 423 bool async; member in struct:amdgpu_flip_work
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon.h 149 /* R600+ has an async dma ring */
151 /* cayman add a second async dma ring */
787 bool async; member in struct:radeon_flip_work
1086 /* r600 async dma */
2040 void (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base, bool async);
2842 #define radeon_page_flip(rdev, crtc, base, async) (rdev)->asic->pflip.page_flip((rdev), (crtc), (base), (async))

Completed in 46 milliseconds