diff options
author | Johannes Thumshirn <johannes.thumshirn@wdc.com> | 2021-03-16 11:04:01 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2021-04-19 17:25:16 +0200 |
commit | cea628008fc8c6c9c7b53902f6659e040f33c790 (patch) | |
tree | acf3292d703348ef47190e845e691fe9d81b1d65 /fs/btrfs/ctree.h | |
parent | btrfs: remove stale comment and logic from btrfs_inode_in_log() (diff) | |
download | linux-cea628008fc8c6c9c7b53902f6659e040f33c790.tar.xz linux-cea628008fc8c6c9c7b53902f6659e040f33c790.zip |
btrfs: remove duplicated in_range() macro
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.thumshirn@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 2 |
1 files changed, 0 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); |