Searched defs:zoned (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | dsl_deleg.c | 585 * the zoned property is set 588 uint64_t zoned; local 592 8, 1, &zoned, NULL, B_FALSE) != 0) 594 if (!zoned)
|
H A D | dsl_dir.c | 699 uint64_t zoned; local 720 if (dsl_prop_get_ds(ds, "zoned", 8, 1, &zoned, NULL) || zoned) { 721 /* Only root can access zoned fs's from the GZ */
|
H A D | zfs_vfsops.c | 1372 * zoned property is off), the label must be default or 1377 uint64_t zoned; local 1382 zfs_prop_to_name(ZFS_PROP_ZONED), &zoned, NULL)) 1384 if (!zoned)
|
H A D | zfs_ioctl.c | 418 zfs_dozonecheck_impl(const char *dataset, uint64_t zoned, cred_t *cr) argument 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; local 456 if (dsl_prop_get_integer(dataset, "zoned", &zoned, NULL)) 459 return (zfs_dozonecheck_impl(dataset, zoned, cr)); 465 uint64_t zoned; local 531 uint64_t zoned; local 639 uint64_t zoned; local [all...] |
/illumos-gate/usr/src/lib/libzfs/common/ |
H A D | libzfs_dataset.c | 67 static int userquota_propname_decode(const char *propname, boolean_t zoned, 942 uint64_t zoned, zfs_handle_t *zhp, zpool_handle_t *zpool_hdl, 1013 if (userquota_propname_decode(propname, zoned, 1260 * the zoned property value: 1264 * zoned=on mountpoint (no) mountpoint (yes) 1268 * zoned=off mountpoint (yes) N/A 1272 if (zoned) { 1292 * If zoned property is 'off', this must be in 1297 "'zoned' property is set"), propname); 2738 userquota_propname_decode(const char *propname, boolean_t zoned, argument 941 zfs_valid_proplist(libzfs_handle_t *hdl, zfs_type_t type, nvlist_t *nvl, uint64_t zoned, zfs_handle_t *zhp, zpool_handle_t *zpool_hdl, const char *errbuf) argument 3062 check_parents(libzfs_handle_t *hdl, const char *path, uint64_t *zoned, boolean_t accept_ancestor, int *prefixlen) argument 3272 uint64_t zoned; local 3558 uint64_t zoned; local [all...] |
H A D | libzfs_pool.c | 1127 uint64_t zoned; local 1130 zoned = ((nvlist_lookup_string(fsprops, 1135 fsprops, zoned, NULL, NULL, msg)) == NULL) {
|
/illumos-gate/usr/src/cmd/zfs/ |
H A D | zfs_main.c | 5786 uint64_t zoned, canmount; local 5797 zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED); 5799 if (zoned && getzoneid() == GLOBAL_ZONEID) { 5808 } else if (!zoned && getzoneid() != GLOBAL_ZONEID) {
|
Completed in 146 milliseconds