public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: "Nirjhar Roy (IBM)" <nirjhar.roy.lists@gmail.com>
Cc: linux-xfs@vger.kernel.org, ritesh.list@gmail.com,
	ojaswin@linux.ibm.com, hch@infradead.org
Subject: Re: [PATCH v1] xfs: Fix rgcount/rgsize value reported in XFS_IOC_FSGEOMETRY ioctl
Date: Mon, 8 Dec 2025 09:40:05 -0800	[thread overview]
Message-ID: <20251208174005.GT89472@frogsfrogsfrogs> (raw)
In-Reply-To: <50441ebab613e02219545cca9caec58aacf77446.1765206687.git.nirjhar.roy.lists@gmail.com>

On Mon, Dec 08, 2025 at 08:46:11PM +0530, Nirjhar Roy (IBM) wrote:
> With mkfs.xfs -m dir=0 i.e, with XFS_SB_FEAT_INCOMPAT_METADIR
> disabled, number of realtime groups should be reported as 1 and
> the size of it should be equal to total number of realtime
> extents since this the entire realtime filesystem has only 1
> realtime group.

No.  This (pre-metadir realtime having one group encompassing the entire
rt volume) is an implementation detail, not a property of the filesystem
geometry.

Or put another way: a metadir rt filesystem with one rtgroup that covers
the entire rt device is different from a pre-metadir rt filesystem.
xfs_info should present that distinction to userspace, particularly
since xfs_scrub cares about that difference.

--D

> Signed-off-by: Nirjhar Roy (IBM) <nirjhar.roy.lists@gmail.com>
> ---
>  fs/xfs/libxfs/xfs_sb.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/fs/xfs/libxfs/xfs_sb.c b/fs/xfs/libxfs/xfs_sb.c
> index cdd16dd805d7..989553e7ec02 100644
> --- a/fs/xfs/libxfs/xfs_sb.c
> +++ b/fs/xfs/libxfs/xfs_sb.c
> @@ -875,7 +875,7 @@ __xfs_sb_from_disk(
>  	} else {
>  		to->sb_metadirino = NULLFSINO;
>  		to->sb_rgcount = 1;
> -		to->sb_rgextents = 0;
> +		to->sb_rgextents = to->sb_rextents;
>  	}
>  
>  	if (to->sb_features_incompat & XFS_SB_FEAT_INCOMPAT_ZONED) {
> @@ -1586,10 +1586,8 @@ xfs_fs_geometry(
>  
>  	geo->version = XFS_FSOP_GEOM_VERSION_V5;
>  
> -	if (xfs_has_rtgroups(mp)) {
> -		geo->rgcount = sbp->sb_rgcount;
> -		geo->rgextents = sbp->sb_rgextents;
> -	}
> +	geo->rgcount = sbp->sb_rgcount;
> +	geo->rgextents = sbp->sb_rgextents;
>  	if (xfs_has_zoned(mp)) {
>  		geo->rtstart = sbp->sb_rtstart;
>  		geo->rtreserved = sbp->sb_rtreserved;
> -- 
> 2.43.5
> 
> 

  reply	other threads:[~2025-12-08 17:40 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-08 15:16 [PATCH v1] xfs: Fix rgcount/rgsize value reported in XFS_IOC_FSGEOMETRY ioctl Nirjhar Roy (IBM)
2025-12-08 17:40 ` Darrick J. Wong [this message]
2025-12-09  5:35   ` Nirjhar Roy (IBM)
2025-12-09  6:50     ` Darrick J. Wong
2025-12-09 10:23       ` Nirjhar Roy (IBM)
2025-12-09 15:59         ` Darrick J. Wong
2025-12-16  7:50           ` Nirjhar Roy (IBM)
2025-12-16 15:49             ` Darrick J. Wong
2025-12-17  5:42               ` Nirjhar Roy (IBM)

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=20251208174005.GT89472@frogsfrogsfrogs \
    --to=djwong@kernel.org \
    --cc=hch@infradead.org \
    --cc=linux-xfs@vger.kernel.org \
    --cc=nirjhar.roy.lists@gmail.com \
    --cc=ojaswin@linux.ibm.com \
    --cc=ritesh.list@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