text stringlengths 0 14.1k |
|---|
""property '%s' not supported on "" |
""EFI labeled devices""), propname); |
(void) zfs_error(hdl, EZFS_POOL_NOTSUP, errbuf); |
zpool_close(zhp); |
goto error; |
}*/ |
zpool_close(zhp); |
break; |
case ZPOOL_PROP_ALTROOT: |
if (!create_or_import) { |
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, |
""property '%s' can only be set during pool "" |
""creation or import""), propname); |
(void) zfs_error(hdl, EZFS_BADPROP, errbuf); |
goto error; |
} |
if (strval[0] != '/') { |
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, |
""bad alternate root '%s'""), strval); |
(void) zfs_error(hdl, EZFS_BADPATH, errbuf); |
goto error; |
} |
break; |
case ZPOOL_PROP_CACHEFILE: |
if (strval[0] == '\0') |
break; |
if (strcmp(strval, ""none"") == 0) |
break; |
if (strval[0] != '/') { |
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, |
""property '%s' must be empty, an "" |
""absolute path, or 'none'""), propname); |
(void) zfs_error(hdl, EZFS_BADPATH, errbuf); |
goto error; |
} |
slash = strrchr(strval, '/'); |
if (slash[1] == '\0' || strcmp(slash, ""/."") == 0 || |
strcmp(slash, ""/.."") == 0) { |
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, |
""'%s' is not a valid file""), strval); |
(void) zfs_error(hdl, EZFS_BADPATH, errbuf); |
goto error; |
} |
*slash = '\0'; |
if (strval[0] != '\0' && |
(stat64(strval, &statbuf) != 0 || |
!S_ISDIR(statbuf.st_mode))) { |
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, |
""'%s' is not a valid directory""), |
strval); |
(void) zfs_error(hdl, EZFS_BADPATH, errbuf); |
goto error; |
} |
*slash = '/'; |
break; |
} |
} |
return (retprops); |
error: |
nvlist_free(retprops); |
return (NULL); |
} |
/* |
* Set zpool property : propname=propval. |
*/ |
int |
zpool_set_prop(zpool_handle_t *zhp, const char *propname, const char *propval) |
{ |
zfs_cmd_t zc = { 0 }; |
int ret = -1; |
char errbuf[1024]; |
nvlist_t *nvl = NULL; |
nvlist_t *realprops; |
uint64_t version; |
(void) snprintf(errbuf, sizeof (errbuf), |
dgettext(TEXT_DOMAIN, ""cannot set property for '%s'""), |
zhp->zpool_name); |
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0) |
return (no_memory(zhp->zpool_hdl)); |
if (nvlist_add_string(nvl, propname, propval) != 0) { |
nvlist_free(nvl); |
return (no_memory(zhp->zpool_hdl)); |
} |
version = zpool_get_prop_int(zhp, ZPOOL_PROP_VERSION, NULL); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.