diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2023-06-16 20:24:43 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2023-06-19 18:01:44 +0300 |
commit | e794203e9d2d610faf6c5926345091193b202af5 (patch) | |
tree | 5c297bab097ae89f1c4539fdd9d700b9654c23e4 /fs/btrfs | |
parent | 160fe8f6fdb13da6111677be6263e5d65e875987 (diff) | |
download | linux-e794203e9d2d610faf6c5926345091193b202af5.tar.xz |
btrfs: make btrfs_compressed_bioset static
The 'btrfs_compressed_bioset' struct isn't exported outside of the
fs/btrfs/compression.c file, so make it static to fix the following
sparse warning:
fs/btrfs/compression.c:40:16: warning: symbol 'btrfs_compressed_bioset' was not declared. Should it be static?
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/compression.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index f1004259c3d3..8818ed5c390f 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c @@ -37,7 +37,7 @@ #include "file-item.h" #include "super.h" -struct bio_set btrfs_compressed_bioset; +static struct bio_set btrfs_compressed_bioset; static const char* const btrfs_compress_types[] = { "", "zlib", "lzo", "zstd" }; |