The patch titled ocfs2 build fix has been removed from the -mm tree. Its filename was ocfs2-build-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ocfs2 build fix From: Joel Becker <Joel.Becker@xxxxxxxxxx> WARNING: "__udivdi3" [fs/ocfs2/ocfs2.ko] undefined! Cc: Mark Fasheh <mark.fasheh@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/ocfs2/ocfs2_fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/ocfs2/ocfs2_fs.h~ocfs2-build-fix fs/ocfs2/ocfs2_fs.h --- a/fs/ocfs2/ocfs2_fs.h~ocfs2-build-fix +++ a/fs/ocfs2/ocfs2_fs.h @@ -587,7 +587,7 @@ static inline u64 ocfs2_backup_super_blk if (index >= 0 && index < OCFS2_MAX_BACKUP_SUPERBLOCKS) { offset <<= (2 * index); - offset /= sb->s_blocksize; + offset >>= sb->s_blocksize_bits; return offset; } _ Patches currently in -mm which might be from Joel.Becker@xxxxxxxxxx are transform-kmem_cache_allocmemset0-kmem_cache_zalloc.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