Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/miscfs/nullfs/
H A Dnull_vfsops.c110 struct null_mount * xmp = NULL; in nullfs_mount() local
191 xmp = kalloc_type(struct null_mount, Z_WAITOK | Z_ZERO | Z_NOFAIL); in nullfs_mount()
196 xmp->uid = kauth_cred_getuid(cred); in nullfs_mount()
197 xmp->gid = kauth_cred_getgid(cred); in nullfs_mount()
202 xmp->nullm_lowerrootvp = lowerrootvp; in nullfs_mount()
203 xmp->nullm_lowerrootvid = vnode_vid(lowerrootvp); in nullfs_mount()
217 nullfs_init_lck(&xmp->nullm_lock); in nullfs_mount()
219 xmp->nullm_rootvp = vp; in nullfs_mount()
234 vfs_setfsprivate(mp, xmp); in nullfs_mount()
244 xmp->nullm_flags = NULLM_CASEINSENSITIVE; /* default to case insensitive */ in nullfs_mount()
[all …]
/xnu-12377.61.12/bsd/miscfs/bindfs/
H A Dbind_vfsops.c110 struct bind_mount * xmp = NULL; in bindfs_mount() local
180 xmp = kalloc_type(struct bind_mount, Z_WAITOK | Z_ZERO | Z_NOFAIL); in bindfs_mount()
185 xmp->bindm_lowerrootvp = lowerrootvp; in bindfs_mount()
186 xmp->bindm_lowerrootvid = vnode_vid(lowerrootvp); in bindfs_mount()
204 xmp->bindm_rootvp = vp; in bindfs_mount()
219 vfs_setfsprivate(mp, xmp); in bindfs_mount()
229 xmp->bindm_flags = BINDM_CASEINSENSITIVE; /* default to case insensitive */ in bindfs_mount()
260 xmp->bindm_flags &= ~BINDM_CASEINSENSITIVE; in bindfs_mount()
284 if (xmp) { in bindfs_mount()
285 kfree_type(struct bind_mount, xmp); in bindfs_mount()
/xnu-12377.61.12/bsd/net/
H A Droute.c2621 u_char *xk1, *xm1, *xk2, *xmp; in rt_fixchange() local
2653 if ((xmp = __SA_UTILS_CONV_TO_BYTES(rt_mask(rt->rt_parent))) != NULL) { in rt_fixchange()
2661 if ((xmp[i] & ~(xmp[i] ^ xm1[i])) != xmp[i]) { in rt_fixchange()