diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-11-03 09:28:42 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-01-05 02:38:57 -0500 |
commit | 3767ac21f471fe669a7d9f6abef682ddac8fc3d8 (patch) | |
tree | c028ea68502e9005e3fa353c7ca54797d12a136a /fs/gfs2/incore.h | |
parent | ad6203f2b46c2217f74b2e88299640eef5889e72 (diff) |
GFS2: Move di_eattr into "proper" inode
This moves the di_eattr field out of gfs2_inode_host and
into the inode proper.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index 15ca3a75cf12..fb2fd4adaae4 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h | |||
@@ -236,7 +236,6 @@ enum { | |||
236 | struct gfs2_dinode_host { | 236 | struct gfs2_dinode_host { |
237 | u64 di_size; /* number of bytes in file */ | 237 | u64 di_size; /* number of bytes in file */ |
238 | u32 di_flags; /* GFS2_DIF_... */ | 238 | u32 di_flags; /* GFS2_DIF_... */ |
239 | u64 di_eattr; /* extended attribute block number */ | ||
240 | }; | 239 | }; |
241 | 240 | ||
242 | struct gfs2_inode { | 241 | struct gfs2_inode { |
@@ -244,6 +243,7 @@ struct gfs2_inode { | |||
244 | u64 i_no_addr; | 243 | u64 i_no_addr; |
245 | u64 i_no_formal_ino; | 244 | u64 i_no_formal_ino; |
246 | u64 i_generation; | 245 | u64 i_generation; |
246 | u64 i_eattr; | ||
247 | unsigned long i_flags; /* GIF_... */ | 247 | unsigned long i_flags; /* GIF_... */ |
248 | 248 | ||
249 | struct gfs2_dinode_host i_di; /* To be replaced by ref to block */ | 249 | struct gfs2_dinode_host i_di; /* To be replaced by ref to block */ |