Lines Matching defs:fsname

1237 		char fsname[ZFS_MAX_DATASET_NAME_LEN];
1238 error = dmu_fsname(nvpair_name(pair), fsname);
1241 error = zfs_secpolicy_write_perms(fsname,
1258 char fsname[ZFS_MAX_DATASET_NAME_LEN];
1259 error = dmu_fsname(nvpair_name(pair), fsname);
1262 error = zfs_secpolicy_write_perms(fsname,
2639 zfs_check_userprops(const char *fsname, nvlist_t *nvl)
2651 if (error = zfs_secpolicy_write_perms(fsname,
3171 zfs_ioc_create(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
3199 if (strchr(fsname, '@') ||
3200 strchr(fsname, '%'))
3242 error = zfs_fill_zplprops(fsname, nvprops,
3250 error = dmu_objset_create(fsname, type,
3258 error = zfs_set_prop_nvlist(fsname, ZPROP_SRC_LOCAL,
3261 (void) dsl_destroy_head(fsname);
3275 zfs_ioc_clone(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
3285 if (strchr(fsname, '@') ||
3286 strchr(fsname, '%'))
3291 error = dmu_objset_clone(fsname, origin_name);
3299 error = zfs_set_prop_nvlist(fsname, ZPROP_SRC_LOCAL,
3302 (void) dsl_destroy_head(fsname);
3461 zfs_destroy_unmount_origin(const char *fsname)
3467 error = dmu_objset_hold(fsname, FTAG, &os);
3559 zfs_ioc_get_bookmarks(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
3561 return (dsl_get_bookmarks(fsname, innvl, outnvl));
3633 * fsname is name of dataset to rollback (to most recent snapshot)
3642 zfs_ioc_rollback(const char *fsname, nvlist_t *args, nvlist_t *outnvl)
3647 if (getzfsvfs(fsname, &zfsvfs) == 0) {
3655 error = dsl_dataset_rollback(fsname, zfsvfs, outnvl);
3661 error = dsl_dataset_rollback(fsname, NULL, outnvl);
3667 recursive_unmount(const char *fsname, void *arg)
3672 (void) snprintf(fullname, sizeof (fullname), "%s@%s", fsname, snapname);