Commit 799ffc3c authored by Liu Bo's avatar Liu Bo Committed by Chris Mason

Btrfs: add ro notification to dump_space_info

Block group has ro attributes, make dump_space_info show it.
Signed-off-by: default avatarLiu Bo <liubo2009@cn.fujitsu.com>
Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
parent cf7c1ef6
...@@ -5825,13 +5825,13 @@ static void dump_space_info(struct btrfs_space_info *info, u64 bytes, ...@@ -5825,13 +5825,13 @@ static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
again: again:
list_for_each_entry(cache, &info->block_groups[index], list) { list_for_each_entry(cache, &info->block_groups[index], list) {
spin_lock(&cache->lock); spin_lock(&cache->lock);
printk(KERN_INFO "block group %llu has %llu bytes, %llu used " printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n",
"%llu pinned %llu reserved\n",
(unsigned long long)cache->key.objectid, (unsigned long long)cache->key.objectid,
(unsigned long long)cache->key.offset, (unsigned long long)cache->key.offset,
(unsigned long long)btrfs_block_group_used(&cache->item), (unsigned long long)btrfs_block_group_used(&cache->item),
(unsigned long long)cache->pinned, (unsigned long long)cache->pinned,
(unsigned long long)cache->reserved); (unsigned long long)cache->reserved,
cache->ro ? "[readonly]" : "");
btrfs_dump_free_space(cache, bytes); btrfs_dump_free_space(cache, bytes);
spin_unlock(&cache->lock); spin_unlock(&cache->lock);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment