public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Brian Foster <bfoster@redhat.com>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: guaneryu@gmail.com, linux-xfs@vger.kernel.org,
	fstests@vger.kernel.org, guan@eryu.me
Subject: Re: [PATCH 1/1] xfs/23[12]: abstractify the XFS cow prealloc trimming interval
Date: Wed, 31 Mar 2021 13:43:31 -0400	[thread overview]
Message-ID: <YGS0w5QePsZeYAKZ@bfoster> (raw)
In-Reply-To: <161715294506.2704105.18365101912825541162.stgit@magnolia>

On Tue, Mar 30, 2021 at 06:09:05PM -0700, Darrick J. Wong wrote:
> From: Darrick J. Wong <djwong@kernel.org>
> 
> Create a couple of helper functions to get and set the XFS copy on write
> preallocation garbage collection interval.
> 
> Signed-off-by: Darrick J. Wong <djwong@kernel.org>
> ---

Seems reasonable:

Reviewed-by: Brian Foster <bfoster@redhat.com>

>  common/xfs    |   23 +++++++++++++++++++++++
>  tests/xfs/231 |   13 +++++++------
>  tests/xfs/232 |   13 +++++++------
>  3 files changed, 37 insertions(+), 12 deletions(-)
> 
> 
> diff --git a/common/xfs b/common/xfs
> index c430b3ac..ade76d5a 100644
> --- a/common/xfs
> +++ b/common/xfs
> @@ -1165,3 +1165,26 @@ _require_xfs_scratch_bigtime()
>  		_notrun "bigtime feature not advertised on mount?"
>  	_scratch_unmount
>  }
> +
> +__xfs_cowgc_interval_knob1="/proc/sys/fs/xfs/speculative_cow_prealloc_lifetime"
> +__xfs_cowgc_interval_knob2="/proc/sys/fs/xfs/speculative_prealloc_lifetime"
> +
> +_xfs_set_cowgc_interval() {
> +	if [ -w $__xfs_cowgc_interval_knob1 ]; then
> +		echo "$@" > $__xfs_cowgc_interval_knob1
> +	elif [ -w $__xfs_cowgc_interval_knob2 ]; then
> +		echo "$@" > $__xfs_cowgc_interval_knob2
> +	else
> +		_fail "Can't find cowgc interval procfs knob?"
> +	fi
> +}
> +
> +_xfs_get_cowgc_interval() {
> +	if [ -w $__xfs_cowgc_interval_knob1 ]; then
> +		cat $__xfs_cowgc_interval_knob1
> +	elif [ -w $__xfs_cowgc_interval_knob2 ]; then
> +		cat $__xfs_cowgc_interval_knob2
> +	else
> +		_fail "Can't find cowgc interval procfs knob?"
> +	fi
> +}
> diff --git a/tests/xfs/231 b/tests/xfs/231
> index 5930339d..119a71bb 100755
> --- a/tests/xfs/231
> +++ b/tests/xfs/231
> @@ -22,9 +22,10 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
>  
>  _cleanup()
>  {
> -    cd /
> -    echo $old_cow_lifetime > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
> -    rm -rf $tmp.*
> +	cd /
> +	test -n "$old_cowgc_interval" && \
> +		_xfs_set_cowgc_interval $old_cowgc_interval
> +	rm -rf $tmp.*
>  }
>  
>  # get standard environment, filters and checks
> @@ -40,7 +41,7 @@ _require_xfs_io_command "cowextsize"
>  _require_xfs_io_command "falloc"
>  _require_xfs_io_command "fiemap"
>  
> -old_cow_lifetime=$(cat /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime)
> +old_cowgc_interval=$(_xfs_get_cowgc_interval)
>  
>  rm -f $seqres.full
>  
> @@ -74,7 +75,7 @@ md5sum $testdir/file2 | _filter_scratch
>  md5sum $testdir/file2.chk | _filter_scratch
>  
>  echo "CoW and leave leftovers"
> -echo 2 > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
> +_xfs_set_cowgc_interval 2
>  seq 2 2 $((nr - 1)) | while read f; do
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f - 1)) 1" $testdir/file2 >> $seqres.full
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f - 1)) 1" $testdir/file2.chk >> $seqres.full
> @@ -91,7 +92,7 @@ done
>  $XFS_IO_PROG -f -c "falloc 0 $filesize" $testdir/junk >> $seqres.full
>  
>  echo "CoW and leave leftovers"
> -echo $old_cow_lifetime > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
> +_xfs_set_cowgc_interval $old_cowgc_interval
>  seq 2 2 $((nr - 1)) | while read f; do
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2 >> $seqres.full
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2.chk >> $seqres.full
> diff --git a/tests/xfs/232 b/tests/xfs/232
> index e56eb3aa..909f921c 100755
> --- a/tests/xfs/232
> +++ b/tests/xfs/232
> @@ -23,9 +23,10 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
>  
>  _cleanup()
>  {
> -    cd /
> -    echo $old_cow_lifetime > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
> -    rm -rf $tmp.*
> +	cd /
> +	test -n "$old_cowgc_interval" && \
> +		_xfs_set_cowgc_interval $old_cowgc_interval
> +	rm -rf $tmp.*
>  }
>  
>  # get standard environment, filters and checks
> @@ -41,7 +42,7 @@ _require_cp_reflink
>  _require_xfs_io_command "falloc"
>  _require_xfs_io_command "fiemap"
>  
> -old_cow_lifetime=$(cat /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime)
> +old_cowgc_interval=$(_xfs_get_cowgc_interval)
>  
>  rm -f $seqres.full
>  
> @@ -75,7 +76,7 @@ md5sum $testdir/file2 | _filter_scratch
>  md5sum $testdir/file2.chk | _filter_scratch
>  
>  echo "CoW and leave leftovers"
> -echo 2 > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
> +_xfs_set_cowgc_interval 2
>  seq 2 2 $((nr - 1)) | while read f; do
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f - 1)) 1" $testdir/file2 >> $seqres.full
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f - 1)) 1" $testdir/file2.chk >> $seqres.full
> @@ -93,7 +94,7 @@ done
>  $XFS_IO_PROG -f -c "falloc 0 $filesize" $testdir/junk >> $seqres.full
>  
>  echo "CoW and leave leftovers"
> -echo $old_cow_lifetime > /proc/sys/fs/xfs/speculative_cow_prealloc_lifetime
> +_xfs_set_cowgc_interval $old_cowgc_interval
>  seq 2 2 $((nr - 1)) | while read f; do
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2 >> $seqres.full
>  	$XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz * f)) 1" $testdir/file2.chk >> $seqres.full
> 


      reply	other threads:[~2021-03-31 17:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-31  1:08 [PATCHSET 0/1] fstests: consolidate posteof and cowblocks cleanup Darrick J. Wong
2021-03-31  1:09 ` [PATCH 1/1] xfs/23[12]: abstractify the XFS cow prealloc trimming interval Darrick J. Wong
2021-03-31 17:43   ` Brian Foster [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=YGS0w5QePsZeYAKZ@bfoster \
    --to=bfoster@redhat.com \
    --cc=djwong@kernel.org \
    --cc=fstests@vger.kernel.org \
    --cc=guan@eryu.me \
    --cc=guaneryu@gmail.com \
    --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