Searched refs:ino (Results 51 - 75 of 140) sorted by relevance

123456

/freebsd-9.3-release/sbin/fsck_ffs/
H A Dgjournal.c403 ino_t cino, ino; local
446 ino = fs->fs_ipg * cg + cino;
450 if (getino(disk, &p, ino, &mode) == -1)
451 err(1, "getino(cg=%d ino=%d)", cg, ino);
459 //printf("Clearing inode=%d (size=%jd)\n", ino, (intmax_t)dino->di_size);
465 if (ino < cgp->cg_irotor)
466 cgp->cg_irotor = ino;
483 err(1, "putino(cg=%d ino=%d)", cg, ino);
[all...]
H A Dfsutil.c821 getpathname(char *namebuf, ino_t curdir, ino_t ino) argument
828 if (curdir == ino && ino == ROOTINO) {
842 if (curdir != ino) {
846 while (ino != ROOTINO) {
847 idesc.id_number = ino;
850 if ((ckinode(ginode(ino), &idesc) & FOUND) == 0)
854 idesc.id_parent = ino;
865 ino = idesc.id_number;
868 if (ino !
[all...]
/freebsd-9.3-release/sbin/restore/
H A Dutilities.c114 badentry(ep, "not on ino list");
373 ino_t ino; local
375 ino = ((dp = pathsearch(name)) == NULL) ? 0 : dp->d_ino;
377 if (ino == 0 || TSTINO(ino, dumpmap) == 0)
379 return (ino);
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_freebsd_iget.c87 * ino -- the number of the inode desired. This is the unique identifier
98 xfs_ino_t ino,
119 ih = XFS_IHASH(mp, ino);
125 if (ip->i_ino == ino) {
200 error = xfs_iread(mp, tp, ino, &ip, bno);
226 if (iq->i_ino == ino) {
95 xfs_iget( xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, uint flags, uint lock_flags, xfs_inode_t **ipp, xfs_daddr_t bno) argument
H A Dxfs_vfs.h156 #define XVFS_GET_INODE(v, ino, fl) ( xvfs_get_inode(VHEAD(v), ino,fl) )
174 #define PVFS_GET_INODE(b, ino,fl) ( xvfs_get_inode(b, ino,fl) )
/freebsd-9.3-release/sbin/quotacheck/
H A Dquotacheck.c257 ino_t ino, inosused, userino = 0, groupino = 0; local
340 ino = cg * sblock.fs_ipg;
341 setinodebuf(ino);
372 for (i = 0; i < inosused; i++, ino++) {
373 if ((dp = getnextinode(ino)) == NULL || ino < ROOTINO ||
386 (void)printf("out of range UID/GID (%u/%u) ino=%u\n",
388 ino);
402 if ((ino == userino && dev == userdev) ||
403 (ino
[all...]
/freebsd-9.3-release/usr.sbin/quot/
H A Dquot.c109 get_inode(int fd, struct fs *super, ino_t ino) argument
129 if (!ipbuf || ino < last || ino >= last + INOCNT(super)) {
131 (!cgp || cg != ino_to_cg(super, ino))) {
132 cg = ino_to_cg(super, ino);
145 last = (ino / INOCNT(super)) * INOCNT(super);
153 &((struct ufs1_dinode *)ipbuf)[ino % INOCNT(super)]);
154 di2 = &((struct ufs2_dinode *)ipbuf)[ino % INOCNT(super)];
156 if (isclr(cg_inosused(cgp), ino % super->fs_ipg))
/freebsd-9.3-release/sys/fs/ext2fs/
H A Dext2_alloc.c267 printf("realloc: ino %d, lbns %jd-%jd\n\told:", ip->i_number,
354 ino_t ino, ipref; local
380 ino = (ino_t)ext2_hashalloc(pip, cg, (long)ipref, mode, ext2_nodealloccg);
382 if (ino == 0)
384 error = VFS_VGET(pvp->v_mount, ino, LK_EXCLUSIVE, vpp);
386 ext2_vfree(pvp, ino, mode);
418 printf("ext2_valloc: allocated inode %d\n", ino);
979 printf("bad block %lld, ino %llu\n", (long long)bno,
1013 ext2_vfree(struct vnode *pvp, ino_t ino, int mode) argument
1025 if ((u_int)ino > f
[all...]
H A Dext2_lookup.c323 ino_t ino, ino1; local
346 ino = 0;
448 ino = ep->e2d_ino;
523 *dd_ino = ino;
575 if (dp->i_number == ino) {
580 if ((error = VFS_VGET(vdp->v_mount, ino, LK_EXCLUSIVE,
614 if (dp->i_number == ino)
618 if ((error = VFS_VGET(vdp->v_mount, ino, LK_EXCLUSIVE,
649 error = vn_vget_ino(pdp, ino, cnp->cn_lkflags, &tdp);
667 if (ino1 != ino) {
[all...]
/freebsd-9.3-release/sys/fs/cd9660/
H A Dcd9660_vfsops.c550 ino_t ino = isodirino(dp, imp); local
556 return (cd9660_vget_internal(mp, ino, flags, vpp,
608 printf("fhtovp: ino %d, start %ld\n",
628 cd9660_vget(mp, ino, flags, vpp)
630 ino_t ino;
641 return (cd9660_vget_internal(mp, ino, flags, vpp,
651 cd9660_vget_internal(mp, ino, flags, vpp, relocated, isodir)
653 ino_t ino;
668 error = vfs_hash_get(mp, ino, flags, td, vpp, NULL, NULL);
684 * for same ino b
[all...]
H A Dcd9660_node.c318 ino_t ino; local
320 ino = (isonum_733(isodir->extent) + isonum_711(isodir->ext_attr_length))
322 return (ino);
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Dre-mqueue.pl155 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dgfs.h119 #define gfs_file_set_inode(vp, ino) \
120 (((gfs_file_t *)(vp)->v_data)->gfs_ino = (ino))
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir_leaf.h135 xfs_intino_t ino; /* inode number */ member in struct:xfs_dir_put_args
224 int xfs_dir_ino_validate(struct xfs_mount *mp, xfs_ino_t ino);
H A Dxfs_iget.c180 * ino -- the number of the inode desired. This is the unique identifier
193 xfs_ino_t ino,
211 ih = XFS_IHASH(mp, ino);
217 if (ip->i_ino == ino) {
330 error = xfs_iread(mp, tp, ino, &ip, bno);
357 if (iq->i_ino == ino) {
491 xfs_ino_t ino,
504 if ((inode = VFS_GET_INODE(XFS_MTOVFS(mp), ino, 0))) {
510 error = xfs_iget_core(vp, mp, tp, ino, flags,
566 * Look for the inode corresponding to the given ino i
189 xfs_iget_core( xfs_vnode_t *vp, xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, uint flags, uint lock_flags, xfs_inode_t **ipp, xfs_daddr_t bno) argument
488 xfs_iget( xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, uint flags, uint lock_flags, xfs_inode_t **ipp, xfs_daddr_t bno) argument
571 xfs_inode_incore(xfs_mount_t *mp, xfs_ino_t ino, xfs_trans_t *tp) argument
[all...]
H A Dxfs_ialloc.c527 xfs_ino_t ino; /* fs-relative inode to be returned */ local
883 ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset);
915 *inop = ino;
1145 xfs_ino_t ino, /* inode to locate */
1167 ASSERT(ino != NULLFSINO);
1171 agno = XFS_INO_TO_AGNO(mp, ino);
1172 agino = XFS_INO_TO_AGINO(mp, ino);
1175 ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
1179 "xfs_dilocate: ino (0x%llx) agno (%d) >= "
1181 ino,
1142 xfs_dilocate( xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, xfs_fsblock_t *bno, int *len, int *off, uint flags) argument
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_entry_link_resolver.c254 int64_t ino; local
269 ino = archive_entry_ino64(entry);
270 hash = (int)(dev ^ ino);
277 && ino == archive_entry_ino64(le->canonical)) {
H A Darchive_read_support_format_cpio.c104 int64_t ino; member in struct:links_entry
741 int64_t ino; local
747 ino = archive_entry_ino64(entry);
754 if (le->dev == dev && le->ino == ino) {
781 le->ino = ino;
/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_subr.c102 ffs_load_inode(bp, ip, fs, ino)
106 ino_t ino;
111 *((struct ufs1_dinode *)bp->b_data + ino_to_fsbo(fs, ino));
121 *((struct ufs2_dinode *)bp->b_data + ino_to_fsbo(fs, ino));
/freebsd-9.3-release/contrib/libarchive/cpio/test/
H A Dtest_format_newc.c75 int devmajor, devminor, ino, gid; local
144 ino = from_hex(e + 6, 8); /* ino */
184 assert(is_hex(e + 6, 8)); /* ino */
211 assert(is_hex(e + 6, 8)); /* ino */
247 assertEqualInt(ino, from_hex(e + 6, 8)); /* ino */
278 assertEqualMem(e + 8, "00000000", 8); /* ino */
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dnto-procfs.c367 unsigned long long ino; member in struct:printinfo
404 mapinfo_p->ino = 0;
406 if (mapinfo_p->ino == 0) /* Already visited. */
417 printme.ino = mapinfo_p->ino;
429 && mapinfo_p2->ino == mapinfo_p->ino
460 mapinfo_p2->ino = 0;
463 mapinfo_p->ino = 0;
480 printf_filtered ("\tino=0x%x\n", (unsigned int) printme.ino);
[all...]
/freebsd-9.3-release/sys/boot/sparc64/boot1/
H A Dboot1.c418 ino_t ino; local
462 ino_t ino; local
465 if ((ino = lookup(fname)) == 0) {
469 if (fsread(ino, &eh, sizeof(eh)) != sizeof(eh)) {
479 if (fsread(ino, &ph, sizeof(ph)) != sizeof(ph)) {
487 if (fsread(ino, p, ph.p_filesz) != ph.p_filesz) {
/freebsd-9.3-release/lib/libc/gen/
H A Dsem_new.c70 ino_t ino; member in struct:sem_nameinfo
183 ni->ino != sb.st_ino) {
237 ni->ino = sb.st_ino;
/freebsd-9.3-release/sys/fs/nullfs/
H A Dnull_vfsops.c338 nullfs_vget(mp, ino, flags, vpp)
340 ino_t ino;
349 error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, flags, vpp);
/freebsd-9.3-release/sys/ufs/ufs/
H A Dufs_lookup.c243 ino_t ino, ino1; local
282 ino = 0;
463 ino = ep->d_ino;
559 *dd_ino = ino;
607 if ((error = VFS_VGET(vdp->v_mount, ino,
615 if (dp->i_number == ino) {
644 if (dp->i_number == ino)
648 if ((error = VFS_VGET(vdp->v_mount, ino,
706 error = vn_vget_ino(pdp, ino, cnp->cn_lkflags, &tdp);
720 if (ino1 != ino) {
[all...]

Completed in 292 milliseconds

123456