The patch titled use __u32 in linux/reiserfs_fs.h has been added to the -mm tree. Its filename is use-__u32-in-linux-reiserfs_fsh.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: use __u32 in linux/reiserfs_fs.h From: Mike Frysinger <vapier@xxxxxxxxxx> 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 <vapier@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/reiserfs_fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/reiserfs_fs.h~use-__u32-in-linux-reiserfs_fsh include/linux/reiserfs_fs.h --- a/include/linux/reiserfs_fs.h~use-__u32-in-linux-reiserfs_fsh +++ a/include/linux/reiserfs_fs.h @@ -287,7 +287,7 @@ static inline struct reiserfs_sb_info *R /* 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; } _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are git-kbuild.patch asm-posix_typesh-scrub-__glibc__.patch procfs-constify-function-pointer-tables.patch remove-__strict_ansi__-from-linux-typesh.patch linux-typesh-always-export-64bit-aligned-defines.patch drop-linux-ufs_fsh-from-userspace-export-and-relocate-it-to-fs-ufs-ufs_fsh.patch use-__u32-in-linux-reiserfs_fsh.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html