diff options
author | Qu Wenruo <wqu@suse.com> | 2025-08-14 10:29:58 +0930 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2025-09-23 08:49:16 +0200 |
commit | 9c8f4cf45651b8f07bd06df443871d526dc53cea (patch) | |
tree | f2944851b447823146017edcf63f877fef5461dd /fs/btrfs/compression.h | |
parent | 856d46c31343169a566f44035c4c74b2f0842438 (diff) |
btrfs: cleanup the per-module compression workspace managers
Since all workspaces are handled by the per-fs workspace managers, we
can safely remove the old per-module managers.
Signed-off-by: Qu Wenruo <wqu@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/compression.h')
-rw-r--r-- | fs/btrfs/compression.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/compression.h b/fs/btrfs/compression.h index 70a3294bd14a..4fa4d3b9fa57 100644 --- a/fs/btrfs/compression.h +++ b/fs/btrfs/compression.h @@ -183,8 +183,6 @@ int zstd_decompress(struct list_head *ws, const u8 *data_in, size_t destlen); int zstd_alloc_workspace_manager(struct btrfs_fs_info *fs_info); void zstd_free_workspace_manager(struct btrfs_fs_info *fs_info); -void zstd_init_workspace_manager(struct btrfs_fs_info *fs_info); -void zstd_cleanup_workspace_manager(void); struct list_head *zstd_alloc_workspace(struct btrfs_fs_info *fs_info, int level); void zstd_free_workspace(struct list_head *ws); struct list_head *zstd_get_workspace(struct btrfs_fs_info *fs_info, int level); |