From: Jianhong Yin <jiyin@redhat.com>
To: sandeen@redhat.com
Cc: linux-xfs@vger.kernel.org, Jianhong Yin <yin-jianhong@163.com>
Subject: Re: [PATCH] [xfs_db:type] do nothing if 'current type' == 'the requested type'
Date: Mon, 17 Aug 2020 23:25:44 -0400 (EDT) [thread overview]
Message-ID: <1538111614.12358313.1597721144157.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <16bf0257-dbfa-ff0a-cb96-b247acadb2ef@redhat.com>
----- 原始邮件 -----
> 发件人: "Eric Sandeen" <esandeen@redhat.com>
> 收件人: "Jianhong Yin" <jiyin@redhat.com>, linux-xfs@vger.kernel.org
> 抄送: "Jianhong Yin" <yin-jianhong@163.com>
> 发送时间: 星期二, 2020年 8 月 18日 上午 4:33:15
> 主题: Re: [PATCH] [xfs_db:type] do nothing if 'current type' == 'the requested type'
>
> On 8/17/20 4:00 AM, Jianhong Yin wrote:
> > From: Jianhong Yin <yin-jianhong@163.com>
> >
> > for power saving and also as a workaround of below issue:
> >> xfs_db -r /dev/vda3 -c "inode 132" -c "type inode" -c "inode"
> >> current inode number is 128
> >
> > Reported-by: Jianhong Yin <jiyin@redhat.com>
> > Suggested-by: Eric Sandeen <esandeen@redhat.com>
> > Tested-by: Jianhong Yin <yin-jianhong@163.com>
> > Signed-off-by: Jianhong Yin <yin-jianhong@163.com>
> > ---
> > db/type.c | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/db/type.c b/db/type.c
> > index 3cb1e868..679de1b0 100644
> > --- a/db/type.c
> > +++ b/db/type.c
> > @@ -213,6 +213,9 @@ type_f(
> >
> >
> > } else {
> > + if (cur_typ != NULL && strcmp(cur_typ->name, argv[1]) == 0)
> > + return 0;
> > +
> > tt = findtyp(argv[1]);
> > if (tt == NULL) {
> > dbprintf(_("no such type %s\n"), argv[1]);
>
> Thanks for this - I had a patch on my stack to do the same thing,
> but did I it this way:
>
> diff --git a/db/type.c b/db/type.c
> index 3cb1e868..5433bcfb 100644
> --- a/db/type.c
> +++ b/db/type.c
> @@ -219,6 +219,8 @@ type_f(
> } else {
> if (iocur_top->typ == NULL)
> dbprintf(_("no current object\n"));
> + else if (iocur_top->typ == tt)
> + return 0;
> else {
> cur_typ = tt;
> set_iocur_type(tt);
>
> which I guess I like a little better than using strcmp on the argument...
> it compares the type structure directly, rather than comparing the names.
Good to know that :)
I just thought that 'tt' is also come from findtyp()->forearch:strcmp(argv,)
and it could save more cpu instructions if compare before findtyp().
but seems I forgot that findtyp() is always needed if curtyp != requested type
"Premature optimization is the root of all evil" ...
Thanks
Jianhong
>
> -Eric
>
prev parent reply other threads:[~2020-08-18 3:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20200817090048.17991-1-jiyin@redhat.com>
2020-08-17 20:33 ` [PATCH] [xfs_db:type] do nothing if 'current type' == 'the requested type' Eric Sandeen
2020-08-18 3:25 ` Jianhong Yin [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=1538111614.12358313.1597721144157.JavaMail.zimbra@redhat.com \
--to=jiyin@redhat.com \
--cc=linux-xfs@vger.kernel.org \
--cc=sandeen@redhat.com \
--cc=yin-jianhong@163.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox