From: Mike Frysinger Date: Fri, 8 Feb 2008 12:21:54 +0000 (-0800) Subject: use __u32 in linux/reiserfs_fs.h X-Git-Tag: v2.6.25-rc1~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13d8bcd263cf96c67bd4071ad13cd056dca7b0fb;p=platform%2Fkernel%2Flinux-3.10.git use __u32 in linux/reiserfs_fs.h Since this header is exported to userspace and all the other types in the header have been scrubbed, this brings the last straggler in line. Signed-off-by: Mike Frysinger Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h index 422eab4..8e7eff2 100644 --- a/include/linux/reiserfs_fs.h +++ b/include/linux/reiserfs_fs.h @@ -287,7 +287,7 @@ static inline struct reiserfs_sb_info *REISERFS_SB(const struct super_block *sb) /* Don't trust REISERFS_SB(sb)->s_bmap_nr, it's a u16 * which overflows on large file systems. */ -static inline u32 reiserfs_bmap_count(struct super_block *sb) +static inline __u32 reiserfs_bmap_count(struct super_block *sb) { return (SB_BLOCK_COUNT(sb) - 1) / (sb->s_blocksize * 8) + 1; }