The patch titled minix v3: fix superblock definition has been removed from the -mm tree. Its filename was minix-v3-fix-superblock-definition.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: minix v3: fix superblock definition From: Andries Brouwer <Andries.Brouwer@xxxxxx> Somehow we got the layout of the v3 superblock wrong, which causes crashes due to overindexing of the buffer_head array in statfs on large fielsystems. Cc: "Cedric Augonnet" <cedric.augonnet@xxxxxxxxx> Cc: "Daniel Aragones" <danarag@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/minix_fs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN include/linux/minix_fs.h~minix-v3-fix-superblock-definition include/linux/minix_fs.h --- a/include/linux/minix_fs.h~minix-v3-fix-superblock-definition +++ a/include/linux/minix_fs.h @@ -78,8 +78,7 @@ struct minix_super_block { * V3 minix super-block data on disk */ struct minix3_super_block { - __u16 s_ninodes; - __u16 s_nzones; + __u32 s_ninodes; __u16 s_pad0; __u16 s_imap_blocks; __u16 s_zmap_blocks; _ Patches currently in -mm which might be from Andries.Brouwer@xxxxxx are - 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