From: Mike Snitzer <snitzer@redhat.com>
To: lvm-devel@redhat.com
Subject: LVM2 ./WHATS_NEW tools/toollib.c
Date: Fri, 23 Apr 2010 14:19:47 -0400 [thread overview]
Message-ID: <20100423181947.GA8698@redhat.com> (raw)
In-Reply-To: <20100423153929.GA26872@redhat.com>
On Fri, Apr 23 2010 at 11:39am -0400,
Mike Snitzer <snitzer@redhat.com> wrote:
> On Tue, Apr 13 2010 at 10:19pm -0400,
> agk at sourceware.org <agk@sourceware.org> wrote:
>
> > CVSROOT: /cvs/lvm2
> > Module name: LVM2
> > Changes by: agk at sourceware.org 2010-04-14 02:19:49
> >
> > Modified files:
> > . : WHATS_NEW
> > tools : toollib.c
> >
> > Log message:
> > Only pass visible LVs to tools in cmdline VG name/tag expansions without -a
> >
> > Patches:
> > http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1516&r2=1.1517
> > http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/toollib.c.diff?cvsroot=lvm2&r1=1.193&r2=1.194
> >
> > --- LVM2/WHATS_NEW 2010/04/13 23:57:41 1.1516
> > +++ LVM2/WHATS_NEW 2010/04/14 02:19:49 1.1517
> > @@ -1,5 +1,6 @@
> > Version 2.02.63 -
> > ================================
> > + Only pass visible LVs to tools in cmdline VG name/tag expansions without -a.
> > Use typedefs for toollib process_each functions.
> > Use C locales and use_mlockall for clvmd.
> > Refactor code related to vg->pvs list and add pv->vg link.
> > --- LVM2/tools/toollib.c 2010/04/13 23:57:41 1.193
> > +++ LVM2/tools/toollib.c 2010/04/14 02:19:49 1.194
> > @@ -125,6 +125,13 @@
> > if (lv_is_virtual_origin(lvl->lv) && !arg_count(cmd, all_ARG))
> > continue;
> >
> > + /*
> > + * Only let hidden LVs through it --all was used or the LVs
> > + * were specifically named on the command line.
> > + */
> > + if (!lvargs_supplied && !lv_is_visible(lvl->lv) && !arg_count(cmd, all_ARG))
> > + continue;
> > +
> > /* Should we process this LV? */
> > if (process_all)
> > process_lv = 1;
>
> Given that you've now made this check at a higher level I believe the
> following check in _lvs_single() is redundant. It also serves to
> disallow displaying hidden LVs that were specifically named on the
> command line:
After further testing I'm completely confident that this is the case; so
I'm going to go ahead and commit this patch.
> diff --git a/tools/reporter.c b/tools/reporter.c
> index bd3c116..1332cc3 100644
> --- a/tools/reporter.c
> +++ b/tools/reporter.c
> @@ -33,9 +33,6 @@ static int _vgs_single(struct cmd_context *cmd __attribute((unused)),
> static int _lvs_single(struct cmd_context *cmd, struct logical_volume *lv,
> void *handle)
> {
> - if (!arg_count(cmd, all_ARG) && !lv_is_visible(lv))
> - return ECMD_PROCESSED;
> -
> if (!report_object(handle, lv->vg, lv, NULL, NULL, NULL)) {
> stack;
> return ECMD_FAILED;
>
next prev parent reply other threads:[~2010-04-23 18:19 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-14 2:19 LVM2 ./WHATS_NEW tools/toollib.c agk
2010-04-23 15:39 ` Mike Snitzer
2010-04-23 18:19 ` Mike Snitzer [this message]
2010-04-23 18:49 ` Alasdair G Kergon
-- strict thread matches above, loose matches on Subject: below --
2012-01-25 21:52 zkabelac
2011-11-18 19:19 zkabelac
2011-02-18 15:02 zkabelac
2010-11-23 20:39 zkabelac
2010-05-21 14:15 zkabelac
2010-05-21 14:11 zkabelac
2010-05-21 12:19 zkabelac
2009-11-24 16:13 mbroz
2009-09-29 20:33 agk
2009-08-24 11:37 mbroz
2009-07-21 11:10 agk
2009-05-27 13:23 agk
2009-04-10 9:54 mbroz
2008-06-10 15:25 wysochanski
2008-02-06 16:09 agk
2008-01-03 19:03 agk
2007-09-11 20:12 meyering
2007-07-10 17:51 agk
2006-10-24 18:25 agk
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=20100423181947.GA8698@redhat.com \
--to=snitzer@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.