Home
last modified time | relevance | path

Searched defs:inoinfo (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sbin/fsck_lfs/
H A Dfsck.h145 extern struct inoinfo { struct
146 struct inoinfo *i_nexthash; /* next entry in hash chain */ argument
147 struct inoinfo *i_child, *i_sibling, *i_parentp; argument
148 ino_t i_number; /* inode number of this entry */
149 ino_t i_parent; /* inode number of parent */
150 ino_t i_dotdot; /* inode number of `..' */
151 size_t i_isize; /* size of inode */
152 u_int i_numblks; /* size of block array in bytes */
153 daddr_t i_blks[1]; /* actually longer */
/netbsd-src/sbin/fsck_ext2fs/
H A Dfsck.h177 extern struct inoinfo { struct
178 struct inoinfo *i_nexthash; /* next entry in hash chain */ argument
179 struct inoinfo *i_child, *i_sibling, *i_parentp; argument
180 ino_t i_number; /* inode number of this entry */
181 ino_t i_parent; /* inode number of parent */
182 ino_t i_dotdot; /* inode number of `..' */
183 u_int64_t i_isize; /* size of inode */
184 u_int i_numblks; /* size of block array in bytes */
186 int32_t i_blks[1]; /* actually longer */
/netbsd-src/sbin/fsck_ffs/
H A Dfsck.h245 extern struct inoinfo { struct
246 struct inoinfo *i_nexthash; /* next entry in hash chain */ argument
247 struct inoinfo *i_child, *i_sibling; argument
248 ino_t i_number; /* inode number of this entry */
249 ino_t i_parent; /* inode number of parent */
250 ino_t i_dotdot; /* inode number of `..' */
251 size_t i_isize; /* size of inode */
252 u_int i_numblks; /* size of block array in bytes */
253 int64_t i_blks[1]; /* actually longer */
H A Dutilities.c589 inoinfo(ino_t inum) in inoinfo() function