From: Adrian Hunter Date: Wed, 23 Jul 2008 12:23:11 +0000 (+0300) Subject: UBIFS: do not union creat_sqnum and del_cmtno X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bc813355c704e5916a86dd4b96fd226bfa3fc6ca;p=linux-beck.git UBIFS: do not union creat_sqnum and del_cmtno The values in these two fields need to be preserved independently and so a union cannot be used. Signed-off-by: Adrian Hunter --- diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h index dfb4b93614ff..d342c6907244 100644 --- a/fs/ubifs/ubifs.h +++ b/fs/ubifs/ubifs.h @@ -374,10 +374,8 @@ struct ubifs_gced_idx_leb { */ struct ubifs_inode { struct inode vfs_inode; - union { - unsigned long long creat_sqnum; - unsigned long long del_cmtno; - }; + unsigned long long creat_sqnum; + unsigned long long del_cmtno; unsigned int xattr_size; unsigned int xattr_cnt; unsigned int xattr_names;