Lines Matching defs:ms_shift
2837 uint64_t ms_shift;
2884 ms_shift = highbit64(asize / zfs_vdev_min_ms_count);
2886 ms_shift = highbit64(asize / zfs_vdev_default_ms_count);
2888 ms_shift = zfs_vdev_default_ms_shift;
2890 if (ms_shift < SPA_MAXBLOCKSHIFT) {
2891 ms_shift = SPA_MAXBLOCKSHIFT;
2892 } else if (ms_shift > zfs_vdev_max_ms_shift) {
2893 ms_shift = zfs_vdev_max_ms_shift;
2895 if ((asize >> ms_shift) > zfs_vdev_ms_count_limit)
2896 ms_shift = highbit64(asize / zfs_vdev_ms_count_limit);
2899 vd->vdev_ms_shift = ms_shift;