public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* ext4_inode difference between e2fsprogs and ext4
@ 2007-10-11  9:00 Aneesh Kumar K.V
  2007-10-11  9:19 ` Andreas Dilger
  0 siblings, 1 reply; 2+ messages in thread
From: Aneesh Kumar K.V @ 2007-10-11  9:00 UTC (permalink / raw)
  To: Theodore Tso, Andreas Dilger; +Cc: linux-ext4, Mingming Cao

in e2fsprogs we have

union { 
                struct {
                        __u16   l_i_blocks_hi;
                        __u16   i_pad1;
                        __u16   l_i_uid_high;   /* these 2 fields    */
                        __u16   l_i_gid_high;   /* were reserved2[0] */
                        __u32   l_i_reserved2;
                } linux2;



In ext4 we have

  union { 
                struct {
                        __le16  l_i_reserved1;  /* Obsoleted fragment number/size which are removed in ext4 */
                        __le16  l_i_file_acl_high;
                        __le16  l_i_uid_high;   /* these 2 fields */
                        __le16  l_i_gid_high;   /* were reserved2[0] */
                        __u32   l_i_reserved2;
                } linux2;


Last week we were discussing about taking that l_i_reserved1 and using that for making file_acl 64 bit and using the
lower l_i_reserved2 for 64 bit dir_acl. 

Now where will i put l_i_blocks_hi ?

-aneesh

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-10-11  9:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-11  9:00 ext4_inode difference between e2fsprogs and ext4 Aneesh Kumar K.V
2007-10-11  9:19 ` Andreas Dilger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox