public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Eric Sandeen <esandeen@redhat.com>
To: Jianhong Yin <jiyin@redhat.com>, linux-xfs@vger.kernel.org
Cc: 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 15:33:15 -0500	[thread overview]
Message-ID: <16bf0257-dbfa-ff0a-cb96-b247acadb2ef@redhat.com> (raw)
In-Reply-To: <20200817090048.17991-1-jiyin@redhat.com>

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.

-Eric


       reply	other threads:[~2020-08-17 20:33 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 ` Eric Sandeen [this message]
2020-08-18  3:25   ` [PATCH] [xfs_db:type] do nothing if 'current type' == 'the requested type' Jianhong Yin

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=16bf0257-dbfa-ff0a-cb96-b247acadb2ef@redhat.com \
    --to=esandeen@redhat.com \
    --cc=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