Lines Matching refs:xmp
86 struct null_mount *xmp; in nullfs_mount() local
177 xmp = malloc(sizeof(struct null_mount), M_NULLFSMNT, in nullfs_mount()
184 xmp->nullm_vfs = lowerrootvp->v_mount; in nullfs_mount()
186 xmp->nullm_lowerrootvp = lowerrootvp; in nullfs_mount()
187 mp->mnt_data = xmp; in nullfs_mount()
195 free(xmp, M_NULLFSMNT); in nullfs_mount()
206 xmp->nullm_flags |= NULLM_CACHE; in nullfs_mount()
210 (xmp->nullm_vfs->mnt_kern_flag & MNTK_NULL_NOCACHE) == 0) { in nullfs_mount()
211 xmp->nullm_flags |= NULLM_CACHE; in nullfs_mount()
215 if ((xmp->nullm_flags & NULLM_CACHE) != 0) { in nullfs_mount()
225 if ((xmp->nullm_flags & NULLM_CACHE) != 0) { in nullfs_mount()
226 MNT_ILOCK(xmp->nullm_vfs); in nullfs_mount()
227 TAILQ_INSERT_TAIL(&xmp->nullm_vfs->mnt_uppers, mp, in nullfs_mount()
229 MNT_IUNLOCK(xmp->nullm_vfs); in nullfs_mount()