summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2019-10-12 23:40:58 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2019-10-14 15:14:25 +0200
commit6ee83f699b5f3e5ffc09a7264de44425e8634970 (patch)
tree3e31e39f840effb10fb4d0553b6be353ac953748
parentbc35ccd1740a588293b5a2eb5bbe936f837f6c21 (diff)
downloadlvm2-6ee83f699b5f3e5ffc09a7264de44425e8634970.tar.gz
cache: correct condition
-rw-r--r--lib/metadata/cache_manip.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/metadata/cache_manip.c b/lib/metadata/cache_manip.c
index e444e37b7..1a5482b10 100644
--- a/lib/metadata/cache_manip.c
+++ b/lib/metadata/cache_manip.c
@@ -1434,8 +1434,7 @@ int wipe_cache_pool(struct logical_volume *cache_pool_lv)
int r;
/* Only unused cache-pool could be activated and wiped */
- if ((!lv_is_cache_pool(cache_pool_lv) && !lv_is_cache_vol(cache_pool_lv)) ||
- !dm_list_empty(&cache_pool_lv->segs_using_this_lv)) {
+ if (lv_is_used_cache_pool(cache_pool_lv) || lv_is_cache_vol(cache_pool_lv)) {
log_error(INTERNAL_ERROR "Failed to wipe cache pool for volume %s.",
display_lvname(cache_pool_lv));
return 0;