HomeSort by: relevance | last modified time | path
    Searched defs:vfsops (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/sys/
mount.h 141 struct vfsops *mnt_op; /* operations on fs */
186 struct vfsops { struct
220 LIST_ENTRY(vfsops) vfs_list;
396 int vfs_attach(struct vfsops *);
397 int vfs_detach(struct vfsops *);
399 struct vfsops *vfs_getopsbyname(const char *);
400 void vfs_delref(struct vfsops *);
403 struct mount *vfs_mountalloc(struct vfsops *, struct vnode *);
444 extern struct vfsops *vfssw[]; /* filesystem type table */
450 int mount_domount(struct lwp *, struct vnode **, struct vfsops *,
    [all...]
  /src/sys/kern/
vfs_syscalls.c 464 struct vfsops **vfsops)
497 if ((*vfsops = vfs_getopsbyname(fstypename)) != NULL)
503 if ((*vfsops = vfs_getopsbyname(fstypename)) != NULL)
569 struct vfsops *vfsops = NULL; /* XXX gcc4.8 */ local in function:do_sys_mount
586 vfsops = vp->v_mount->mnt_op;
589 error = mount_get_vfsops(type, type_seg, &vfsops);
602 data_len = vfsops->vfs_min_mount_data;
641 error = mount_domount(l, &vp, vfsops, path, flags, data_buf
    [all...]

Completed in 13 milliseconds