* dev-next - thin: ignore parallel merge while polling
@ 2021-03-22 15:39 David Teigland
0 siblings, 0 replies; only message in thread
From: David Teigland @ 2021-03-22 15:39 UTC (permalink / raw)
To: lvm-devel
Gitweb: https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=a60c8748eac2e6f047532b6d106492d120860608
Commit: a60c8748eac2e6f047532b6d106492d120860608
Parent: 8cbe4a171e093aa7de9e16115b13ee3852545d07
Author: Zdenek Kabelac <zkabelac@redhat.com>
AuthorDate: Wed Mar 17 11:17:32 2021 +0100
Committer: Zdenek Kabelac <zkabelac@redhat.com>
CommitterDate: Thu Mar 18 18:34:57 2021 +0100
thin: ignore parallel merge while polling
If the thin volume has no merging snapshot,
(being already merged) there is nothing to check.
---
tools/lvconvert_poll.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tools/lvconvert_poll.c b/tools/lvconvert_poll.c
index b64cffe21..50d47164f 100644
--- a/tools/lvconvert_poll.c
+++ b/tools/lvconvert_poll.c
@@ -179,7 +179,10 @@ progress_t poll_thin_merge_progress(struct cmd_context *cmd,
{
uint32_t device_id = 0;
- if (!lv_thin_device_id(lv, &device_id) || !lv->snapshot) {
+ if (!lv->snapshot)
+ return PROGRESS_FINISHED_ALL; /* Already merged by someone else */
+
+ if (!lv_thin_device_id(lv, &device_id)) {
stack;
return PROGRESS_CHECK_FAILED;
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-03-22 15:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-22 15:39 dev-next - thin: ignore parallel merge while polling David Teigland
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.