Lines Matching refs:xp
145 null_hashins(struct mount *mp, struct null_node *xp) in null_hashins() argument
154 hd = NULL_NHASH(xp->null_lowervp); in null_hashins()
157 if (oxp->null_lowervp == xp->null_lowervp && in null_hashins()
164 LIST_INSERT_HEAD(hd, xp, null_hash); in null_hashins()
168 null_destroy_proto(struct vnode *vp, void *xp) in null_destroy_proto() argument
179 free(xp, M_NULLFSNODE); in null_destroy_proto()
193 struct null_node *xp; in null_nodeget() local
213 xp = malloc(sizeof(struct null_node), M_NULLFSNODE, M_WAITOK); in null_nodeget()
218 free(xp, M_NULLFSNODE); in null_nodeget()
226 xp->null_vnode = vp; in null_nodeget()
227 xp->null_lowervp = lowervp; in null_nodeget()
228 xp->null_flags = 0; in null_nodeget()
230 vp->v_data = xp; in null_nodeget()
236 null_destroy_proto(vp, xp); in null_nodeget()
258 null_destroy_proto(vp, xp); in null_nodeget()
262 null_hashins(mp, xp); in null_nodeget()
274 null_hashrem(struct null_node *xp) in null_hashrem() argument
278 LIST_REMOVE(xp, null_hash); in null_hashrem()