diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-10-19 09:22:41 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 11:03:57 -0400 |
commit | 7936ca3883e5fef8ce5cc367a4356ad5fed67180 (patch) | |
tree | ee9f2ee67dd030951cb17f2a190cdcae1c2b8537 /fs/btrfs/file.c | |
parent | a6b6e75e096f436f0cc56edf5bca96301e194491 (diff) |
Btrfs: Default to 8k max packed tails
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r-- | fs/btrfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
289 | */ | 289 | */ |
290 | inline_size = end_pos; | 290 | inline_size = end_pos; |
291 | if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) || | 291 | if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) || |
292 | inline_size > 16384 || | 292 | inline_size > 8192 || |
293 | inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) { | 293 | inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) { |
294 | u64 last_end; | 294 | u64 last_end; |
295 | 295 | ||