summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-10-19 15:22:41 +0200
committerChris Mason <chris.mason@oracle.com>2008-09-25 17:03:57 +0200
commit7936ca3883e5fef8ce5cc367a4356ad5fed67180 (patch)
treeee9f2ee67dd030951cb17f2a190cdcae1c2b8537 /fs
parentBtrfs: Defrag only leaves, and only when the parent node has a single objectid (diff)
downloadlinux-7936ca3883e5fef8ce5cc367a4356ad5fed67180.tar.xz
linux-7936ca3883e5fef8ce5cc367a4356ad5fed67180.zip
Btrfs: Default to 8k max packed tails
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/ctree.c2
-rw-r--r--fs/btrfs/file.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 74fec6b83a8b..54967099a8eb 100644
--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -2380,7 +2380,7 @@ int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
}
/* delete the leaf if it is mostly empty */
- if (0 && used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
+ if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
/* push_leaf_left fixes the path.
* make sure the path still points to our leaf
* for possible call to del_ptr below
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 1af2b6534dad..4aacf99bd97f 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -289,7 +289,7 @@ static int dirty_and_release_pages(struct btrfs_trans_handle *trans,
*/
inline_size = end_pos;
if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
- inline_size > 16384 ||
+ inline_size > 8192 ||
inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
u64 last_end;