| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| 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)
|
| zfs_ioctl.c | 444 zfs_dozonecheck_impl(const char *dataset, uint64_t zoned, cred_t *cr) 458 * If the fs is zoned, only root can access it from the 461 if (secpolicy_zfs(cr) && zoned) 465 * If we are in a local zone, the 'zoned' property must be set. 467 if (!zoned) 480 uint64_t zoned; local 483 zoned = 0; 485 if (dsl_prop_get_integer(dataset, "jailed", &zoned, NULL)) 489 return (zfs_dozonecheck_impl(dataset, zoned, cr)); 495 uint64_t zoned; local 566 uint64_t zoned; local 675 uint64_t zoned; local [all...] |
| dsl_dir.c | 704 uint64_t zoned; local 733 if (dsl_prop_get_ds(ds, "zoned", 8, 1, &zoned, NULL) || zoned) { 734 /* Only root can access zoned fs's from the GZ */
|
| zfs_vfsops.c | 1689 * zoned property is off), the label must be default or 1694 uint64_t zoned; local 1699 zfs_prop_to_name(ZFS_PROP_ZONED), &zoned, NULL)) 1701 if (!zoned)
|
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_dataset.c | 65 static int userquota_propname_decode(const char *propname, boolean_t zoned, 864 uint64_t zoned, zfs_handle_t *zhp, zpool_handle_t *zpool_hdl, 935 if (userquota_propname_decode(propname, zoned, 1188 * the zoned property value: 1192 * zoned=on mountpoint (no) mountpoint (yes) 1196 * zoned=off mountpoint (yes) N/A 1200 if (zoned) { 1220 * If zoned property is 'off', this must be in 1225 "'zoned' property is set"), propname); 2687 userquota_propname_decode(const char *propname, boolean_t zoned, 3225 uint64_t zoned; local 3511 uint64_t zoned; local [all...] |
| libzfs_pool.c | 1127 uint64_t zoned; local 1130 zoned = ((nvlist_lookup_string(fsprops, 1135 fsprops, zoned, NULL, NULL, msg)) == NULL) {
|
| /src/external/cddl/osnet/dist/cmd/zfs/ |
| zfs_main.c | 5852 uint64_t zoned, canmount; local 5863 zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED); 5865 if (zoned && getzoneid() == GLOBAL_ZONEID) { 5874 } else if (!zoned && getzoneid() != GLOBAL_ZONEID) {
|