Home | History | Annotate | Download | only in fsck_lfs

Lines Matching defs:inp

97 	struct inoinfo **inpp, *inp, *pinp;
105 inp = *inpp;
106 if (inp->i_parent == 0 ||
107 inp->i_number == ULFS_ROOTINO)
109 pinp = getinoinfo(inp->i_parent);
110 inp->i_parentp = pinp;
111 inp->i_sibling = pinp->i_child;
112 pinp->i_child = inp;
114 inp = getinoinfo(ULFS_ROOTINO);
115 while (inp) {
116 statemap[inp->i_number] = DFOUND;
117 if (inp->i_child &&
118 statemap[inp->i_child->i_number] == DSTATE)
119 inp = inp->i_child;
120 else if (inp->i_sibling)
121 inp = inp->i_sibling;
123 inp = inp->i_parentp;