Lines Matching refs:config
202 check_status(nvlist_t *config, boolean_t isimport, zpool_errata_t *erratap) in check_status() argument
216 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION, in check_status()
218 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, in check_status()
222 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_STATE, in check_status()
242 nvinfo = fnvlist_lookup_nvlist(config, ZPOOL_CONFIG_LOAD_INFO); in check_status()
257 (void) nvlist_lookup_uint64(config, ZPOOL_CONFIG_HOSTID, &hostid); in check_status()
276 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_LOAD_INFO, in check_status()
293 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_SUSPENDED, in check_status()
297 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_SUSPENDED_REASON, in check_status()
340 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_ERRCOUNT, in check_status()
376 (void) nvlist_lookup_uint64(config, ZPOOL_CONFIG_ERRATA, &errata); in check_status()
396 feat = fnvlist_lookup_nvlist(config, in check_status()
402 feat = fnvlist_lookup_nvlist(config, in check_status()
430 zpool_import_status(nvlist_t *config, char **msgid, zpool_errata_t *errata) in zpool_import_status() argument
432 zpool_status_t ret = check_status(config, B_TRUE, errata); in zpool_import_status()