diff options
Diffstat (limited to 'include/linux/reiserfs_fs.h')
-rw-r--r-- | include/linux/reiserfs_fs.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h index 69a3e12cb8c8..d8653bf232e3 100644 --- a/include/linux/reiserfs_fs.h +++ b/include/linux/reiserfs_fs.h | |||
@@ -283,6 +283,18 @@ static inline struct reiserfs_sb_info *REISERFS_SB(const struct super_block *sb) | |||
283 | return sb->s_fs_info; | 283 | return sb->s_fs_info; |
284 | } | 284 | } |
285 | 285 | ||
286 | /* Don't trust REISERFS_SB(sb)->s_bmap_nr, it's a u16 | ||
287 | * which overflows on large file systems. */ | ||
288 | static inline u32 reiserfs_bmap_count(struct super_block *sb) | ||
289 | { | ||
290 | return (SB_BLOCK_COUNT(sb) - 1) / (sb->s_blocksize * 8) + 1; | ||
291 | } | ||
292 | |||
293 | static inline int bmap_would_wrap(unsigned bmap_nr) | ||
294 | { | ||
295 | return bmap_nr > ((1LL << 16) - 1); | ||
296 | } | ||
297 | |||
286 | /** this says about version of key of all items (but stat data) the | 298 | /** this says about version of key of all items (but stat data) the |
287 | object consists of */ | 299 | object consists of */ |
288 | #define get_inode_item_key_version( inode ) \ | 300 | #define get_inode_item_key_version( inode ) \ |