Skip to content

Commit

Permalink
btrfs: allow setting zlib compression level via :9
Browse files Browse the repository at this point in the history
This is bikeshedding, but it seems people are drastically more likely to
understand "zlib:9" as compression level rather than an algorithm
version compared to "zlib9".

Based on feedback on the mailinglist, the ":9" will be the only accepted
syntax. The level must be a single digit. Unrecognized format will
result to the default, for forward compatibility in a similar way the
compression algorithm specifier was relaxed in commit
a7164fa ("btrfs: prepare for extensions in compression
options").

Signed-off-by: Adam Borowski <[email protected]>
Reviewed-by: David Sterba <[email protected]>
[ tighten the accepted format ]
Signed-off-by: David Sterba <[email protected]>
  • Loading branch information
kilobyte authored and kdave committed Nov 1, 2017
1 parent f51d2b5 commit fa4d885
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions fs/btrfs/compression.c
Original file line number Diff line number Diff line change
Expand Up @@ -1111,8 +1111,9 @@ unsigned int btrfs_compress_str2level(const char *str)
if (strncmp(str, "zlib", 4) != 0)
return 0;

if ('1' <= str[4] && str[4] <= '9' )
return str[4] - '0';
/* Accepted form: zlib:1 up to zlib:9 and nothing left after the number */
if (str[4] == ':' && '1' <= str[5] && str[5] <= '9' && str[6] == 0)
return str[5] - '0';

return 0;
}
2 changes: 1 addition & 1 deletion fs/btrfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
else
seq_printf(seq, ",compress=%s", compress_type);
if (info->compress_level)
seq_printf(seq, "%d", info->compress_level);
seq_printf(seq, ":%d", info->compress_level);
}
if (btrfs_test_opt(info, NOSSD))
seq_puts(seq, ",nossd");
Expand Down

0 comments on commit fa4d885

Please sign in to comment.