diff options
author | Evgeniy Dushistov <dushistov@mail.ru> | 2007-02-12 03:54:32 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:40 -0500 |
commit | 54fb996ac15c4014fa4d6b0ec8e42da134204897 (patch) | |
tree | ee7a98270cabefc996a13691a7c9d63141a8d3a9 /include/linux/ufs_fs_i.h | |
parent | 3313e29267414e4e3bf0d3de1caf9cb439b64aaf (diff) |
[PATCH] ufs2 write: block allocation update
Patch adds ability to work with 64bit metadata, this made by replacing work
with 32bit pointers by inline functions.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/ufs_fs_i.h')
-rw-r--r-- | include/linux/ufs_fs_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ufs_fs_i.h b/include/linux/ufs_fs_i.h index fef77d52b029..6496caa82f9e 100644 --- a/include/linux/ufs_fs_i.h +++ b/include/linux/ufs_fs_i.h | |||
@@ -25,7 +25,7 @@ struct ufs_inode_info { | |||
25 | __u32 i_unused2; | 25 | __u32 i_unused2; |
26 | __u32 i_oeftflag; | 26 | __u32 i_oeftflag; |
27 | __u16 i_osync; | 27 | __u16 i_osync; |
28 | __u32 i_lastfrag; | 28 | __u64 i_lastfrag; |
29 | __u32 i_dir_start_lookup; | 29 | __u32 i_dir_start_lookup; |
30 | struct inode vfs_inode; | 30 | struct inode vfs_inode; |
31 | }; | 31 | }; |