Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f4fa27c16ba9b6910c5b815e5c13a7e8249277f0
Commit:     f4fa27c16ba9b6910c5b815e5c13a7e8249277f0
Parent:     5085b607fb6c03d7668126b55cb54f20969c203c
Author:     Andries Brouwer <[EMAIL PROTECTED]>
AuthorDate: Tue Feb 20 13:57:47 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Feb 20 17:10:13 2007 -0800

    [PATCH] minix v3: fix superblock definition
    
    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" <[EMAIL PROTECTED]>
    Cc: "Daniel Aragones" <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/linux/minix_fs.h |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/include/linux/minix_fs.h b/include/linux/minix_fs.h
index 9850d51..0e39745 100644
--- a/include/linux/minix_fs.h
+++ b/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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to