Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/vfs/
H A Dvfs_disk_conditioner.c60 uint32_t mnt_ioqueue_depth; /* the maxiumum number of commands a device can accept */ member
210 mp->mnt_ioqueue_depth = mnt_fields->mnt_ioqueue_depth; in disk_conditioner_restore_mount_fields()
243 mnt_fields->mnt_ioqueue_depth = mp->mnt_ioqueue_depth; in disk_conditioner_set_info()
258 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()
H A Dvfs_init.c398 mp->mnt_ioqueue_depth = MNT_DEFAULT_IOQUEUE_DEPTH; in vfsinit()
H A Dvfs_subr.c1130 mp->mnt_ioqueue_depth = MNT_DEFAULT_IOQUEUE_DEPTH; in vfs_rootmountalloc_internal()
4678 mp->mnt_ioqueue_depth = (uint32_t)temp; in vfs_init_io_attributes()
4679 mp->mnt_ioscale = MNT_IOSCALE(mp->mnt_ioqueue_depth); in vfs_init_io_attributes()
4682 printf("ioqueue_depth = %d, ioscale = %d\n", (int)mp->mnt_ioqueue_depth, (int)mp->mnt_ioscale); in vfs_init_io_attributes()
H A Dvfs_syscalls.c1353 mp->mnt_ioqueue_depth = MNT_DEFAULT_IOQUEUE_DEPTH; in mount_common()
/xnu-12377.41.6/bsd/sys/
H A Dmount_internal.h134 …uint32_t mnt_ioqueue_depth; /* the maxiumum number of commands a device ca… member