Linux XFS filesystem development
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Christoph Hellwig <hch@lst.de>
Cc: linux-xfs@vger.kernel.org, Ian Kent <raven@themaw.net>
Subject: Re: [PATCH 06/12] xfs: rename the m_writeio_* fields in struct xfs_mount
Date: Mon, 28 Oct 2019 10:07:54 -0700	[thread overview]
Message-ID: <20191028170754.GO15222@magnolia> (raw)
In-Reply-To: <20191027145547.25157-7-hch@lst.de>

On Sun, Oct 27, 2019 at 03:55:41PM +0100, Christoph Hellwig wrote:
> Use the allocsize name to match the mount option and usage instead.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Looks ok,
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

--D

> ---
>  fs/xfs/xfs_iomap.c | 16 ++++++++--------
>  fs/xfs/xfs_iops.c  |  2 +-
>  fs/xfs/xfs_mount.c |  8 ++++----
>  fs/xfs/xfs_mount.h |  4 ++--
>  fs/xfs/xfs_super.c |  4 ++--
>  fs/xfs/xfs_trace.h |  2 +-
>  6 files changed, 18 insertions(+), 18 deletions(-)
> 
> diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c
> index 4af50b101d2b..64bd30a24a71 100644
> --- a/fs/xfs/xfs_iomap.c
> +++ b/fs/xfs/xfs_iomap.c
> @@ -29,8 +29,8 @@
>  #include "xfs_reflink.h"
>  
>  
> -#define XFS_WRITEIO_ALIGN(mp,off)	(((off) >> mp->m_writeio_log) \
> -						<< mp->m_writeio_log)
> +#define XFS_ALLOC_ALIGN(mp, off) \
> +	(((off) >> mp->m_allocsize_log) << mp->m_allocsize_log)
>  
>  static int
>  xfs_alert_fsblock_zero(
> @@ -391,7 +391,7 @@ xfs_iomap_prealloc_size(
>  		return 0;
>  
>  	if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE) &&
> -	    (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_writeio_blocks)))
> +	    (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_allocsize_blocks)))
>  		return 0;
>  
>  	/*
> @@ -402,7 +402,7 @@ xfs_iomap_prealloc_size(
>  	    XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_dalign) ||
>  	    !xfs_iext_peek_prev_extent(ifp, icur, &prev) ||
>  	    prev.br_startoff + prev.br_blockcount < offset_fsb)
> -		return mp->m_writeio_blocks;
> +		return mp->m_allocsize_blocks;
>  
>  	/*
>  	 * Determine the initial size of the preallocation. We are beyond the
> @@ -495,10 +495,10 @@ xfs_iomap_prealloc_size(
>  	while (alloc_blocks && alloc_blocks >= freesp)
>  		alloc_blocks >>= 4;
>  check_writeio:
> -	if (alloc_blocks < mp->m_writeio_blocks)
> -		alloc_blocks = mp->m_writeio_blocks;
> +	if (alloc_blocks < mp->m_allocsize_blocks)
> +		alloc_blocks = mp->m_allocsize_blocks;
>  	trace_xfs_iomap_prealloc_size(ip, alloc_blocks, shift,
> -				      mp->m_writeio_blocks);
> +				      mp->m_allocsize_blocks);
>  	return alloc_blocks;
>  }
>  
> @@ -962,7 +962,7 @@ xfs_buffered_write_iomap_begin(
>  			xfs_off_t	end_offset;
>  			xfs_fileoff_t	p_end_fsb;
>  
> -			end_offset = XFS_WRITEIO_ALIGN(mp, offset + count - 1);
> +			end_offset = XFS_ALLOC_ALIGN(mp, offset + count - 1);
>  			p_end_fsb = XFS_B_TO_FSBT(mp, end_offset) +
>  					prealloc_blocks;
>  
> diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c
> index 271fcbe04d48..382d72769470 100644
> --- a/fs/xfs/xfs_iops.c
> +++ b/fs/xfs/xfs_iops.c
> @@ -514,7 +514,7 @@ xfs_stat_blksize(
>  		if (mp->m_swidth)
>  			return mp->m_swidth << mp->m_sb.sb_blocklog;
>  		if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
> -			return 1U << mp->m_writeio_log;
> +			return 1U << mp->m_allocsize_log;
>  	}
>  
>  	return PAGE_SIZE;
> diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
> index 359fcfb494d4..1853797ea938 100644
> --- a/fs/xfs/xfs_mount.c
> +++ b/fs/xfs/xfs_mount.c
> @@ -440,13 +440,13 @@ xfs_set_rw_sizes(xfs_mount_t *mp)
>  	if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE))
>  		writeio_log = XFS_WRITEIO_LOG_LARGE;
>  	else
> -		writeio_log = mp->m_writeio_log;
> +		writeio_log = mp->m_allocsize_log;
>  
>  	if (sbp->sb_blocklog > writeio_log)
> -		mp->m_writeio_log = sbp->sb_blocklog;
> +		mp->m_allocsize_log = sbp->sb_blocklog;
>  	} else
> -		mp->m_writeio_log = writeio_log;
> -	mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
> +		mp->m_allocsize_log = writeio_log;
> +	mp->m_allocsize_blocks = 1 << (mp->m_allocsize_log - sbp->sb_blocklog);
>  }
>  
>  /*
> diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
> index fba818d5c540..109081c16a07 100644
> --- a/fs/xfs/xfs_mount.h
> +++ b/fs/xfs/xfs_mount.h
> @@ -98,8 +98,8 @@ typedef struct xfs_mount {
>  	xfs_agnumber_t		m_agirotor;	/* last ag dir inode alloced */
>  	spinlock_t		m_agirotor_lock;/* .. and lock protecting it */
>  	xfs_agnumber_t		m_maxagi;	/* highest inode alloc group */
> -	uint			m_writeio_log;	/* min write size log bytes */
> -	uint			m_writeio_blocks; /* min write size blocks */
> +	uint			m_allocsize_log;/* min write size log bytes */
> +	uint			m_allocsize_blocks; /* min write size blocks */
>  	struct xfs_da_geometry	*m_dir_geo;	/* directory block geometry */
>  	struct xfs_da_geometry	*m_attr_geo;	/* attribute block geometry */
>  	struct xlog		*m_log;		/* log specific stuff */
> diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
> index a477348ab68b..d1a0958f336d 100644
> --- a/fs/xfs/xfs_super.c
> +++ b/fs/xfs/xfs_super.c
> @@ -405,7 +405,7 @@ xfs_parseargs(
>  		}
>  
>  		mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
> -		mp->m_writeio_log = iosizelog;
> +		mp->m_allocsize_log = iosizelog;
>  	}
>  
>  	return 0;
> @@ -456,7 +456,7 @@ xfs_showargs(
>  
>  	if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
>  		seq_printf(m, ",allocsize=%dk",
> -				(int)(1 << mp->m_writeio_log) >> 10);
> +				(int)(1 << mp->m_allocsize_log) >> 10);
>  
>  	if (mp->m_logbufs > 0)
>  		seq_printf(m, ",logbufs=%d", mp->m_logbufs);
> diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h
> index 926f4d10dc02..c13bb3655e48 100644
> --- a/fs/xfs/xfs_trace.h
> +++ b/fs/xfs/xfs_trace.h
> @@ -725,7 +725,7 @@ TRACE_EVENT(xfs_iomap_prealloc_size,
>  		__entry->writeio_blocks = writeio_blocks;
>  	),
>  	TP_printk("dev %d:%d ino 0x%llx prealloc blocks %llu shift %d "
> -		  "m_writeio_blocks %u",
> +		  "m_allocsize_blocks %u",
>  		  MAJOR(__entry->dev), MINOR(__entry->dev), __entry->ino,
>  		  __entry->blocks, __entry->shift, __entry->writeio_blocks)
>  )
> -- 
> 2.20.1
> 

  reply	other threads:[~2019-10-28 17:08 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-27 14:55 decruft misc mount related code v2 Christoph Hellwig
2019-10-27 14:55 ` [PATCH 01/12] xfs: remove the biosize mount option Christoph Hellwig
2019-10-27 14:55 ` [PATCH 02/12] xfs: remove the dsunit and dswidth variables in xfs_parseargs Christoph Hellwig
2019-10-28 16:50   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 03/12] xfs: cleanup calculating the stat optimal I/O size Christoph Hellwig
2019-10-28 16:50   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 04/12] xfs: don't use a different allocsice for -o wsync mounts Christoph Hellwig
2019-10-28 17:05   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 05/12] xfs: remove the m_readio_* fields in struct xfs_mount Christoph Hellwig
2019-10-28 17:06   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 06/12] xfs: rename the m_writeio_* " Christoph Hellwig
2019-10-28 17:07   ` Darrick J. Wong [this message]
2019-10-27 14:55 ` [PATCH 07/12] xfs: simplify parsing of allocsize mount option Christoph Hellwig
2019-10-28 17:11   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 08/12] xfs: rename the XFS_MOUNT_DFLT_IOSIZE option to XFS_MOUNT_ALLOCISZE Christoph Hellwig
2019-10-28 17:12   ` Darrick J. Wong
2019-10-29  7:50     ` Christoph Hellwig
2019-10-27 14:55 ` [PATCH 09/12] xfs: reverse the polarity of XFS_MOUNT_COMPAT_IOSIZE Christoph Hellwig
2019-10-28 17:13   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 10/12] xfs: clean up printing the allocsize option in xfs_showargs Christoph Hellwig
2019-10-28 17:13   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 11/12] xfs: clean up printing inode32/64 " Christoph Hellwig
2019-10-28 17:14   ` Darrick J. Wong
2019-10-27 14:55 ` [PATCH 12/12] xfs: merge xfs_showargs into xfs_fs_show_options Christoph Hellwig
2019-10-28 17:14   ` Darrick J. Wong

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=20191028170754.GO15222@magnolia \
    --to=darrick.wong@oracle.com \
    --cc=hch@lst.de \
    --cc=linux-xfs@vger.kernel.org \
    --cc=raven@themaw.net \
    /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