Lines Matching defs:vc
154 struct chfs_vnode_cache* vc;
155 vc = pool_cache_get(chfs_vnode_cache, PR_WAITOK);
157 memset(vc, 0, sizeof(*vc));
158 vc->vno = vno;
160 vc->v = (void *)vc;
161 vc->dirents = (void *)vc;
162 vc->dnode = (void *)vc;
163 TAILQ_INIT(&vc->scan_dirents);
164 vc->highest_version = 0;
166 return vc;
171 chfs_vnode_cache_free(struct chfs_vnode_cache *vc)
173 pool_cache_put(chfs_vnode_cache, vc);