HomeSort by: relevance | last modified time | path
    Searched refs:vrefcnt (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/sys/miscfs/genfs/
layer_subr.c 130 KASSERT(vrefcnt(lowervp) > 0);
170 if (vrefcnt(a->layer_lowervp) < 1) {
181 LAYERTOV(a), vrefcnt(LAYERTOV(a)),
182 a->layer_lowervp, vrefcnt(a->layer_lowervp),
  /src/sys/coda/
coda_subr.c 222 coda_f2s(&cp->c_fid), vrefcnt(CTOV(cp))));
372 coda_f2s(&cp->c_fid), vrefcnt(CTOV(cp)) - 1, error)););
373 if (vrefcnt(CTOV(cp)) == 1) {
396 coda_f2s(&cp->c_fid), vrefcnt(CTOV(cp)) - 1)););
397 if (vrefcnt(CTOV(cp)) == 1) {
429 coda_f2s(&cp->c_fid), vrefcnt(CTOV(cp)) - 1, error)););
430 if (vrefcnt(CTOV(cp)) == 1) {
coda_namecache.c 350 if ((dcstat == IS_DOWNCALL) && (vrefcnt(CTOV(cncp->dcp)) == 1)) {
355 if ((dcstat == IS_DOWNCALL) && (vrefcnt(CTOV(cncp->cp)) == 1)) {
572 && (vrefcnt(CTOV(cncp->dcp)) == 1))
586 && (vrefcnt(CTOV(cncp->cp)) == 1))
coda_vnops.c 335 __func__, vrefcnt(vp), cp->c_ovp, vp, cp);
471 coda_f2s(&cp->c_fid), vrefcnt(CTOV(cp)))); )
857 if (vrefcnt(vp) > 1)
858 printf("%s: %p usecount %d\n", __func__, vp, vrefcnt(vp));
1580 __func__, coda_f2s(&cp->c_fid), vrefcnt(cvp))); )
1745 if (vrefcnt(vp) != 0)
  /src/sys/kern/
vfs_vnode.c 256 vrefcnt(struct vnode *vp) function in typeref:typename:int
280 int refcnt = vrefcnt(vp);
665 if (vrefcnt(vp) > 0)
671 if (vrefcnt(vp) > 0 || VSTATE_GET(vp) != VS_LOADED) {
792 if (vrefcnt(vp) > 1) {
896 if (vrefcnt(vp) <= 0 || vp->v_writecount != 0) {
1040 KASSERT(vrefcnt(vp) > 0);
1114 KASSERT(vrefcnt(vp) > 0);
1129 if (vp->v_holdcnt++ == 0 && vrefcnt(vp) == 0)
1160 if (vp->v_holdcnt == 0 && vrefcnt(vp) == 0
    [all...]
vfs_cache.c 710 KASSERT(vrefcnt(dvp) > 0);
1066 KASSERT(vrefcnt(cvp) > 0);
1067 KASSERT(vrefcnt(rvp) > 0);
vfs_mount.c 471 if (vrefcnt(mvp) != 0) {
659 if (vrefcnt(vp) > 1 &&
729 if (vrefcnt(olddp) == 1) {
exec_subr.c 93 KASSERT(vp == NULL || vrefcnt(vp) > 0);
vfs_getcwd.c 537 KASSERT(vrefcnt(vp) > 0);
  /src/sys/miscfs/nullfs/
null_vfsops.c 198 if (vrefcnt(null_rootvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/miscfs/overlay/
overlay_vfsops.c 223 if (vrefcnt(overlay_rootvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/miscfs/fdesc/
fdesc_vfsops.c 122 if (vrefcnt(rtvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/ufs/mfs/
mfs_vnops.c 145 if (vp->v_type != VBLK || vrefcnt(vp) == 0)
  /src/sys/miscfs/umapfs/
umap_vfsops.c 282 if (vrefcnt(rtvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/fs/udf/
udf_vfsops.c 448 if (vrefcnt(vp) > 1)
449 printf(" more than one usecount %d\n", vrefcnt(vp));
  /src/sys/rump/librump/rumpvfs/
rump_vfs.c 383 return vrefcnt(vp);
  /src/sys/sys/
vnode.h 615 int vrefcnt(struct vnode *);
  /src/sys/fs/msdosfs/
msdosfs_denode.c 615 vrefcnt(vp), dep->de_Name[0]);
msdosfs_vnops.c 176 if (vrefcnt(vp) > 1)
729 dep, vrefcnt(ap->a_vp));
msdosfs_vfsops.c 940 vp->v_vflag | vp->v_iflag | vp->v_uflag, vrefcnt(vp),
  /src/sys/nfs/
nfs_vnops.c 1686 * - If vrefcnt(vp) > 1
1710 if (vrefcnt(vp) < 1)
1711 panic("nfs_remove: bad vrefcnt(vp)");
1715 else if (vrefcnt(vp) == 1 || (np->n_sillyrename &&
1843 if (tvp && vrefcnt(tvp) > 1 && !VTONFS(tvp)->n_sillyrename &&
3413 if (vrefcnt(vp) == 1 &&
3497 if (vrefcnt(vp) == 1 &&
  /src/sys/ufs/ufs/
ufs_vnops.c 258 if (vrefcnt(vp) > 1)
2008 if (vrefcnt(vp) > 1)
2069 if (vrefcnt(ap->a_vp) > 1)
  /src/sys/ufs/lfs/
lfs_vnops.c 1299 if (vrefcnt(vp) > 1 && vp != ip->i_lfs->lfs_ivnode) {
1326 if (vrefcnt(vp) > 1) {
1353 if (vrefcnt(ap->a_vp) > 1) {
  /src/sys/fs/nfs/client/
nfs_clvnops.c 1663 KASSERT(vrefcnt(vp) > 0, ("nfs_remove: bad v_usecount"));
1666 else if (vrefcnt(vp) == 1 || (np->n_sillyrename &&
1817 if (tvp && vrefcnt(tvp) > 1 && !VTONFS(tvp)->n_sillyrename &&
3314 if (vrefcnt(vp) == 1 &&
  /src/sys/fs/ptyfs/
ptyfs_vnops.c 776 if (vrefcnt(vp) > 1)

Completed in 34 milliseconds

1 2