mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-23 02:44:41 +03:00
3422 zpool create/syseventd race yield non-importable pool 3425 first write to a new zvol can fail with EFBIG Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Matthew Ahrens <mahrens@delphix.com> Approved by: Garrett D'Amore <garrett@damore.org> References: illumos/illumos-gate@bda8819455 https://www.illumos.org/issues/3422 https://www.illumos.org/issues/3425 Ported-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #1390
This commit is contained in:
committed by
Brian Behlendorf
parent
9d248f73a4
commit
295304bed6
@@ -523,13 +523,12 @@ get_configs(libzfs_handle_t *hdl, pool_list_t *pl, boolean_t active_ok)
|
||||
* version
|
||||
* pool guid
|
||||
* name
|
||||
* pool txg (if available)
|
||||
* comment (if available)
|
||||
* pool state
|
||||
* hostid (if available)
|
||||
* hostname (if available)
|
||||
*/
|
||||
uint64_t state, version, pool_txg;
|
||||
uint64_t state, version;
|
||||
char *comment = NULL;
|
||||
|
||||
version = fnvlist_lookup_uint64(tmp,
|
||||
@@ -545,11 +544,6 @@ get_configs(libzfs_handle_t *hdl, pool_list_t *pl, boolean_t active_ok)
|
||||
fnvlist_add_string(config,
|
||||
ZPOOL_CONFIG_POOL_NAME, name);
|
||||
|
||||
if (nvlist_lookup_uint64(tmp,
|
||||
ZPOOL_CONFIG_POOL_TXG, &pool_txg) == 0)
|
||||
fnvlist_add_uint64(config,
|
||||
ZPOOL_CONFIG_POOL_TXG, pool_txg);
|
||||
|
||||
if (nvlist_lookup_string(tmp,
|
||||
ZPOOL_CONFIG_COMMENT, &comment) == 0)
|
||||
fnvlist_add_string(config,
|
||||
|
||||
Reference in New Issue
Block a user