Home
last modified time | relevance | path

Searched refs:null_node (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/bsd/miscfs/nullfs/
H A Dnull_subr.c84 static LIST_HEAD(null_node_hashhead, null_node) * null_node_hashtbl;
96 static int null_hashins(struct mount *, struct null_node *, struct vnode **);
139 struct null_node * a = NULL; in null_hashget()
187 null_hashins(struct mount * mp, struct null_node * xp, struct vnode ** vpp) in null_hashins()
190 struct null_node * oxp = NULL; in null_hashins()
243 null_hashrem(struct null_node * xp) in null_hashrem()
250 static struct null_node *
253 struct null_node * xp; in null_nodecreate()
255 xp = kalloc_type(struct null_node, Z_WAITOK | Z_ZERO | Z_NOFAIL); in null_nodecreate()
271 struct null_node * xp = null_nodecreate(lowervp); in null_getnewvnode()
[all …]
H A Dnullfs.h114 struct null_node { struct
115 LIST_ENTRY(null_node) null_hash; /* Hash list */
134 #define VTONULL(vp) ((struct null_node *)vnode_fsnode(vp)) argument
148 void null_hashrem(struct null_node * xp);
H A Dnull_vnops.c662 struct null_node * xp; in null_reclaim()
701 kfree_type(struct null_node, xp); in null_reclaim()