Linux XFS filesystem development
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Hironori Shiina <shiina.hironori@gmail.com>
Cc: linux-xfs@vger.kernel.org, Hironori Shiina <shiina.hironori@fujitsu.com>
Subject: Re: [PATCH] xfs: get root inode correctly at bulkstat
Date: Wed, 21 Dec 2022 08:33:04 -0800	[thread overview]
Message-ID: <Y6M1QGuxmOD5G6vy@magnolia> (raw)
In-Reply-To: <20221221152221.120005-1-shiina.hironori@fujitsu.com>

On Wed, Dec 21, 2022 at 10:22:21AM -0500, Hironori Shiina wrote:
> The root inode number should be set to `breq->startino` for getting stat
> information of the root when XFS_BULK_IREQ_SPECIAL_ROOT is used.
> Otherwise, the inode search is started from 1
> (XFS_BULK_IREQ_SPECIAL_ROOT) and the inode with the lowest number in a
> filesystem is returned.
> 
> Fixes: bf3cb3944792 ("xfs: allow single bulkstat of special inodes")
> Signed-off-by: Hironori Shiina <shiina.hironori@fujitsu.com>

D'oh.  Nobody noticed this because .... the root dir is usually the
first inode in the first inode chunk, and XFS_BULK_IREQ_SPECIAL_ROOT==1,
so that usually lines us up to find the root dir.

Except in that weird case where we format with a big stripe alignment,
mount with zeroed stripe alignment, and then stuff gets allocated before
the ichunk containing the root inode, right?

> ---
>  fs/xfs/xfs_ioctl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c
> index 13f1b2add390..020111f0f2a2 100644
> --- a/fs/xfs/xfs_ioctl.c
> +++ b/fs/xfs/xfs_ioctl.c
> @@ -780,7 +780,7 @@ xfs_bulk_ireq_setup(
>  
>  		switch (hdr->ino) {

I might change @hdr to be a const pointer to prevent further accidents
here when I commit this.

Reviewed-by: Darrick J. Wong <djwong@kernel.org>

--D

>  		case XFS_BULK_IREQ_SPECIAL_ROOT:
> -			hdr->ino = mp->m_sb.sb_rootino;
> +			breq->startino = mp->m_sb.sb_rootino;
>  			break;
>  		default:
>  			return -EINVAL;
> -- 
> 2.38.1
> 

      reply	other threads:[~2022-12-21 16:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-21 15:22 [PATCH] xfs: get root inode correctly at bulkstat Hironori Shiina
2022-12-21 16:33 ` Darrick J. Wong [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=Y6M1QGuxmOD5G6vy@magnolia \
    --to=djwong@kernel.org \
    --cc=linux-xfs@vger.kernel.org \
    --cc=shiina.hironori@fujitsu.com \
    --cc=shiina.hironori@gmail.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