| /onnv/onnv-gate/usr/src/uts/common/fs/zfs/ |
| vdev.c | 1099 uint64_t ashift = 0; local 1129 error = vd->vdev_ops->vdev_op_open(vd, &osize, &ashift); 1221 * For testing purposes, a higher ashift can be requested. 1224 vd->vdev_ashift = MAX(ashift, vd->vdev_ashift); 1229 if (ashift > vd->vdev_top->vdev_ashift) { [all...] |
| vdev_raidz.c | 1499 uint64_t ashift = vd->vdev_top->vdev_ashift; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/ztest/ |
| ztest.c | 636 make_vdev_file(char *path, char *aux, size_t size, uint64_t ashift) 642 if (ashift == 0) 643 ashift = ztest_get_ashift(); 671 VERIFY(nvlist_add_uint64(file, ZPOOL_CONFIG_ASHIFT, ashift) == 0); 677 make_vdev_raidz(char *path, char *aux, size_t size, uint64_t ashift, int r) 683 return (make_vdev_file(path, aux, size, ashift)); 687 child[c] = make_vdev_file(path, aux, size, ashift); 706 make_vdev_mirror(char *path, char *aux, size_t size, uint64_t ashift, 713 return (make_vdev_raidz(path, aux, size, ashift, r)); 718 child[c] = make_vdev_raidz(path, aux, size, ashift, r) 2291 uint64_t ashift = ztest_get_ashift(); local [all...] |