Searched refs:pfs_vncache (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/sys/fs/pseudofs/
H A Dpseudofs_vncache.c48 static MALLOC_DEFINE(M_PFSVNCACHE, "pfs_vncache", "pseudofs vnode cache");
51 static struct pfs_vdata *pfs_vncache; variable in typeref:struct:pfs_vdata
88 mtx_init(&pfs_vncache_mutex, "pfs_vncache", NULL, MTX_DEF);
126 for (pvd = pfs_vncache; pvd; pvd = pvd->pvd_next) {
209 for (pvd2 = pfs_vncache; pvd2; pvd2 = pvd2->pvd_next) {
230 pvd->pvd_next = pfs_vncache;
233 pfs_vncache = pvd;
254 } else if (pfs_vncache == pvd) {
255 pfs_vncache = pvd->pvd_next;
285 pvd = pfs_vncache;
[all...]

Completed in 102 milliseconds