public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: chandan.babu@oracle.com, linux-xfs@vger.kernel.org
Subject: Re: [PATCH] xfs: fix rtalloc rotoring when delalloc is in use
Date: Mon, 8 Jul 2024 10:24:19 -0700	[thread overview]
Message-ID: <20240708172419.GL612460@frogsfrogsfrogs> (raw)
In-Reply-To: <20240708120257.2760160-1-hch@lst.de>

On Mon, Jul 08, 2024 at 02:02:57PM +0200, Christoph Hellwig wrote:
> If we're trying to allocate real space for a delalloc reservation at
> offset 0, we should use the rotor to spread files across the rt volume.
> 
> Switch the rtalloc to use the XFS_ALLOC_INITIAL_USER_DATA flag that
> is set for any write at startoff to make it match the behavior for
> the main data device.
> 
> Based on a patch from Darrick J. Wong.
> 
> Fixes: 6a94b1acda7e ("xfs: reinstate delalloc for RT inodes (if sb_rextsize == 1)")
> Repored-by: Darrick J. Wong <djwong@kernel.org>

  Reported-by:

> Signed-off-by: Christoph Hellwig <hch@lst.de>

With that fixed,
Reviewed-by: Darrick J. Wong <djwong@kernel.org>

--D

> ---
>  fs/xfs/xfs_rtalloc.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c
> index 5a7ddfed1bb855..0c3e96c621a672 100644
> --- a/fs/xfs/xfs_rtalloc.c
> +++ b/fs/xfs/xfs_rtalloc.c
> @@ -12,6 +12,7 @@
>  #include "xfs_bit.h"
>  #include "xfs_mount.h"
>  #include "xfs_inode.h"
> +#include "xfs_alloc.h"
>  #include "xfs_bmap.h"
>  #include "xfs_bmap_btree.h"
>  #include "xfs_bmap_util.h"
> @@ -1382,7 +1383,7 @@ xfs_bmap_rtalloc(
>  		start = 0;
>  	} else if (xfs_bmap_adjacent(ap)) {
>  		start = xfs_rtb_to_rtx(mp, ap->blkno);
> -	} else if (ap->eof && ap->offset == 0) {
> +	} else if (ap->datatype & XFS_ALLOC_INITIAL_USER_DATA) {
>  		/*
>  		 * If it's an allocation to an empty file at offset 0, pick an
>  		 * extent that will space things out in the rt area.
> -- 
> 2.43.0
> 
> 

      reply	other threads:[~2024-07-08 17:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-08 12:02 [PATCH] xfs: fix rtalloc rotoring when delalloc is in use Christoph Hellwig
2024-07-08 17:24 ` 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=20240708172419.GL612460@frogsfrogsfrogs \
    --to=djwong@kernel.org \
    --cc=chandan.babu@oracle.com \
    --cc=hch@lst.de \
    --cc=linux-xfs@vger.kernel.org \
    /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