Deleted Added
full compact
35c35
< * $FreeBSD: head/sys/fs/ext2fs/inode.h 217582 2011-01-19 16:46:13Z jhb $
---
> * $FreeBSD: head/sys/fs/ext2fs/inode.h 221126 2011-04-27 18:15:34Z jhb $
66c66
< u_int32_t i_flag; /* flags, see below */
---
> uint32_t i_flag; /* flags, see below */
74,77c74,77
< int32_t i_count; /* Size of free slot in directory. */
< doff_t i_endoff; /* End of useful stuff in directory. */
< doff_t i_diroff; /* Offset in dir, where we found last entry. */
< doff_t i_offset; /* Offset of free space in directory. */
---
> int32_t i_count; /* Size of free slot in directory. */
> doff_t i_endoff; /* End of useful stuff in directory. */
> doff_t i_diroff; /* Offset in dir, where we found last entry. */
> doff_t i_offset; /* Offset of free space in directory. */
79,83c79,83
< u_int32_t i_block_group;
< u_int32_t i_next_alloc_block;
< u_int32_t i_next_alloc_goal;
< u_int32_t i_prealloc_block;
< u_int32_t i_prealloc_count;
---
> uint32_t i_block_group;
> uint32_t i_next_alloc_block;
> uint32_t i_next_alloc_goal;
> uint32_t i_prealloc_block;
> uint32_t i_prealloc_count;
86c86
< u_int16_t i_mode; /* IFMT, permissions; see below. */
---
> uint16_t i_mode; /* IFMT, permissions; see below. */
88c88
< u_int64_t i_size; /* File byte count. */
---
> uint64_t i_size; /* File byte count. */
97c97
< u_int32_t i_flags; /* Status flags (chflags). */
---
> uint32_t i_flags; /* Status flags (chflags). */
100,101c100,101
< u_int32_t i_uid; /* File owner. */
< u_int32_t i_gid; /* File group. */
---
> uint32_t i_uid; /* File owner. */
> uint32_t i_gid; /* File group. */
165,168c165,168
< u_int16_t ufid_len; /* Length of structure. */
< u_int16_t ufid_pad; /* Force 32-bit alignment. */
< ino_t ufid_ino; /* File number (ino). */
< int32_t ufid_gen; /* Generation number. */
---
> uint16_t ufid_len; /* Length of structure. */
> uint16_t ufid_pad; /* Force 32-bit alignment. */
> ino_t ufid_ino; /* File number (ino). */
> int32_t ufid_gen; /* Generation number. */