From: Eryu Guan <eguan@redhat.com>
To: Goldwyn Rodrigues <rgoldwyn@suse.de>
Cc: fstests@vger.kernel.org, Goldwyn Rodrigues <rgoldwyn@suse.com>
Subject: Re: [PATCH] btrfs/144: quota exhausts prematurely with direct I/O
Date: Fri, 2 Jun 2017 12:37:25 +0800 [thread overview]
Message-ID: <20170602043725.GE23805@eguan.usersys.redhat.com> (raw)
In-Reply-To: <20170601190348.7617-1-rgoldwyn@suse.de>
On Thu, Jun 01, 2017 at 02:03:48PM -0500, Goldwyn Rodrigues wrote:
> From: Goldwyn Rodrigues <rgoldwyn@suse.com>
>
> While performing direct I/O in small blocksizes, the
> quota gets exhausted prematurely. In the test, we are
> trying to create ~180M file with a block size of 512 bytes
> using direct I/O on a subvolume which is allocated 200M.
>
> This test is currently failing.
>
> Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
> ---
> tests/btrfs/144 | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++
> tests/btrfs/144.out | 3 +++
> tests/btrfs/group | 1 +
> 3 files changed, 74 insertions(+)
> create mode 100755 tests/btrfs/144
> create mode 100644 tests/btrfs/144.out
>
> diff --git a/tests/btrfs/144 b/tests/btrfs/144
> new file mode 100755
> index 00000000..34156716
> --- /dev/null
> +++ b/tests/btrfs/144
> @@ -0,0 +1,70 @@
> +#! /bin/bash
> +# FS QA Test 144
> +#
> +# Check if btrfs quota limits are not reached when direct writes
> +# are performed in small blocks.
> +#
> +# This test is currently failing.
> +#
> +#-----------------------------------------------------------------------
> +# Copyright (c) 2017 SUSE. All Rights Reserved.
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation.
> +#
> +# This program is distributed in the hope that it would be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; if not, write the Free Software Foundation,
> +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
> +#-----------------------------------------------------------------------
> +#
> +
> +seq=`basename $0`
> +seqres=$RESULT_DIR/$seq
> +echo "QA output created by $seq"
> +
> +here=`pwd`
> +tmp=/tmp/$$
> +status=1 # failure is the default!
> +trap "_cleanup; exit \$status" 0 1 2 3 15
> +
> +_cleanup()
> +{
> + cd /
> + rm -f $tmp.*
> +}
> +
> +# get standard environment, filters and checks
> +. ./common/rc
> +. ./common/filter
> +
> +# remove previous $seqres.full before test
> +rm -f $seqres.full
> +
> +_supported_fs btrfs
> +_supported_os Linux
> +_require_scratch
_require_odirect
> +
> +_scratch_mkfs > /dev/null 2>&1
> +_scratch_mount
> +
> +SUBVOL=$SCRATCH_MNT/subvol
> +
> +_run_btrfs_util_prog subvolume create $SUBVOL
> +_run_btrfs_util_prog quota enable $SCRATCH_MNT
> +_run_btrfs_util_prog quota rescan -w $SCRATCH_MNT
> +_run_btrfs_util_prog qgroup limit -e 200M $SUBVOL
> +
> +
> +# Direct write file within 200M limits
> +
> +dd if=/dev/zero of=$SUBVOL/file1 count=36000 bs=512 oflag=direct
36000 * 512 => ~18M in size, you meant 360000 for ~180M?
And I guess this would fail if the underlying device is 4k-sector
device, bs should be determined by `_min_dio_alignment $SCRATCH_DEV`
And xfs_io is preferred,
$XFS_IO_PROG -fd -c "pwrite -b $bs 0 180M" $SUBVOL/file1 | _filter_xfs_io
But test still passed on 4.12-rc1 kernel even if I change file size to
180M, is this expected?
wrote 188743680/188743680 bytes at offset 0
180 MiB, 368640 ops; 0:05:41.00 (540.313 KiB/sec and 1080.6257 ops/sec)
Thanks,
Eryu
> +
> +# success, all done
> +status=0
> +exit
> diff --git a/tests/btrfs/144.out b/tests/btrfs/144.out
> new file mode 100644
> index 00000000..49244bdb
> --- /dev/null
> +++ b/tests/btrfs/144.out
> @@ -0,0 +1,3 @@
> +QA output created by 144
> +36000+0 records in
> +36000+0 records out
> diff --git a/tests/btrfs/group b/tests/btrfs/group
> index 6f19619e..1de7c161 100644
> --- a/tests/btrfs/group
> +++ b/tests/btrfs/group
> @@ -145,3 +145,4 @@
> 141 auto quick
> 142 auto quick
> 143 auto quick
> +144 auto quick qgroup
> --
> 2.12.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2017-06-02 4:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-01 19:03 [PATCH] btrfs/144: quota exhausts prematurely with direct I/O Goldwyn Rodrigues
2017-06-02 4:37 ` Eryu Guan [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=20170602043725.GE23805@eguan.usersys.redhat.com \
--to=eguan@redhat.com \
--cc=fstests@vger.kernel.org \
--cc=rgoldwyn@suse.com \
--cc=rgoldwyn@suse.de \
/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