aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
authorJosef Bacik <josef@redhat.com>2011-08-08 12:50:18 -0400
committerJosef Bacik <josef@redhat.com>2011-10-19 15:12:34 -0400
commitdabdb6408cb801644fa613c7432da012640b348c (patch)
tree846978b48af90315b14bf984d0b0a55a962eff6b /fs/btrfs/ctree.h
parent6ab60601d518d563ca1a47eaa399096e69d3b64a (diff)
Btrfs: kill unused parts of block_rsv
The priority and refill_used flags are not used anymore, and neither is the usage counter, so just remove them from btrfs_block_rsv. Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index c5ceba4078c..58a06dea479 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -774,9 +774,6 @@ struct btrfs_block_rsv {
774 u64 reserved; 774 u64 reserved;
775 struct btrfs_space_info *space_info; 775 struct btrfs_space_info *space_info;
776 spinlock_t lock; 776 spinlock_t lock;
777 atomic_t usage;
778 unsigned int priority:8;
779 unsigned int refill_used:1;
780 unsigned int full:1; 777 unsigned int full:1;
781}; 778};
782 779