Lines Matching refs:zoned
418 zfs_dozonecheck_impl(const char *dataset, uint64_t zoned, cred_t *cr)
432 * If the fs is zoned, only root can access it from the
435 if (secpolicy_zfs(cr) && zoned)
439 * If we are in a local zone, the 'zoned' property must be set.
441 if (!zoned)
454 uint64_t zoned;
456 if (dsl_prop_get_integer(dataset, "zoned", &zoned, NULL))
459 return (zfs_dozonecheck_impl(dataset, zoned, cr));
465 uint64_t zoned;
467 if (dsl_prop_get_int_ds(ds, "zoned", &zoned))
470 return (zfs_dozonecheck_impl(dataset, zoned, cr));
531 uint64_t zoned;
560 * For global-zone datasets (i.e., those whose zoned property is
565 zfs_prop_to_name(ZFS_PROP_ZONED), &zoned, NULL))
567 if (!zoned) {
629 * Disallow setting of 'zoned' from within a local zone.
639 uint64_t zoned;
646 if (dsl_prop_get_integer(dsname, "zoned", &zoned,
649 if (!zoned || strlen(dsname) <= strlen(setpoint))