The patch titled endianness fixes for 16T ext patches has been added to the -mm tree. Its filename is fix-ext3-mounts-at-16t-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: endianness fixes for 16T ext patches From: Eric Sandeen <esandeen@xxxxxxxxxx> Fix some endian errors in the 16T ext[23] patches I sent in the past couple weeks. Signed-off-by: Eric Sandeen <esandeen@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/ext3/super.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/ext3/super.c~fix-ext3-mounts-at-16t-fix fs/ext3/super.c --- a/fs/ext3/super.c~fix-ext3-mounts-at-16t-fix +++ a/fs/ext3/super.c @@ -1143,7 +1143,7 @@ static int ext3_check_descriptors (struc for (i = 0; i < sbi->s_groups_count; i++) { if (i == sbi->s_groups_count - 1) - last_block = sbi->s_es->s_blocks_count - 1; + last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1; else last_block = first_block + (EXT3_BLOCKS_PER_GROUP(sb) - 1); _ Patches currently in -mm which might be from esandeen@xxxxxxxxxx are mount-udf-udf_part_flag_read_only-partitions-with-ms_rdonly.patch fix-ext3-mounts-at-16t.patch fix-ext3-mounts-at-16t-fix.patch fix-ext2-mounts-at-16t.patch fix-ext2-mounts-at-16t-fix.patch more-ext3-16t-overflow-fixes.patch more-ext3-16t-overflow-fixes-fix.patch ext3-inode-numbers-are-unsigned-long.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