Home
last modified time | relevance | path

Searched refs:io_flags (Results 1 – 7 of 7) sorted by relevance

/xnu-11215/bsd/vfs/
H A Dvfs_cluster.c1443 int io_flags; in cluster_io() local
1519 io_flags = B_READ; in cluster_io()
1552 io_flags = B_WRITE; in cluster_io()
1624 io_flags |= B_AGE; in cluster_io()
1627 io_flags |= B_PAGEIO; in cluster_io()
1636 io_flags |= B_PHYS; in cluster_io()
1639 io_flags |= B_CACHE; in cluster_io()
1649 io_flags |= B_META; in cluster_io()
6431 l_clusters[cl_index].io_flags = wbp->cl_clusters[min_index].io_flags; in cluster_try_push()
6548 wbp->cl_clusters[cl_index1].io_flags = l_clusters[cl_index].io_flags; in cluster_try_push()
[all …]
H A Dkpi_vfs.c894 ioattrp->io_flags = 0; in vfs_ioattr()
904 ioattrp->io_flags = mp->mnt_ioflags; in vfs_ioattr()
926 mp->mnt_ioflags = ioattrp->io_flags; in vfs_setioattr()
H A Dvfs_bio.c665 buf_reset(buf_t bp, int32_t io_flags) in buf_reset() argument
668 SET(bp->b_flags, (io_flags & (B_ASYNC | B_READ | B_WRITE | B_NOCACHE))); in buf_reset()
/xnu-11215/bsd/sys/
H A Dubc_internal.h81 int io_flags; member
H A Dmount.h535 u_int32_t io_flags; /* flags for underlying device */ member
/xnu-11215/osfmk/kern/
H A Dthread.c2745 thread_update_io_stats(thread_t thread, int size, int io_flags) in thread_update_io_stats() argument
2754 if (io_flags & DKIO_READ) { in thread_update_io_stats()
2759 if (io_flags & DKIO_META) { in thread_update_io_stats()
2764 if (io_flags & DKIO_PAGING) { in thread_update_io_stats()
2769 io_tier = ((io_flags & DKIO_TIER_MASK) >> DKIO_TIER_SHIFT); in thread_update_io_stats()
2779 if (!(io_flags & DKIO_READ)) { in thread_update_io_stats()
2780 DTRACE_IO3(physical_writes, struct task *, task, uint32_t, size, int, io_flags); in thread_update_io_stats()
H A Dthread.h1703 extern void thread_update_io_stats(thread_t, int size, int io_flags);