diff options
author | Zdenek Kabelac <zkabelac@redhat.com> | 2020-04-08 11:46:42 +0200 |
---|---|---|
committer | Zdenek Kabelac <zkabelac@redhat.com> | 2020-04-08 15:22:44 +0200 |
commit | 98e33ee3fbce8c43c312a2e6b8e42cddb3e6874c (patch) | |
tree | c53234a345a014261c8645d367238e3577a449ac | |
parent | 06cbe3cfc6958b016d97243b807aaf29b9908b23 (diff) | |
download | lvm2-98e33ee3fbce8c43c312a2e6b8e42cddb3e6874c.tar.gz |
lvconvert: no validation for thin-pools not used by lvm2
lvm2 supports thin-pool to be later used by other tools doing
virtual volumes themself (i.e. docker) - in this case we
shall not validate transaction Id - is this is used by
other tools and lvm2 keeps value 0 - so the transationId
validation need to be skipped in this case.
-rw-r--r-- | tools/lvconvert.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lvconvert.c b/tools/lvconvert.c index f6d9a29f6..bb40930cb 100644 --- a/tools/lvconvert.c +++ b/tools/lvconvert.c @@ -2388,7 +2388,8 @@ static int _lvconvert_thin_pool_repair(struct cmd_context *cmd, goto deactivate_mlv; } - if (thin_dump[0]) { + /* Check matching transactionId when thin-pool is used by lvm2 (transactionId != 0) */ + if (first_seg(pool_lv)->transaction_id && thin_dump[0]) { argv[0] = thin_dump; argv[1] = pms_path; argv[2] = NULL; |