Searched refs:ino (Results 101 - 125 of 140) sorted by relevance

123456

/freebsd-9.3-release/sys/fs/devfs/
H A Ddevfs_devs.c695 devfs_free_cdp_inode(ino_t ino) argument
698 if (ino > 0)
699 free_unr(devfs_inos, ino);
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_mountops.c356 _xfs_vget(mp, ino, flags, vpp)
358 ino_t ino;
365 printf("XVFS_GET_VNODE(MNTTOVFS(mp), &vp, ino, error);\n");
H A Dxfs_ioctl.c232 xfs_ino_t ino;
265 ino = xfid->xfs_fid_ino;
274 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_inode.h183 #define XFS_IHASH(mp,ino) ((mp)->m_ihash + (((uint)(ino)) % (mp)->m_ihsize))
H A Dxfsidbg.c222 static char * xfs_fmtino(xfs_ino_t ino, xfs_mount_t *mp);
3288 xfs_ino_t ino; local
3301 ino = ((xfs_ino_t)(unsigned long)ktep->val[6] << 32) |
3303 qprintf("%s %s:%s ip %p ino %s %cf\n",
3305 (char *)ktep->val[2], ip, xfs_fmtino(ino, ip->i_mount),
3944 xfs_fmtino(xfs_ino_t ino, xfs_mount_t *mp) argument
3950 (unsigned long long) ino,
3951 XFS_INO_TO_AGNO(mp, ino),
3952 XFS_INO_TO_AGBNO(mp, ino),
3953 XFS_INO_TO_OFFSET(mp, ino));
5853 xfs_ino_t ino; local
5997 xfs_ino_t ino; local
6023 xfs_ino_t ino; local
[all...]
H A Dxfs_vfsops.c1622 xfs_ino_t ino; local
1632 ino = xfid->xfs_fid_ino;
1636 * NFS can sometimes send requests for ino 0. Fail them gracefully.
1638 if (ino == 0)
1641 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
H A Dxfs_log_recover.c2287 xfs_ino_t ino; local
2301 ino = in_f->ilf_ino;
2319 xfs_imap(log->l_mp, NULL, ino, &imap, 0);
2349 "xfs_inode_recover: Bad inode magic number, dino ptr = 0x%p, dino bp = 0x%p, ino = %Ld",
2350 dip, bp, ino);
2359 "xfs_inode_recover: Bad inode log record, rec ptr 0x%p, ino %Ld",
2360 item, ino);
2392 "xfs_inode_recover: Bad regular inode log record, rec ptr 0x%p, ino ptr = 0x%p, ino bp = 0x%p, ino
3202 xfs_ino_t ino; local
[all...]
H A Dxfs_mount.c349 xfs_ino_t ino; local
355 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
360 if ((vfs->vfs_flag & VFS_32BITINODES) && ino > max_inum) {
383 ino = XFS_AGINO_TO_INO(mp, index, agino);
384 if (ino > max_inum) {
H A Dxfs_inode.c150 xfs_ino_t ino,
166 error = xfs_imap(mp, tp, ino, &imap, XFS_IMAP_LOOKUP);
849 xfs_ino_t ino,
861 ip->i_ino = ino;
1088 xfs_ino_t ino; local
1099 ialloc_context, call_again, &ino);
1103 if (*call_again || ino == NULLFSINO) {
1114 error = xfs_trans_iget(tp->t_mountp, tp, ino,
2590 * ino -- the inode number of the inode to be located
2600 xfs_ino_t ino,
147 xfs_inotobp( xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, xfs_dinode_t **dipp, xfs_buf_t **bpp, int *offset) argument
846 xfs_iread( xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, xfs_inode_t **ipp, xfs_daddr_t bno) argument
2597 xfs_imap( xfs_mount_t *mp, xfs_trans_t *tp, xfs_ino_t ino, xfs_imap_t *imap, uint flags) argument
[all...]
/freebsd-9.3-release/contrib/ipfilter/perl/
H A DIpfanaly.pl438 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$junk)=stat REC;
/freebsd-9.3-release/libexec/rtld-elf/
H A Drtld.h279 ino_t ino; /* Object's inode number */ member in struct:Struct_Obj_Entry
/freebsd-9.3-release/sys/fs/ntfs/
H A Dntfs_subr.c87 dprintf(("ntfs_ntvattrrele: ino: %d, type: 0x%x\n",
112 dprintf(("ntfs_findvattr: node not loaded, ino: %d\n",
172 "ino: %d, type: 0x%x, name: %s, vcn: %d\n", \
177 "ino: %d, type: 0x%x, vcn: %d\n", \
189 "ino: %d, type: 0x%x, name: %s, vcn: %d\n", \
206 "attrlist: ino: %d, attr: 0x%x, vcn: %d\n", \
222 dprintf(("ntfs_ntvattrget: attribute in ino: %d\n",
248 "ino: %d, type: 0x%x, name: %.*s, vcn: %d\n", \
271 dprintf(("ntfs_loadntnode: loading ino: %d\n",ip->i_number));
317 dprintf(("ntfs_loadntnode: load attrs for ino
377 ntfs_ntlookup( struct ntfsmount * ntmp, ino_t ino, struct ntnode ** ipp) argument
[all...]
/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_vfsops.c1650 ffs_vget(mp, ino, flags, vpp)
1652 ino_t ino;
1656 return (ffs_vgetf(mp, ino, flags, vpp, 0));
1660 ffs_vgetf(mp, ino, flags, vpp, ffs_flags)
1662 ino_t ino;
1675 error = vfs_hash_get(mp, ino, flags, curthread, vpp, NULL, NULL);
1691 * for same ino by different processes. We just allow them to race
1729 ip->i_number = ino;
1748 error = vfs_hash_insert(vp, ino, flags, curthread, vpp, NULL, NULL);
1753 error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
[all...]
H A Dffs_softdep.c257 softdep_freefile(pvp, ino, mode)
259 ino_t ino;
328 softdep_setup_inofree(mp, bp, ino, wkhd)
331 ino_t ino;
1315 static int stat_jaddref; /* bufs redirtied as ino bitmap can not write */
2062 pagedep_find(pagedephd, ino, lbn, mp, flags, pagedeppp)
2064 ino_t ino;
2073 if (ino == pagedep->pd_ino && lbn == pagedep->pd_lbn &&
2089 pagedep_lookup(mp, bp, ino, lbn, flags, pagedeppp)
2092 ino_t ino;
3899 newinoref(struct inoref *inoref, ino_t ino, ino_t parent, off_t diroff, nlink_t nlink, uint16_t mode) argument
3919 newjaddref(struct inode *dp, ino_t ino, off_t diroff, int16_t nlink, uint16_t mode) argument
9358 ino_t ino; local
10634 ino_t ino; local
11498 ino_t ino; local
13085 ino_t ino; local
13145 ino_t firstino, lastino, ino; local
[all...]
/freebsd-9.3-release/sys/kern/
H A Dsys_pipe.c1516 ino_t ino; local
1578 ino = cpipe->pipe_ino;
1593 if (ino != 0 && ino != (ino_t)-1)
1594 free_unr(pipeino_unr, ino);
/freebsd-9.3-release/sys/compat/linprocfs/
H A Dlinprocfs.c1011 ino_t ino; local
1051 ino = 0;
1072 ino = vat.va_fileid;
1096 (u_long)ino,
/freebsd-9.3-release/sys/sys/
H A Dconf.h308 void devfs_free_cdp_inode(ino_t ino);
/freebsd-9.3-release/usr.sbin/makefs/cd9660/
H A Dcd9660_write.c295 __func__, (int)inode->st.st_ino, inode->ino));
/freebsd-9.3-release/lib/libc/gen/
H A Dfts-compat.c909 ino_t ino; local
957 ino = p->fts_ino = sbp->st_ino;
971 if (ino == t->fts_ino && dev == t->fts_dev) {
H A Dfts.c888 ino_t ino; local
936 ino = p->fts_ino = sbp->st_ino;
950 if (ino == t->fts_ino && dev == t->fts_dev) {
/freebsd-9.3-release/usr.bin/ar/
H A Dwrite.c186 obj->ino = sb.st_ino;
356 obj->ino = 0;
677 archive_entry_set_ino(entry, obj->ino);
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_vfsops.c96 static int zfs_vget(vfs_t *vfsp, ino_t ino, int flags, vnode_t **vpp);
2052 zfs_vget(vfs_t *vfsp, ino_t ino, int flags, vnode_t **vpp) argument
2063 if (ino == ZFSCTL_INO_ROOT || ino == ZFSCTL_INO_SNAPDIR ||
2064 (zfsvfs->z_shares_dir != 0 && ino == zfsvfs->z_shares_dir))
2068 err = zfs_zget(zfsvfs, ino, &zp);
2081 (*vpp)->v_hash = ino;
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-nfs.c858 ino_t ino; local
875 Parse_fh((const u_char *)dp, len, &fsid, &ino, NULL, &sfsname, 0);
899 (void)printf("%ld", (long) ino);
/freebsd-9.3-release/usr.sbin/makefs/
H A Dcd9660.c1886 inode->ino =
1895 (int)inode->st.st_ino, inode->ino));
1897 child->fileDataSector = inode->ino;
/freebsd-9.3-release/contrib/gcclibs/libcpp/include/
H A Dcpplib.h516 ino_t ino; member in struct:cpp_dir

Completed in 260 milliseconds

123456