diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2010-03-04 07:55:01 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-03-04 07:55:01 +0300 |
commit | 731eb1a03a8445cde2cb23ecfb3580c6fa7bb690 (patch) | |
tree | 9978388978604207cc78da1c81b97625857256cb /fs/ext4/mballoc.h | |
parent | bda00de7e8569b1fcde27b68fa59e74e14c5f93a (diff) | |
download | linux-731eb1a03a8445cde2cb23ecfb3580c6fa7bb690.tar.xz |
ext4: consolidate in_range() definitions
There are duplicate macro definitions of in_range() in mballoc.h and
balloc.c. This consolidates these two definitions into ext4.h, and
changes extents.c to use in_range() as well.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: Andreas Dilger <adilger@sun.com>
Diffstat (limited to 'fs/ext4/mballoc.h')
-rw-r--r-- | fs/ext4/mballoc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.h b/fs/ext4/mballoc.h index 9b2deed652b7..b619322c76f0 100644 --- a/fs/ext4/mballoc.h +++ b/fs/ext4/mballoc.h @@ -220,8 +220,6 @@ struct ext4_buddy { #define EXT4_MB_BITMAP(e4b) ((e4b)->bd_bitmap) #define EXT4_MB_BUDDY(e4b) ((e4b)->bd_buddy) -#define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1) - static inline ext4_fsblk_t ext4_grp_offs_to_block(struct super_block *sb, struct ext4_free_extent *fex) { |