Lines Matching defs:ufs1_dinode
82 struct ufs1_dinode { struct
83 uint16_t di_mode; /* 0: IFMT, permissions; see below. */
84 int16_t di_nlink; /* 2: File link count. */
85 uint16_t di_oldids[2]; /* 4: Ffs: old user and group ids. */
86 uint64_t di_size; /* 8: File byte count. */
87 int32_t di_atime; /* 16: Last access time. */
88 int32_t di_atimensec; /* 20: Last access time. */
89 int32_t di_mtime; /* 24: Last modified time. */
90 int32_t di_mtimensec; /* 28: Last modified time. */
91 int32_t di_ctime; /* 32: Last inode change time. */
92 int32_t di_ctimensec; /* 36: Last inode change time. */
93 int32_t di_db[UFS_NDADDR]; /* 40: Direct disk blocks. */
94 int32_t di_ib[UFS_NIADDR]; /* 88: Indirect disk blocks. */
95 uint32_t di_flags; /* 100: Status flags (chflags). */
96 uint32_t di_blocks; /* 104: Blocks actually held. */
97 int32_t di_gen; /* 108: Generation number. */
98 uint32_t di_uid; /* 112: File owner. */
99 uint32_t di_gid; /* 116: File group. */
100 uint64_t di_modrev; /* 120: i_modrev for NFSv4 */