From: Nikolay Borisov <nborisov@suse.com>
To: Qu Wenruo <wqu@suse.com>, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] btrfs: make btrfs_dirty_inode() to always reserve metadata space
Date: Thu, 18 Feb 2021 17:28:23 +0200 [thread overview]
Message-ID: <fe04fa6f-57b9-546c-1715-ecc97e81fe14@suse.com> (raw)
In-Reply-To: <20210108053659.87728-1-wqu@suse.com>
On 8.01.21 г. 7:36 ч., Qu Wenruo wrote:
> There are several qgroup flush related bugs fixed recently, all of them
> are caused by the fact that we can trigger qgroup metadata space
> reservation holding a transaction handle.
>
> Thankfully the only situation to trigger above reservation is
> btrfs_dirty_inode().
>
> Currently btrfs_dirty_inode() will try join transactio first, then
> update the inode.
> If btrfs_update_inode() fails with -ENOSPC, then it retry to start
> transaction to reserve metadata space.
>
> This not only forces us to reserve metadata space with a transaction
> handle hold, but can't handle other errors like -EDQUOT.
>
> This patch will make btrfs_dirty_inode() to call
> btrfs_start_transaction() directly without first try joining then
> starting, so that in try_flush_qgroup() we won't hold a trans handle.
>
> This will slow down btrfs_dirty_inode() but my fstests doesn't show too
> much different for most test cases, thus it may be worthy to skip such
> performance "optimization".
>
> Signed-off-by: Qu Wenruo <wqu@suse.com>
Ok I actually run 2 tests against this patch. The first one is a 10
second run of stress-ng's utime test (stress-ng --temp-path
/media/scratch --utime 4 -M -t 10 ; done) to see if I can reproduce
intel's results and here's what I found:
bogo ops/s real (Before-patch) bogo ops/s real (After Patch)
35993 32968
35712 33146
35369 32996
35544 33159
35623 33000
35939 33016
35693 32829
35562 32685
35675 32815
Std dev 182.161981912585 146.829034703967
HMean 35677.9600871036 32957.1111111111
Diff%: -7.626
So there's a 7.6% decrease in the rate of utime() calls we can make,
given that we now start a transaction I'd say that's expected.
The other test was a randwrite with fio as I was mostly worried that
making btrfs_dirty_inode more expensive would hit write performance
since file_update_times is called from the generic iter. But inspecting
the code btrfs uses update_time_for_write which doesn't dirty the inode
per-se as this is deferred to endio completion time. I also measured
the impact during buffered read time as file_accessed is called a lot of
times but the following bpftrace script:
BEGIN {@execs = 0; }
kprobe:btrfs_dirty_inode
{
@test[kstack] = count();
@execs++;
}
kprobe:touch_atime
{
@test[kstack] = count();
}
END{
printf("Total btrfs_dirty_inode calls: %llu\n", @execs);
}
confirmed we only ever execute around 8 btrfs_dirty_inode out of 1048773
execution of touch_atimes from generic_file_buffered_read with the
following fio workload:
fio --name=random-readers --thread --ioengine=sync --iodepth=4
--rw=randread --bs=4k --direct=0 --size=1g --numjobs=4
--directory=/media/scratch --filename_format=FioWorkloads.\$jobnum
--new_group --group_reporting=1
So performance-wise I'm inclined to give it a "pass".
next prev parent reply other threads:[~2021-02-18 18:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-08 5:36 [PATCH] btrfs: make btrfs_dirty_inode() to always reserve metadata space Qu Wenruo
2021-01-12 12:19 ` Nikolay Borisov
2021-01-12 12:29 ` Qu Wenruo
2021-01-12 15:24 ` [btrfs] e86bb85b1f: stress-ng.utime.ops_per_sec -70.1% regression kernel test robot
2021-01-13 7:15 ` Qu Wenruo
2021-02-18 15:28 ` Nikolay Borisov [this message]
2021-02-19 0:19 ` [PATCH] btrfs: make btrfs_dirty_inode() to always reserve metadata space Qu Wenruo
2021-02-18 16:14 ` Josef Bacik
2021-02-19 0:31 ` Qu Wenruo
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=fe04fa6f-57b9-546c-1715-ecc97e81fe14@suse.com \
--to=nborisov@suse.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=wqu@suse.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