From c4d54aa2f71c9a263a6dcf52b0ae9cd8224087fe Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 31 Aug 2016 20:46:49 -0400 Subject: [PATCH] e2fsck: fix an alignment problem which causes sparc64 in the journal code Signed-off-by: Theodore Ts'o --- e2fsck/jfs_user.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2fsck/jfs_user.h b/e2fsck/jfs_user.h index 16185a5b..75877f33 100644 --- a/e2fsck/jfs_user.h +++ b/e2fsck/jfs_user.h @@ -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]; };