Lines Matching defs:ino

626 freeblk(fsck_ino_t ino, daddr32_t blkno, int frags)
636 idesc.id_number = ino;
653 getpathname(caddr_t namebuf, fsck_ino_t curdir, fsck_ino_t ino)
662 (void) printf("debug: getpathname(curdir %d, ino %d)\n",
663 curdir, ino);
670 if ((curdir == UFSROOTINO) && (ino == UFSROOTINO)) {
696 idesc.id_parent = ino;
711 * If curdir == ino, need to get a handle on .. so we
712 * can search it for ino's name. Otherwise, just search
713 * the given directory for ino. Repeat until out of space
716 if (curdir != ino) {
720 while (ino != UFSROOTINO && ino != 0) {
721 idesc.id_number = ino;
725 if ((ckinode(ginode(ino), &idesc, CKI_TRAVERSE) & FOUND) == 0) {
726 inp = getinoinfo(ino);
741 idesc.id_parent = ino;
764 if (ino == idesc.id_number)
772 ino = idesc.id_number;
784 if (ino != UFSROOTINO || cp == &namebuf[MAXPATHLEN - 1]) {
2571 vfileerror(fsck_ino_t cwd, fsck_ino_t ino, caddr_t fmt, va_list ap)
2578 pinode(ino);
2580 getpathname(pathbuf, cwd, ino);
2581 if (ino < UFSROOTINO || ino > maxino) {
2585 dp = ginode(ino);
2587 pfatal("%s=%s\n", file_id(ino, dp->di_mode), pathbuf);
2593 direrror(fsck_ino_t ino, caddr_t fmt, ...)
2598 vfileerror(ino, ino, fmt, ap);
2603 vdirerror(fsck_ino_t ino, caddr_t fmt, va_list ap)
2605 vfileerror(ino, ino, fmt, ap);
2609 fileerror(fsck_ino_t cwd, fsck_ino_t ino, caddr_t fmt, ...)
2614 vfileerror(cwd, ino, fmt, ap);
2629 add_orphan_dir(fsck_ino_t ino)
2631 if (tsearch((void *)ino, &limbo_dirs, ino_t_cmp) == NULL)
2640 remove_orphan_dir(fsck_ino_t ino)
2642 (void) tdelete((void *)ino, &limbo_dirs, ino_t_cmp);