summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/super.c
diff options
context:
space:
mode:
authorFilipe David Borba Manana2013-08-08 23:45:48 +0200
committerDavid Sterba2014-10-02 17:29:24 +0200
commit95ac567af212db3293af3897ccb521efdf1dd7ff (patch)
treefaed6311cacc75c0aca34203b4674690d56bb448 /fs/btrfs/super.c
parentbtrfs: remove unused variable from btrfs_parse_options (diff)
downloadkernel-qcow2-linux-95ac567af212db3293af3897ccb521efdf1dd7ff.tar.gz
kernel-qcow2-linux-95ac567af212db3293af3897ccb521efdf1dd7ff.tar.xz
kernel-qcow2-linux-95ac567af212db3293af3897ccb521efdf1dd7ff.zip
Btrfs: set default max_inline to 8KiB instead of 8MiB
8MiB is way too large and likely set by mistake. This is not a significant issue as in practice the max amount of data added to an inline extent is also limited by the page cache and btree leaf sizes. Signed-off-by: Filipe David Borba Manana <fdmanana@gmail.com> Reviewed-by: David Sterba <dsterba@suse.cz> Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r--fs/btrfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 1c6da8e00c1b..b1d2a42f379d 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -1014,7 +1014,7 @@ static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
seq_puts(seq, ",nodatacow");
if (btrfs_test_opt(root, NOBARRIER))
seq_puts(seq, ",nobarrier");
- if (info->max_inline != 8192 * 1024)
+ if (info->max_inline != BTRFS_DEFAULT_MAX_INLINE)
seq_printf(seq, ",max_inline=%llu", info->max_inline);
if (info->alloc_start != 0)
seq_printf(seq, ",alloc_start=%llu", info->alloc_start);