HomeSort by: relevance | last modified time | path
    Searched defs:volsize (Results 1 - 5 of 5) sorted by relevancy

  /src/sbin/bioctl/
bioctl.c 696 int64_t volsize = 0; local
735 if (dehumanize_number(argv[3], &volsize) == -1
736 || volsize < 0)
801 if ((uint64_t)volsize > (disksize * user_disks))
804 bc.bc_size = (uint64_t)volsize;
819 if ((uint64_t)volsize > ((disksize * user_disks) / 2))
822 bc.bc_size = (uint64_t)volsize;
834 if ((uint64_t)volsize > (disksize * (user_disks - 1)))
837 bc.bc_size = (uint64_t)volsize;
848 if ((uint64_t)volsize >
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zvol.c 283 zvol_size_changed(zvol_state_t *zv, uint64_t volsize)
288 zv->zv_volsize = volsize;
290 "Size", volsize) == DDI_SUCCESS);
292 "Nblocks", lbtodb(volsize)) == DDI_SUCCESS);
299 zv->zv_volsize = volsize;
326 zv->zv_volsize = volsize;
332 dg->dg_secperunit = volsize / secsize;
339 zvol_check_volsize(uint64_t volsize, uint64_t blocksize)
341 if (volsize == 0)
344 if (volsize % blocksize != 0
508 uint64_t volblocksize, volsize; local
999 uint64_t volsize; local
1783 uint64_t off, volsize; local
2104 uint64_t volsize; local
2174 uint64_t volsize; local
    [all...]
zfs_ioctl.c 3309 uint64_t volsize, volblocksize; local
3314 zfs_prop_to_name(ZFS_PROP_VOLSIZE), &volsize) != 0)
3328 (error = zvol_check_volsize(volsize,
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_dataset.c 1310 uint64_t volsize = zfs_prop_get_int(zhp, local
1319 if (intval > volsize) {
1396 * If this is an existing volume, and someone is setting the volsize,
1686 /* clean up the volsize property we tried to set */
3280 * volsize must be a multiple of the block size, and cannot be
3888 * For volumes, if the pre-rollback volsize matched the pre-
3889 * rollback reservation and the volsize has changed then set
3890 * the reservation property to the post-rollback volsize.
4819 zvol_volsize_to_reservation(uint64_t volsize, nvlist_t *props)
4835 nblocks = volsize/volblocksize
    [all...]
  /src/external/cddl/osnet/dist/cmd/zfs/
zfs_main.c 764 uint64_t volsize = 0; local
792 volsize = intval;
889 volsize = zvol_volsize_to_reservation(volsize, real_props);
895 zfs_prop_to_name(resv_prop), volsize) != 0) {

Completed in 33 milliseconds