The in_range() macro is defined twice in btrfs' source, once in ctree.h and once in misc.h.
Remove the definition in ctree.h and include misc.h in the files depending on it. Signed-off-by: Johannes Thumshirn <johannes.thumsh...@wdc.com> --- fs/btrfs/ctree.h | 2 -- fs/btrfs/extent_io.c | 1 + fs/btrfs/file-item.c | 1 + fs/btrfs/raid56.c | 1 + 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 751ab9f80e4c..1c18b4360df9 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -3733,8 +3733,6 @@ static inline int btrfs_defrag_cancelled(struct btrfs_fs_info *fs_info) return signal_pending(current); } -#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) - /* Sanity test specific functions */ #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS void btrfs_test_destroy_inode(struct inode *inode); diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index c18c2be57678..4b2579ebf42a 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c @@ -27,6 +27,7 @@ #include "subpage.h" #include "zoned.h" #include "block-group.h" +#include "misc.h" static struct kmem_cache *extent_state_cache; static struct kmem_cache *extent_buffer_cache; diff --git a/fs/btrfs/file-item.c b/fs/btrfs/file-item.c index 47cd3a6dc635..1b2e2291939e 100644 --- a/fs/btrfs/file-item.c +++ b/fs/btrfs/file-item.c @@ -15,6 +15,7 @@ #include "volumes.h" #include "print-tree.h" #include "compression.h" +#include "misc.h" #define __MAX_CSUM_ITEMS(r, size) ((unsigned long)(((BTRFS_LEAF_DATA_SIZE(r) - \ sizeof(struct btrfs_item) * 2) / \ diff --git a/fs/btrfs/raid56.c b/fs/btrfs/raid56.c index 8c31357f08ed..f60215b5d154 100644 --- a/fs/btrfs/raid56.c +++ b/fs/btrfs/raid56.c @@ -18,6 +18,7 @@ #include "volumes.h" #include "raid56.h" #include "async-thread.h" +#include "misc.h" /* set when additional merges to this rbio are not allowed */ #define RBIO_RMW_LOCKED_BIT 1 -- 2.30.0