linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xfs: get root inode correctly at bulkstat
@ 2022-12-21 15:22 Hironori Shiina
  2022-12-21 16:33 ` Darrick J. Wong
  0 siblings, 1 reply; 2+ messages in thread
From: Hironori Shiina @ 2022-12-21 15:22 UTC (permalink / raw)
  To: linux-xfs; +Cc: Hironori Shiina

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>
---
 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) {
 		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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] xfs: get root inode correctly at bulkstat
  2022-12-21 15:22 [PATCH] xfs: get root inode correctly at bulkstat Hironori Shiina
@ 2022-12-21 16:33 ` Darrick J. Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Darrick J. Wong @ 2022-12-21 16:33 UTC (permalink / raw)
  To: Hironori Shiina; +Cc: linux-xfs, Hironori Shiina

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
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-12-21 16:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-21 15:22 [PATCH] xfs: get root inode correctly at bulkstat Hironori Shiina
2022-12-21 16:33 ` Darrick J. Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).