Lines Matching defs:inode
53 #define EXT2_NDADDR 12 /* Direct addresses in inode. */
54 #define EXT2_NIADDR 3 /* Indirect addresses in inode. */
65 * The inode is used to describe each active (or recently active) file in the
73 struct inode {
74 struct vnode *i_vnode;/* Vnode associated with this inode. */
77 ino_t i_number; /* The identity of the inode. */
102 ext_time_t i_ctime; /* Last inode change time. */
106 int32_t i_ctimensec; /* Last inode change time. */
111 dev_t i_rdev; /* Major/minor inode values. */
167 * passes as inode flags but that we cannot pass directly.
184 /* Convert between inode pointers and vnode pointers. */
185 #define VTOI(vp) ((struct inode *)(vp)->v_data)