Lines Matching refs:xp
143 null_hashins(struct mount *mp, struct null_node *xp) in null_hashins() argument
152 hd = NULL_NHASH(xp->null_lowervp); in null_hashins()
155 if (oxp->null_lowervp == xp->null_lowervp && in null_hashins()
162 LIST_INSERT_HEAD(hd, xp, null_hash); in null_hashins()
166 null_destroy_proto(struct vnode *vp, void *xp) in null_destroy_proto() argument
177 free(xp, M_NULLFSNODE); in null_destroy_proto()
191 struct null_node *xp; in null_nodeget() local
211 xp = malloc(sizeof(struct null_node), M_NULLFSNODE, M_WAITOK); in null_nodeget()
216 free(xp, M_NULLFSNODE); in null_nodeget()
224 xp->null_vnode = vp; in null_nodeget()
225 xp->null_lowervp = lowervp; in null_nodeget()
226 xp->null_flags = 0; in null_nodeget()
228 vp->v_data = xp; in null_nodeget()
234 null_destroy_proto(vp, xp); in null_nodeget()
256 null_destroy_proto(vp, xp); in null_nodeget()
260 null_hashins(mp, xp); in null_nodeget()
272 null_hashrem(struct null_node *xp) in null_hashrem() argument
276 LIST_REMOVE(xp, null_hash); in null_hashrem()