diff options
author | David Sterba <dsterba@suse.com> | 2024-01-25 19:44:47 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2024-03-04 18:24:46 +0300 |
commit | 2b712e3bb2c46165a3d35096f37bea6aa47f45d4 (patch) | |
tree | d686755c2f322f63791794efcdfba6be0b65f09d /fs/btrfs/zstd.c | |
parent | dc52796151a7a7c6993c6d17441d75eee467c8a8 (diff) | |
download | linux-2b712e3bb2c46165a3d35096f37bea6aa47f45d4.tar.xz |
btrfs: remove unused included headers
With help of neovim, LSP and clangd we can identify header files that
are not actually needed to be included in the .c files. This is focused
only on removal (with minor fixups), further cleanups are possible but
will require doing the header files properly with forward declarations,
minimized includes and include-what-you-use care.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/zstd.c')
-rw-r--r-- | fs/btrfs/zstd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/btrfs/zstd.c b/fs/btrfs/zstd.c index 0d66db8bc1d4..4cba8176b074 100644 --- a/fs/btrfs/zstd.c +++ b/fs/btrfs/zstd.c @@ -19,7 +19,6 @@ #include <linux/zstd.h> #include "misc.h" #include "compression.h" -#include "ctree.h" #define ZSTD_BTRFS_MAX_WINDOWLOG 17 #define ZSTD_BTRFS_MAX_INPUT (1 << ZSTD_BTRFS_MAX_WINDOWLOG) |