Lines Matching refs:mount

93 static int devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, vfs_context_t ctx);
106 * We take the oportunity to mount the hidden DEVFS layer, so that
150 * mp - pointer to 'mount' structure
151 * path - addr in user space of mount point (ie /usr or whatever)
152 * data - addr in user space of mount params including the
164 devfs_mount(struct mount *mp, __unused vnode_t devvp, __unused user_addr_t data, vfs_context_t ctx)
166 struct devfsmount *devfs_mp_p; /* devfs specific mount info */
181 * Well, it's not an update, it's a real mount request.
191 devfs_mp_p->mount = mp;
228 devfs_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t ctx)
237 devfs_unmount( struct mount *mp, int mntflags, __unused vfs_context_t ctx)
267 devfs_root(struct mount *mp, struct vnode **vpp, __unused vfs_context_t ctx)
281 devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, __unused vfs_context_t ctx)
436 devfs_sync(__unused struct mount *mp, __unused int waitfor, __unused vfs_context_t ctx)
443 devfs_vget(__unused struct mount *mp, __unused ino64_t ino, __unused struct vnode **vpp, __unused vfs_context_t ctx)
454 devfs_fhtovp (__unused struct mount *mp, __unused int fhlen, __unused unsigned char *fhp, __unused struct vnode **vpp, __unused vfs_context_t ctx)
479 * Mount devfs at the given mount point from within the kernel.
484 struct mount *mp;
536 MALLOC_ZONE(mp, struct mount *, sizeof(struct mount),
538 bzero((char *)mp, sizeof(struct mount));
570 printf("devfs_kernel_mount: mount %s failed: %d", mntname, error);
579 FREE_ZONE(mp, sizeof (struct mount), M_MOUNT);