diff options
| author | David Sterba <[email protected]> | 2024-10-09 14:32:25 +0000 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2024-11-11 13:34:17 +0000 |
| commit | a9c50c975656e551ea4bfe0f292b05d0e2a664c5 (patch) | |
| tree | 03c841bcdceb6983f66a3b3249bb09f6ea0ee646 /fs/btrfs/compression.c | |
| parent | btrfs: drop unused parameter fs_info from btrfs_match_dir_item_name() (diff) | |
| download | kernel-a9c50c975656e551ea4bfe0f292b05d0e2a664c5.tar.gz kernel-a9c50c975656e551ea4bfe0f292b05d0e2a664c5.zip | |
btrfs: drop unused parameter level from alloc_heuristic_ws()
The compression heuristic pass does not need a level, so we can drop the
parameter.
Reviewed-by: Anand Jain <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Diffstat (limited to 'fs/btrfs/compression.c')
| -rw-r--r-- | fs/btrfs/compression.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index 655e3212b409..abcf8ed06afc 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c @@ -702,7 +702,7 @@ static void free_heuristic_ws(struct list_head *ws) kfree(workspace); } -static struct list_head *alloc_heuristic_ws(unsigned int level) +static struct list_head *alloc_heuristic_ws(void) { struct heuristic_ws *ws; @@ -744,7 +744,7 @@ static const struct btrfs_compress_op * const btrfs_compress_op[] = { static struct list_head *alloc_workspace(int type, unsigned int level) { switch (type) { - case BTRFS_COMPRESS_NONE: return alloc_heuristic_ws(level); + case BTRFS_COMPRESS_NONE: return alloc_heuristic_ws(); case BTRFS_COMPRESS_ZLIB: return zlib_alloc_workspace(level); case BTRFS_COMPRESS_LZO: return lzo_alloc_workspace(); case BTRFS_COMPRESS_ZSTD: return zstd_alloc_workspace(level); |
