]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
e2fsck: fix an alignment problem which causes sparc64 in the journal code
authorTheodore Ts'o <tytso@mit.edu>
Thu, 1 Sep 2016 00:46:49 +0000 (20:46 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 1 Sep 2016 05:01:53 +0000 (01:01 -0400)
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
e2fsck/jfs_user.h

index 16185a5b23d1b94ac773578bc66fef72c8342d4d..75877f33dfce964817ddeb3a199eb7fb8f05742f 100644 (file)
@@ -38,10 +38,10 @@ struct buffer_head {
 #endif
        io_channel      b_io;
        int             b_size;
-       unsigned long long b_blocknr;
-       int             b_dirty;
-       int             b_uptodate;
        int             b_err;
+       unsigned int    b_dirty:1;
+       unsigned int    b_uptodate:1;
+       unsigned long long b_blocknr;
        char            b_data[1024];
 };