btrfs: fix wrong data space statistics
Josef has implemented mixed data/metadata chunks, we must add those chunks' space just like data chunks. Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> Reviewed-by: Josef Bacik <josef@redhat.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
Родитель
f580eb0931
Коммит
299a08b1c3
|
@ -790,11 +790,10 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
|
||||||
|
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
list_for_each_entry_rcu(found, head, list) {
|
list_for_each_entry_rcu(found, head, list) {
|
||||||
if (found->flags & (BTRFS_BLOCK_GROUP_METADATA |
|
if (found->flags & BTRFS_BLOCK_GROUP_DATA)
|
||||||
BTRFS_BLOCK_GROUP_SYSTEM))
|
|
||||||
total_used_data += found->disk_total;
|
|
||||||
else
|
|
||||||
total_used_data += found->disk_used;
|
total_used_data += found->disk_used;
|
||||||
|
else
|
||||||
|
total_used_data += found->disk_total;
|
||||||
total_used += found->disk_used;
|
total_used += found->disk_used;
|
||||||
}
|
}
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче