From: Zdenek Kabelac <zkabelac@redhat.com>
To: lvm-devel@redhat.com
Subject: [PATCH] Print less scary message if pvmove already finished.
Date: Thu, 20 Jan 2011 11:34:46 +0100 [thread overview]
Message-ID: <4D380FC6.2020101@redhat.com> (raw)
In-Reply-To: <1295476632-9949-1-git-send-email-mbroz@redhat.com>
Dne 19.1.2011 23:37, Milan Broz napsal(a):
> If other process finishes (ar aborts) pvmove operation and
> polling function cannot find any lv with PVMOVE flag return
> success and do not print "aborting" message.
>
> Fixes https://bugzilla.redhat.com/show_bug.cgi?id=602389
> ---
> tools/polldaemon.c | 12 ++++++++++--
> 1 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/tools/polldaemon.c b/tools/polldaemon.c
> index aac9c17..fdb3edd 100644
> --- a/tools/polldaemon.c
> +++ b/tools/polldaemon.c
> @@ -193,8 +193,16 @@ static int _wait_for_single_lv(struct cmd_context *cmd, const char *name, const
> return 0;
> }
>
> - if (!(lv = parms->poll_fns->get_copy_lv(cmd, vg, name, uuid,
> - parms->lv_type))) {
> + lv = parms->poll_fns->get_copy_lv(cmd, vg, name, uuid, parms->lv_type);
> +
> + if (!lv && parms->lv_type == PVMOVE) {
> + log_print("%s: pvmove finished or aborted by other process.",
> + name);
> + unlock_and_free_vg(cmd, vg, vg->name);
> + return 1;
> + }
> +
> + if (!lv) {
> log_error("ABORTING: Can't find LV in %s for %s",
> vg->name, name);
> unlock_and_free_vg(cmd, vg, vg->name);
I would move it into the same 'if (!lv)'
and just add a sub if for if (parms->...) { }
Zdenek
prev parent reply other threads:[~2011-01-20 10:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-19 22:37 [PATCH] Print less scary message if pvmove already finished Milan Broz
2011-01-20 10:34 ` Zdenek Kabelac [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D380FC6.2020101@redhat.com \
--to=zkabelac@redhat.com \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.