summaryrefslogtreecommitdiff
path: root/ext2fs/ext2_fs_i.h
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-08-12 20:43:50 +0000
committerMiles Bader <miles@gnu.org>1996-08-12 20:43:50 +0000
commit347b8d4526fc126d3af5eee4218ce565f32f3528 (patch)
tree6f6a1f98e33906cc328fc83b7c12d830d9fb6596 /ext2fs/ext2_fs_i.h
parentf08b3bc8a1c28486f0975e5410fc90232dbc7a43 (diff)
(u32, u16, u8, s32, s16, s8):
All uses of these types changed to have a leading `__'.
Diffstat (limited to 'ext2fs/ext2_fs_i.h')
-rw-r--r--ext2fs/ext2_fs_i.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/ext2fs/ext2_fs_i.h b/ext2fs/ext2_fs_i.h
index 6c7e0e71..f3eca448 100644
--- a/ext2fs/ext2_fs_i.h
+++ b/ext2fs/ext2_fs_i.h
@@ -20,21 +20,21 @@
* second extended file system inode data in memory
*/
struct ext2_inode_info {
- u32 i_data[15];
- u32 i_flags;
- u32 i_faddr;
- u8 i_frag_no;
- u8 i_frag_size;
- u16 i_osync;
- u32 i_file_acl;
- u32 i_dir_acl;
- u32 i_dtime;
- u32 i_version;
- u32 i_block_group;
- u32 i_next_alloc_block;
- u32 i_next_alloc_goal;
- u32 i_prealloc_block;
- u32 i_prealloc_count;
+ __u32 i_data[15];
+ __u32 i_flags;
+ __u32 i_faddr;
+ __u8 i_frag_no;
+ __u8 i_frag_size;
+ __u16 i_osync;
+ __u32 i_file_acl;
+ __u32 i_dir_acl;
+ __u32 i_dtime;
+ __u32 i_version;
+ __u32 i_block_group;
+ __u32 i_next_alloc_block;
+ __u32 i_next_alloc_goal;
+ __u32 i_prealloc_block;
+ __u32 i_prealloc_count;
};
#endif /* _LINUX_EXT2_FS_I */