diff options
author | Josef Bacik <josef@redhat.com> | 2010-10-14 14:52:27 -0400 |
---|---|---|
committer | Josef Bacik <josef@redhat.com> | 2010-10-22 15:54:55 -0400 |
commit | 89a55897a2fbbceb94480952784004bf23911d38 (patch) | |
tree | e62ea1ced4c7941ab53e7aa7047ce8f0af0add9f /fs/btrfs/ctree.h | |
parent | bf5fc093c5b625e4259203f1cee7ca73488a5620 (diff) | |
download | kernel_samsung_espresso10-89a55897a2fbbceb94480952784004bf23911d38.zip kernel_samsung_espresso10-89a55897a2fbbceb94480952784004bf23911d38.tar.gz kernel_samsung_espresso10-89a55897a2fbbceb94480952784004bf23911d38.tar.bz2 |
Btrfs: fix df regression
The new ENOSPC stuff breaks out the raid types which breaks the way we were
reporting df to the system. This fixes it back so that Available is the total
space available to data and used is the actual bytes used by the filesystem.
This means that Available is Total - data used - all of the metadata space.
Thanks,
Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 29c2009..014fd52 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -675,7 +675,8 @@ struct btrfs_block_group_item { struct btrfs_space_info { u64 flags; - u64 total_bytes; /* total bytes in the space */ + u64 total_bytes; /* total bytes in the space, + this doesn't take mirrors into account */ u64 bytes_used; /* total bytes used, this does't take mirrors into account */ u64 bytes_pinned; /* total bytes pinned, will be freed when the @@ -687,6 +688,8 @@ struct btrfs_space_info { u64 bytes_may_use; /* number of bytes that may be used for delalloc/allocations */ u64 disk_used; /* total bytes used on disk */ + u64 disk_total; /* total bytes on disk, takes mirrors into + account */ int full; /* indicates that we cannot allocate any more chunks for this space */ |