summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/disk-io.h
diff options
context:
space:
mode:
authorChris Mason2007-08-10 20:42:37 +0200
committerDavid Woodhouse2007-08-10 20:42:37 +0200
commitf2183bde1a918d338337955c8e8ba29bd8f5e7b1 (patch)
treee27baea3779112618d2158902270c460444feeff /fs/btrfs/disk-io.h
parentBtrfs: Btree defrag on the extent-mapping tree as well (diff)
downloadkernel-qcow2-linux-f2183bde1a918d338337955c8e8ba29bd8f5e7b1.tar.gz
kernel-qcow2-linux-f2183bde1a918d338337955c8e8ba29bd8f5e7b1.tar.xz
kernel-qcow2-linux-f2183bde1a918d338337955c8e8ba29bd8f5e7b1.zip
Btrfs: Add BH_Defrag to mark buffers that are in need of defragging
This allows the tree walking code to defrag only the newly allocated buffers, it seems to be a good balance between perfect defragging and the performance hit of repeatedly reallocating blocks. Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/disk-io.h')
-rw-r--r--fs/btrfs/disk-io.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/disk-io.h b/fs/btrfs/disk-io.h
index 9e2c261b41ae..81fd18cbd824 100644
--- a/fs/btrfs/disk-io.h
+++ b/fs/btrfs/disk-io.h
@@ -25,8 +25,10 @@
enum btrfs_bh_state_bits {
BH_Checked = BH_PrivateStart,
+ BH_Defrag,
};
BUFFER_FNS(Checked, checked);
+BUFFER_FNS(Defrag, defrag);
static inline struct btrfs_node *btrfs_buffer_node(struct buffer_head *bh)
{