• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/devfs/

Lines Matching refs:mount

88 static int devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, vfs_context_t ctx);
101 * We take the oportunity to mount the hidden DEVFS layer, so that
138 * mp - pointer to 'mount' structure
139 * path - addr in user space of mount point (ie /usr or whatever)
140 * data - addr in user space of mount params including the
152 devfs_mount(struct mount *mp, __unused vnode_t devvp, __unused user_addr_t data, vfs_context_t ctx)
154 struct devfsmount *devfs_mp_p; /* devfs specific mount info */
169 * Well, it's not an update, it's a real mount request.
179 devfs_mp_p->mount = mp;
216 devfs_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t ctx)
225 devfs_unmount( struct mount *mp, int mntflags, __unused vfs_context_t ctx)
255 devfs_root(struct mount *mp, struct vnode **vpp, __unused vfs_context_t ctx)
269 devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, __unused vfs_context_t ctx)
322 devfs_sync(__unused struct mount *mp, __unused int waitfor, __unused vfs_context_t ctx)
329 devfs_vget(__unused struct mount *mp, __unused ino64_t ino, __unused struct vnode **vpp, __unused vfs_context_t ctx)
340 devfs_fhtovp (__unused struct mount *mp, __unused int fhlen, __unused unsigned char *fhp, __unused struct vnode **vpp, __unused vfs_context_t ctx)
365 * Mount devfs at the given mount point from within the kernel.
370 struct mount *mp;
417 MALLOC_ZONE(mp, struct mount *, (u_long)sizeof(struct mount),
419 bzero((char *)mp, (u_long)sizeof(struct mount));
454 printf("devfs_kernel_mount: mount %s failed: %d", mntname, error);
463 FREE_ZONE(mp, sizeof (struct mount), M_MOUNT);