Displaying 4 results from an estimated 4 matches for "disk_total".
Did you mean:
disctotal
2011 Jan 05
1
[PATCH V3 1/6] btrfs: fix wrong data space statistics
...btrfs/super.c
@@ -768,11 +768,10 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
rcu_read_lock();
list_for_each_entry_rcu(found, head, list) {
- if (found->flags & (BTRFS_BLOCK_GROUP_METADATA |
- BTRFS_BLOCK_GROUP_SYSTEM))
- total_used_data += found->disk_total;
- else
+ if (found->flags & BTRFS_BLOCK_GROUP_DATA)
total_used_data += found->disk_used;
+ else
+ total_used_data += found->disk_total;
total_used += found->disk_used;
}
rcu_read_unlock();
--
1.7.2.3
--
To unsubscribe from this list: send the line "unsubscribe...
2010 Dec 22
0
[PATCH 1/6] btrfs: fix wrong data space statistics
...btrfs/super.c
@@ -768,11 +768,10 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
rcu_read_lock();
list_for_each_entry_rcu(found, head, list) {
- if (found->flags & (BTRFS_BLOCK_GROUP_METADATA |
- BTRFS_BLOCK_GROUP_SYSTEM))
- total_used_data += found->disk_total;
- else
+ if (found->flags & BTRFS_BLOCK_GROUP_DATA)
total_used_data += found->disk_used;
+ else
+ total_used_data += found->disk_total;
total_used += found->disk_used;
}
rcu_read_unlock();
--
1.7.0.1
--
To unsubscribe from this list: send the line "unsubscribe...
2010 Dec 29
0
[PATCH V2 1/6] btrfs: fix wrong data space statistics
...btrfs/super.c
@@ -768,11 +768,10 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
rcu_read_lock();
list_for_each_entry_rcu(found, head, list) {
- if (found->flags & (BTRFS_BLOCK_GROUP_METADATA |
- BTRFS_BLOCK_GROUP_SYSTEM))
- total_used_data += found->disk_total;
- else
+ if (found->flags & BTRFS_BLOCK_GROUP_DATA)
total_used_data += found->disk_used;
+ else
+ total_used_data += found->disk_total;
total_used += found->disk_used;
}
rcu_read_unlock();
--
1.7.0.1
--
To unsubscribe from this list: send the line "unsubscribe...
2011 Aug 23
40
[PATCH 00/21] [RFC] Btrfs: restriper
Hello,
This patch series adds an initial implementation of restriper (it''s a
clever name for relocation framework that allows to do selective profile
changing and selective balancing with some goodies like pausing/resuming
and reporting progress to the user.
Profile changing is global (per-FS) so far, per-subvolume profiles
require some discussion and can be implemented in future.