HomeSort by: relevance | last modified time | path
    Searched defs:fcmp (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/fs/filecorefs/
filecore_node.c 135 struct filecore_mnt *fcmp; local in function:filecore_loadvnode
142 fcmp = VFSTOFILECORE(mp);
147 ip->i_dev = fcmp->fc_dev;
158 ip->i_dirent.addr = fcmp->drec.root;
163 if ((error = filecore_bread(fcmp, ino & FILECORE_INO_MASK,
178 ip->i_mnt = fcmp;
179 ip->i_devvp = fcmp->fc_devvp;
filecore_bmap.c 100 struct filecore_mnt *fcmp = ip->i_mnt; local in function:filecore_bmap
118 int bshift=fcmp->log2bsize;
131 return filecore_map(fcmp, ip->i_dirent.addr, lbn, ap->a_bnp);
135 filecore_map(struct filecore_mnt *fcmp, u_int32_t addr, daddr_t lbn, daddr_t *bnp)
149 ((lbn << fcmp->log2bsize) >> fcmp->drec.log2secsize);
151 zone = frag / fcmp->idspz;
153 zone = fcmp->drec.nzones / 2;
156 zaddr=((8<<fcmp->drec.log2secsize)-fcmp->drec.zone_spare)*zon
    [all...]
filecore_vfsops.c 229 struct filecore_mnt *fcmp = NULL; local in function:filecore_mount
237 fcmp = VFSTOFILECORE(mp);
238 if (fcmp == NULL)
240 args->flags = fcmp->fc_mntflags;
241 args->uid = fcmp->fc_uid;
242 args->gid = fcmp->fc_gid;
286 fcmp = VFSTOFILECORE(mp);
287 if (devvp != fcmp->fc_devvp)
296 fcmp = VFSTOFILECORE(mp);
307 struct filecore_mnt *fcmp = (struct filecore_mnt *)0 local in function:filecore_mountfs
440 struct filecore_mnt *fcmp; local in function:filecore_unmount
482 struct filecore_mnt *fcmp = VFSTOFILECORE(mp); local in function:filecore_statvfs
    [all...]
filecore_vnops.c 127 struct filecore_mnt *fcmp = ip->i_mnt; local in function:filecore_check_permitted
131 genfs_can_access(vp, cred, fcmp->fc_uid, fcmp->fc_gid,
167 struct filecore_mnt *fcmp = ip->i_mnt; local in function:filecore_getattr
174 vap->va_uid = fcmp->fc_uid;
175 vap->va_gid = fcmp->fc_gid;
184 vap->va_blocksize = fcmp->blksize;
205 struct filecore_mnt *fcmp; local in function:filecore_read
219 fcmp = ip->i_mnt;
242 lbn = filecore_lblkno(fcmp, uio->uio_offset)
    [all...]
  /src/sbin/restore/
interactive.c 87 static int fcmp(const void *, const void *);
577 qsort((char *)list, entries, sizeof(struct afile), fcmp);
769 fcmp(const void *f1, const void *f2) function in typeref:typename:int

Completed in 16 milliseconds