Home
last modified time | relevance | path

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

/xnu-11215/bsd/vfs/
H A Dvfs_disk_conditioner.c258 if (uinfo->ioqueue_depth == 0 || uinfo->ioqueue_depth > mnt_fields->mnt_ioqueue_depth) { in disk_conditioner_set_info()
259 info->ioqueue_depth = mnt_fields->mnt_ioqueue_depth; in disk_conditioner_set_info()
279 mp->mnt_ioqueue_depth = info->ioqueue_depth; in disk_conditioner_set_info()
280 mp->mnt_ioscale = MNT_IOSCALE(info->ioqueue_depth); in disk_conditioner_set_info()
H A Dvfs_subr.c4441 u_int32_t ioqueue_depth = 0; in vfs_init_io_attributes() local
4560 (caddr_t)&ioqueue_depth, 0, ctx))) { in vfs_init_io_attributes()
4634 if (ioqueue_depth > MNT_DEFAULT_IOQUEUE_DEPTH) { in vfs_init_io_attributes()
4635 temp = ioqueue_depth; in vfs_init_io_attributes()
/xnu-11215/tests/
H A Ddisk_mount_conditioner.c74 info.ioqueue_depth = 8;
109 T_ASSERT_GT(newinfo.ioqueue_depth, 0u, "ioqueue_depth is the value from the mount"); in verify_mount_fallback_values()
114 T_ASSERT_LT(newinfo.ioqueue_depth, UINT32_MAX, "ioqueue_depth is the value from the mount"); in verify_mount_fallback_values()
212 T_ASSERT_EQ(info.ioqueue_depth, mount_fields.ioqueue_depth, "mount_t ioqueue_depth restored");
/xnu-11215/bsd/sys/
H A Dmount_internal.h232 #define MNT_IOSCALE(ioqueue_depth) ((ioqueue_depth + (MNT_DEFAULT_IOQUEUE_DEPTH - 1)) / MNT_DE… argument
H A Dfsctl.h254 uint32_t ioqueue_depth; member