* [PATCH 1/2] btrfs-progs: fi-usage: Fix wrong RAID10 used and unallocated space
@ 2018-01-02 6:33 Qu Wenruo
2018-01-02 6:33 ` [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent " Qu Wenruo
0 siblings, 1 reply; 5+ messages in thread
From: Qu Wenruo @ 2018-01-02 6:33 UTC (permalink / raw)
To: linux-btrfs; +Cc: adambahe, dsterba
[BUG]
For a very basic RAID10 with 4 disks, "fi usage" and "fi show" are
outputting conflicting result:
------
# btrfs fi show /mnt/btrfs/
Label: none uuid: 6d0229db-28d1-4696-ac20-e828cc45dc40
Total devices 4 FS bytes used 1.12MiB
devid 1 size 5.00GiB used 2.01GiB path /dev/mapper/data-disk1
devid 2 size 5.00GiB used 2.01GiB path /dev/mapper/data-disk2
devid 3 size 5.00GiB used 2.01GiB path /dev/mapper/data-disk3
devid 4 size 5.00GiB used 2.01GiB path /dev/mapper/data-disk4
Here the unallocated space for disk4 should be a little less than 3G.
(5.00 Gib - 2.01GiB)
# btrfs fi usage /mnt/btrfs/
Overall:
Device size: 20.00GiB
Device allocated: 8.03GiB
Device unallocated: 11.97GiB
Device missing: 0.00B
Used: 2.25MiB
Free (estimated): 7.98GiB (min: 7.98GiB)
Data ratio: 2.00
Metadata ratio: 2.00
Global reserve: 16.00MiB (used: 0.00B)
Data,RAID10: Size:2.00GiB, Used:1.00MiB
...
/dev/mapper/data-disk4 512.00MiB
Metadata,RAID10: Size:2.00GiB, Used:112.00KiB
...
/dev/mapper/data-disk4 512.00MiB
System,RAID10: Size:16.00MiB, Used:16.00KiB
...
/dev/mapper/data-disk4 4.00MiB
Unallocated:
...
/dev/mapper/data-disk4 4.00GiB
While fi usage shows we still have 4.00GiB unallocated space.
------
[CAUSE]
calc_chunk_size() is used to convert chunk size to device extent size,
which is used to get the per-device data/meta/sys used space.
However, for RAID10 we just divide the chunk size with num_stripes,
without taking sub stripes into account.
Resulting data/meta/sys usage in RAID10 halved.
[FIX]
Take the missing sub stripes into consideration.
Reported-by: Adam Bahe <adambahe@gmail.com>
Signed-off-by: Qu Wenruo <wqu@suse.com>
---
cmds-fi-usage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmds-fi-usage.c b/cmds-fi-usage.c
index 0b0e47fee194..0af4bdbc9370 100644
--- a/cmds-fi-usage.c
+++ b/cmds-fi-usage.c
@@ -664,7 +664,7 @@ static u64 calc_chunk_size(struct chunk_info *ci)
else if (ci->type & BTRFS_BLOCK_GROUP_RAID6)
return ci->size / (ci->num_stripes -2);
else if (ci->type & BTRFS_BLOCK_GROUP_RAID10)
- return ci->size / ci->num_stripes;
+ return ci->size / (ci->num_stripes / 2);
return ci->size;
}
--
2.15.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent unallocated space
2018-01-02 6:33 [PATCH 1/2] btrfs-progs: fi-usage: Fix wrong RAID10 used and unallocated space Qu Wenruo
@ 2018-01-02 6:33 ` Qu Wenruo
2018-01-08 19:39 ` David Sterba
0 siblings, 1 reply; 5+ messages in thread
From: Qu Wenruo @ 2018-01-02 6:33 UTC (permalink / raw)
To: linux-btrfs; +Cc: adambahe, dsterba
Signed-off-by: Qu Wenruo <wqu@suse.com>
---
tests/misc-tests/028-fi-usage-cross-check/test.sh | 46 +++++++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100755 tests/misc-tests/028-fi-usage-cross-check/test.sh
diff --git a/tests/misc-tests/028-fi-usage-cross-check/test.sh b/tests/misc-tests/028-fi-usage-cross-check/test.sh
new file mode 100755
index 000000000000..bf438b60abf1
--- /dev/null
+++ b/tests/misc-tests/028-fi-usage-cross-check/test.sh
@@ -0,0 +1,46 @@
+#!/bin/bash
+# check fi-usage is output correct unallocated space for RAID10
+
+source "$TOP/tests/common"
+
+check_prereq mkfs.btrfs
+check_prereq btrfs
+
+setup_root_helper
+
+setup_loopdevs 4
+prepare_loopdevs
+dev1=${loopdevs[1]}
+
+run_check "$TOP/mkfs.btrfs" -d raid10 -m raid10 -f ${loopdevs[@]}
+run_check $SUDO_HELPER mount $dev1 "$TEST_MNT"
+
+output_dir=$(mktemp -d --tmpdir btrfs-progs-misc.XXXXXXXX)
+
+run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem show --raw "$TEST_MNT" |\
+ grep "$dev1" > "$output_dir/fi_show_output"
+if [ ! -s "$output_dir/fi_show_output" ]; then
+ _fail "failed to get correct fi show output"
+fi
+
+dev1_total=$(cat "$output_dir/fi_show_output" | awk '{print $4}')
+dev1_used=$(cat "$output_dir/fi_show_output" | awk '{print $6}')
+dev1_fi_show_unallocated=$(( $dev1_total - $dev1_used))
+
+run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem usage --raw "$TEST_MNT" |\
+ grep "$dev1" | tail -n1 > "$output_dir/fi_usage_output"
+if [ ! -s "$output_dir/fi_usage_output" ]; then
+ _fail "failed to get correct fi usage output"
+fi
+
+dev1_fi_usage_unallocated=$(cat "$output_dir/fi_usage_output" | awk '{print $2}')
+echo "fi usage unallocated for devid1 is $dev1_fi_usage_unallocated" >> "$RESULTS"
+echo "fi show unallocated for devid1 is $dev1_fi_show_unallocated" >> "$RESULTS"
+
+if [ $dev1_fi_show_unallocated -ne $dev1_fi_usage_unallocated ]; then
+ _fail "fi usage unallocated mismatch with fi show"
+fi
+
+run_check $SUDO_HELPER umount "$TEST_MNT"
+cleanup_loopdevs
+rm $output_dir -rf
--
2.15.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent unallocated space
2018-01-02 6:33 ` [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent " Qu Wenruo
@ 2018-01-08 19:39 ` David Sterba
2018-01-09 0:21 ` Qu Wenruo
0 siblings, 1 reply; 5+ messages in thread
From: David Sterba @ 2018-01-08 19:39 UTC (permalink / raw)
To: Qu Wenruo; +Cc: linux-btrfs, adambahe, dsterba
On Tue, Jan 02, 2018 at 02:33:15PM +0800, Qu Wenruo wrote:
> Signed-off-by: Qu Wenruo <wqu@suse.com>
> ---
> tests/misc-tests/028-fi-usage-cross-check/test.sh | 46 +++++++++++++++++++++++
> 1 file changed, 46 insertions(+)
> create mode 100755 tests/misc-tests/028-fi-usage-cross-check/test.sh
>
> diff --git a/tests/misc-tests/028-fi-usage-cross-check/test.sh b/tests/misc-tests/028-fi-usage-cross-check/test.sh
> new file mode 100755
> index 000000000000..bf438b60abf1
> --- /dev/null
> +++ b/tests/misc-tests/028-fi-usage-cross-check/test.sh
> @@ -0,0 +1,46 @@
> +#!/bin/bash
> +# check fi-usage is output correct unallocated space for RAID10
> +
> +source "$TOP/tests/common"
> +
> +check_prereq mkfs.btrfs
> +check_prereq btrfs
> +
> +setup_root_helper
> +
> +setup_loopdevs 4
> +prepare_loopdevs
> +dev1=${loopdevs[1]}
> +
> +run_check "$TOP/mkfs.btrfs" -d raid10 -m raid10 -f ${loopdevs[@]}
> +run_check $SUDO_HELPER mount $dev1 "$TEST_MNT"
There's a helper macro for that, run_check_mount_test_dev, that expects
the TEST_DEV to be set. I suggest to use this variable instead of dev1,
and then the umount command can be replaced by
run_check_umount_test_dev.
> +
> +output_dir=$(mktemp -d --tmpdir btrfs-progs-misc.XXXXXXXX)
This is not IMO necessary, you get only one line from the fi show output
and check if it's not empty. A simple 'if grep ...' . The output is
reused so you can store it to a variable.
> +
> +run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem show --raw "$TEST_MNT" |\
> + grep "$dev1" > "$output_dir/fi_show_output"
> +if [ ! -s "$output_dir/fi_show_output" ]; then
> + _fail "failed to get correct fi show output"
> +fi
> +
> +dev1_total=$(cat "$output_dir/fi_show_output" | awk '{print $4}')
> +dev1_used=$(cat "$output_dir/fi_show_output" | awk '{print $6}')
> +dev1_fi_show_unallocated=$(( $dev1_total - $dev1_used))
> +
> +run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem usage --raw "$TEST_MNT" |\
> + grep "$dev1" | tail -n1 > "$output_dir/fi_usage_output"
> +if [ ! -s "$output_dir/fi_usage_output" ]; then
> + _fail "failed to get correct fi usage output"
> +fi
> +
> +dev1_fi_usage_unallocated=$(cat "$output_dir/fi_usage_output" | awk '{print $2}')
> +echo "fi usage unallocated for devid1 is $dev1_fi_usage_unallocated" >> "$RESULTS"
> +echo "fi show unallocated for devid1 is $dev1_fi_show_unallocated" >> "$RESULTS"
> +
> +if [ $dev1_fi_show_unallocated -ne $dev1_fi_usage_unallocated ]; then
> + _fail "fi usage unallocated mismatch with fi show"
> +fi
> +
> +run_check $SUDO_HELPER umount "$TEST_MNT"
> +cleanup_loopdevs
> +rm $output_dir -rf
Please quote all arguments, namely if it's passed to 'rm', and options
should go before arugments.
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent unallocated space
2018-01-08 19:39 ` David Sterba
@ 2018-01-09 0:21 ` Qu Wenruo
2018-01-23 18:07 ` David Sterba
0 siblings, 1 reply; 5+ messages in thread
From: Qu Wenruo @ 2018-01-09 0:21 UTC (permalink / raw)
To: dsterba, Qu Wenruo, linux-btrfs, adambahe
[-- Attachment #1.1: Type: text/plain, Size: 3341 bytes --]
On 2018年01月09日 03:39, David Sterba wrote:
> On Tue, Jan 02, 2018 at 02:33:15PM +0800, Qu Wenruo wrote:
>> Signed-off-by: Qu Wenruo <wqu@suse.com>
>> ---
>> tests/misc-tests/028-fi-usage-cross-check/test.sh | 46 +++++++++++++++++++++++
>> 1 file changed, 46 insertions(+)
>> create mode 100755 tests/misc-tests/028-fi-usage-cross-check/test.sh
>>
>> diff --git a/tests/misc-tests/028-fi-usage-cross-check/test.sh b/tests/misc-tests/028-fi-usage-cross-check/test.sh
>> new file mode 100755
>> index 000000000000..bf438b60abf1
>> --- /dev/null
>> +++ b/tests/misc-tests/028-fi-usage-cross-check/test.sh
>> @@ -0,0 +1,46 @@
>> +#!/bin/bash
>> +# check fi-usage is output correct unallocated space for RAID10
>> +
>> +source "$TOP/tests/common"
>> +
>> +check_prereq mkfs.btrfs
>> +check_prereq btrfs
>> +
>> +setup_root_helper
>> +
>> +setup_loopdevs 4
>> +prepare_loopdevs
>> +dev1=${loopdevs[1]}
>> +
>> +run_check "$TOP/mkfs.btrfs" -d raid10 -m raid10 -f ${loopdevs[@]}
>> +run_check $SUDO_HELPER mount $dev1 "$TEST_MNT"
>
> There's a helper macro for that, run_check_mount_test_dev, that expects
> the TEST_DEV to be set. I suggest to use this variable instead of dev1,
> and then the umount command can be replaced by
> run_check_umount_test_dev.
>> +
>> +output_dir=$(mktemp -d --tmpdir btrfs-progs-misc.XXXXXXXX)
>
> This is not IMO necessary, you get only one line from the fi show output
> and check if it's not empty. A simple 'if grep ...' . The output is
> reused so you can store it to a variable.
>
>> +
>> +run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem show --raw "$TEST_MNT" |\
>> + grep "$dev1" > "$output_dir/fi_show_output"
>> +if [ ! -s "$output_dir/fi_show_output" ]; then
>> + _fail "failed to get correct fi show output"
>> +fi
>> +
>> +dev1_total=$(cat "$output_dir/fi_show_output" | awk '{print $4}')
>> +dev1_used=$(cat "$output_dir/fi_show_output" | awk '{print $6}')
>> +dev1_fi_show_unallocated=$(( $dev1_total - $dev1_used))
>> +
>> +run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem usage --raw "$TEST_MNT" |\
>> + grep "$dev1" | tail -n1 > "$output_dir/fi_usage_output"
>> +if [ ! -s "$output_dir/fi_usage_output" ]; then
>> + _fail "failed to get correct fi usage output"
>> +fi
>> +
>> +dev1_fi_usage_unallocated=$(cat "$output_dir/fi_usage_output" | awk '{print $2}')
>> +echo "fi usage unallocated for devid1 is $dev1_fi_usage_unallocated" >> "$RESULTS"
>> +echo "fi show unallocated for devid1 is $dev1_fi_show_unallocated" >> "$RESULTS"
>> +
>> +if [ $dev1_fi_show_unallocated -ne $dev1_fi_usage_unallocated ]; then
>> + _fail "fi usage unallocated mismatch with fi show"
>> +fi
>> +
>> +run_check $SUDO_HELPER umount "$TEST_MNT"
>> +cleanup_loopdevs
>> +rm $output_dir -rf
>
> Please quote all arguments, namely if it's passed to 'rm', and options
> should go before arugments.
However the $output_dir won't contain any space or any escaping.
It will always be something like "/tmp/btrfs-progs-misc.1234567", do we
still need to quota something we're sure it's safe?
Thanks,
Qu
> --
> 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
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 520 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent unallocated space
2018-01-09 0:21 ` Qu Wenruo
@ 2018-01-23 18:07 ` David Sterba
0 siblings, 0 replies; 5+ messages in thread
From: David Sterba @ 2018-01-23 18:07 UTC (permalink / raw)
To: Qu Wenruo; +Cc: dsterba, Qu Wenruo, linux-btrfs, adambahe
On Tue, Jan 09, 2018 at 08:21:29AM +0800, Qu Wenruo wrote:
> On 2018年01月09日 03:39, David Sterba wrote:
> > On Tue, Jan 02, 2018 at 02:33:15PM +0800, Qu Wenruo wrote:
> >> Signed-off-by: Qu Wenruo <wqu@suse.com>
> >> ---
> >> tests/misc-tests/028-fi-usage-cross-check/test.sh | 46 +++++++++++++++++++++++
> >> 1 file changed, 46 insertions(+)
> >> create mode 100755 tests/misc-tests/028-fi-usage-cross-check/test.sh
> >>
> >> diff --git a/tests/misc-tests/028-fi-usage-cross-check/test.sh b/tests/misc-tests/028-fi-usage-cross-check/test.sh
> >> new file mode 100755
> >> index 000000000000..bf438b60abf1
> >> --- /dev/null
> >> +++ b/tests/misc-tests/028-fi-usage-cross-check/test.sh
> >> @@ -0,0 +1,46 @@
> >> +#!/bin/bash
> >> +# check fi-usage is output correct unallocated space for RAID10
> >> +
> >> +source "$TOP/tests/common"
> >> +
> >> +check_prereq mkfs.btrfs
> >> +check_prereq btrfs
> >> +
> >> +setup_root_helper
> >> +
> >> +setup_loopdevs 4
> >> +prepare_loopdevs
> >> +dev1=${loopdevs[1]}
> >> +
> >> +run_check "$TOP/mkfs.btrfs" -d raid10 -m raid10 -f ${loopdevs[@]}
> >> +run_check $SUDO_HELPER mount $dev1 "$TEST_MNT"
> >
> > There's a helper macro for that, run_check_mount_test_dev, that expects
> > the TEST_DEV to be set. I suggest to use this variable instead of dev1,
> > and then the umount command can be replaced by
> > run_check_umount_test_dev.
> >> +
> >> +output_dir=$(mktemp -d --tmpdir btrfs-progs-misc.XXXXXXXX)
> >
> > This is not IMO necessary, you get only one line from the fi show output
> > and check if it's not empty. A simple 'if grep ...' . The output is
> > reused so you can store it to a variable.
> >
> >> +
> >> +run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem show --raw "$TEST_MNT" |\
> >> + grep "$dev1" > "$output_dir/fi_show_output"
> >> +if [ ! -s "$output_dir/fi_show_output" ]; then
> >> + _fail "failed to get correct fi show output"
> >> +fi
> >> +
> >> +dev1_total=$(cat "$output_dir/fi_show_output" | awk '{print $4}')
> >> +dev1_used=$(cat "$output_dir/fi_show_output" | awk '{print $6}')
> >> +dev1_fi_show_unallocated=$(( $dev1_total - $dev1_used))
> >> +
> >> +run_check_stdout $SUDO_HELPER "$TOP/btrfs" filesystem usage --raw "$TEST_MNT" |\
> >> + grep "$dev1" | tail -n1 > "$output_dir/fi_usage_output"
> >> +if [ ! -s "$output_dir/fi_usage_output" ]; then
> >> + _fail "failed to get correct fi usage output"
> >> +fi
> >> +
> >> +dev1_fi_usage_unallocated=$(cat "$output_dir/fi_usage_output" | awk '{print $2}')
> >> +echo "fi usage unallocated for devid1 is $dev1_fi_usage_unallocated" >> "$RESULTS"
> >> +echo "fi show unallocated for devid1 is $dev1_fi_show_unallocated" >> "$RESULTS"
> >> +
> >> +if [ $dev1_fi_show_unallocated -ne $dev1_fi_usage_unallocated ]; then
> >> + _fail "fi usage unallocated mismatch with fi show"
> >> +fi
> >> +
> >> +run_check $SUDO_HELPER umount "$TEST_MNT"
> >> +cleanup_loopdevs
> >> +rm $output_dir -rf
> >
> > Please quote all arguments, namely if it's passed to 'rm', and options
> > should go before arugments.
>
> However the $output_dir won't contain any space or any escaping.
>
> It will always be something like "/tmp/btrfs-progs-misc.1234567", do we
> still need to quota something we're sure it's safe?
For sake of consistency, yes. There are only a few exceptions where we
don't want quotes around variables.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-01-23 18:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-02 6:33 [PATCH 1/2] btrfs-progs: fi-usage: Fix wrong RAID10 used and unallocated space Qu Wenruo
2018-01-02 6:33 ` [PATCH 2/2] btrfs-progs: misc-test: Add test case to check if fi usage and show report consistent " Qu Wenruo
2018-01-08 19:39 ` David Sterba
2018-01-09 0:21 ` Qu Wenruo
2018-01-23 18:07 ` David Sterba
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).