From: zkabelac@sourceware.org <zkabelac@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 tools/toollib.c ./WHATS_NEW
Date: 19 May 2011 13:59:25 -0000 [thread overview]
Message-ID: <20110519135925.25029.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: zkabelac at sourceware.org 2011-05-19 13:59:23
Modified files:
tools : toollib.c
. : WHATS_NEW
Log message:
Do not log a superfluous stack message when the lv is properly processed
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/toollib.c.diff?cvsroot=lvm2&r1=1.225&r2=1.226
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1989&r2=1.1990
--- LVM2/tools/toollib.c 2011/03/11 14:56:56 1.225
+++ LVM2/tools/toollib.c 2011/05/19 13:59:22 1.226
@@ -351,12 +351,14 @@
ret = process_each_lv_in_vg(cmd, cvl_vg->vg, &lvnames,
tags_arg, &failed_lvnames,
handle, process_single_lv);
- if (ret != ECMD_PROCESSED ||
- dm_list_empty(&failed_lvnames)) {
+ if (ret != ECMD_PROCESSED) {
stack;
break;
}
+ if (dm_list_empty(&failed_lvnames))
+ break;
+
/* Try again with failed LVs in this VG */
dm_list_init(&lvnames);
dm_list_splice(&lvnames, &failed_lvnames);
--- LVM2/WHATS_NEW 2011/05/12 12:42:47 1.1989
+++ LVM2/WHATS_NEW 2011/05/19 13:59:23 1.1990
@@ -1,5 +1,6 @@
Version 2.02.86 -
=================================
+ Do not log a superfluous stack message when the lv is properly processed.
Do not issue an error message when unable to remove .cache on read-only fs.
Avoid memlock size mismatch by preallocating stdio line buffers.
Reorganize lvconvert --repair code to allow reuse.
reply other threads:[~2011-05-19 13:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20110519135925.25029.qmail@sourceware.org \
--to=zkabelac@sourceware.org \
--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.