From: Wang Shilong <wangsl.fnst@cn.fujitsu.com>
To: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>,
Chris Mason <clm@fb.com>, Josef Bacik <jbacik@fb.com>
Cc: "linux-btrfs@vger.kernel.org" <linux-btrfs@vger.kernel.org>,
Kevin Brandstatter <icarusthecow@gmail.com>
Subject: Re: [BUG] "Quota Ignored On write" problem still exist with 3.16-rc5
Date: Wed, 23 Jul 2014 09:54:24 +0800 [thread overview]
Message-ID: <53CF15D0.5030104@cn.fujitsu.com> (raw)
In-Reply-To: <53CF077D.4000106@jp.fujitsu.com>
Hi Satoru-san,
On 07/23/2014 08:53 AM, Satoru Takeuchi wrote:
> Hi Wang,
>
> (2014/07/18 19:29), Wang Shilong wrote:
>> On 07/18/2014 04:45 PM, Satoru Takeuchi wrote:
>>> Hi Josef, Chris,
>>>
>>> I found "Quota Ignored On write" problem still exist with 3.16-rc5,
>>> which Kevin reported before.
>>>
>>> Kevin's report:
>>> https://www.mail-archive.com/linux-btrfs@vger.kernel.org/msg35292.html
>>>
>>> The result of bisect:
>>> https://www.mail-archive.com/linux-btrfs@vger.kernel.org/msg35304.html
>> I guess this is because Josef's patch delayed qgroup accounting, it will
>> cause @refer and @excl updating very late...
>>
>> The patch maybe optimize to merge some delayed refs(for example), but
>> it updates qgroup accounting when commiting transaction which will be
>> very late,
>> we may have accumulated many data..
> Thank you for your comment. I know of the code logic which caused
> this problem. However, what I want to say here is that this
> problem should be fixed as soon as possible. It is a important
> regression problem and we've already know the root cause.
>
> If it's impossible to fix it by releasing 3.16, I consider this
> patch should be reverted.
Since Btrfs Quota function is under heavy development, and should be
considered as *broken*.
I think we'd better close Btrfs quota function(Like snapshot-aware function)
until we really sit down and solve everything.
Thanks,
Wang
>
> Thanks,
> Satoru
>
>> Thanks,
>> Wang
>>>> I bisected and found the bad commit is the following patch.
>>>>
>>>> ===============================================================================
>>>> commit fcebe4562dec83b3f8d3088d77584727b09130b2
>>>> Author: Josef Bacik <jba...@fb.com>
>>>> Date: Tue May 13 17:30:47 2014 -0700
>>>>
>>>> Btrfs: rework qgroup accounting
>>>> ===============================================================================
>>>>
>>>> Josef, please take a look at this patch.
>>> Reproducer:
>>> https://www.mail-archive.com/linux-btrfs@vger.kernel.org/msg35299.html
>>>
>>> Could you tell me the progress of fixing this bug?
>>> In addition, could you fix it by 3.16?
>>>
>>> command log:
>>> ===============================================================================
>>> # ./test.sh
>>> + uname -a
>>> Linux luna.soft.fujitsu.com 3.16.0-rc5 #2 SMP Tue Jul 15 13:39:46 JST 2014 x86_64 x86_64 x86_64 GNU/Linux
>>> + df -T /test7
>>> Filesystem Type 1K-blocks Used Available Use% Mounted on
>>> /dev/sdc7 btrfs 29296640 1536 27169536 1% /test7
>>> + btrfs quota ena /test7
>>> + cd /test7
>>> + btrfs sub cre test
>>> Create subvolume './test'
>>> + btrfs sub l -a /test7
>>> ID 270 gen 66 top level 5 path test
>>> + btrfs qg lim 1G test # limit test subvol to 1GB
>>> + btrfs qg show -pcre /test7
>>> qgroupid rfer excl max_rfer max_excl parent child
>>> -------- ---- ---- -------- -------- ------ -----
>>> 0/5 16384 16384 0 0 --- ---
>>> 0/270 16384 16384 1073741824 0 --- ---
>>> + dd if=/dev/zero of=test/file0 bs=1M count=2000
>>> 2000+0 records in
>>> 2000+0 records out
>>> 2097152000 bytes (2.1 GB) copied, 9.67876 s, 217 MB/s # write 2GB. It's a bug!
>>> + sync
>>> + ls -lisaR /test7
>>> /test7:
>>> total 20
>>> 256 16 drwxr-xr-x 1 root root 8 Jul 18 15:12 .
>>> 2 4 drwxr-xr-x. 43 root root 4096 Jul 16 08:34 ..
>>> 256 0 drwxr-xr-x 1 root root 10 Jul 18 15:17 test
>>>
>>> /test7/test:
>>> total 2048016
>>> 256 0 drwxr-xr-x 1 root root 10 Jul 18 15:17 .
>>> 256 16 drwxr-xr-x 1 root root 8 Jul 18 15:12 ..
>>> 257 2048000 -rw-r--r-- 1 root root 2097152000 Jul 18 15:17 file0
>>> + btrfs qg show -pcre /test7
>>> qgroupid rfer excl max_rfer max_excl parent child
>>> -------- ---- ---- -------- -------- ------ -----
>>> 0/5 16384 16384 0 0 --- ---
>>> 0/270 2097168384 2097168384 1073741824 0 --- ---
>>> + btrfs quota dis /test7
>>> + btrfs sub del test
>>> Transaction commit: none (default)
>>> Delete subvolume '/test7/test'
>>> + set +x
>>> #
>>> ===============================================================================
>>>
>>> NOTE:
>>> The reproducer here (./test.sh) is a bit different from above-mentioned
>>> one because of some reason.
>>>
>>> Thanks,
>>> Satoru
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>> .
>>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
> .
>
next prev parent reply other threads:[~2014-07-23 1:59 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-18 8:45 [BUG] "Quota Ignored On write" problem still exist with 3.16-rc5 Satoru Takeuchi
2014-07-18 10:29 ` Wang Shilong
2014-07-23 0:53 ` Satoru Takeuchi
2014-07-23 1:54 ` Wang Shilong [this message]
2014-07-23 13:23 ` Josef Bacik
2014-07-24 22:51 ` Kevin Brandstatter
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=53CF15D0.5030104@cn.fujitsu.com \
--to=wangsl.fnst@cn.fujitsu.com \
--cc=clm@fb.com \
--cc=icarusthecow@gmail.com \
--cc=jbacik@fb.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=takeuchi_satoru@jp.fujitsu.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;
as well as URLs for NNTP newsgroup(s).