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 465 struct vfsops **vfsops)
498 if ((*vfsops = vfs_getopsbyname(fstypename)) != NULL)
504 if ((*vfsops = vfs_getopsbyname(fstypename)) != NULL)
570 struct vfsops *vfsops = NULL; /* XXX gcc4.8 */ local
587 vfsops = vp->v_mount->mnt_op;
590 error = mount_get_vfsops(type, type_seg, &vfsops);
603 data_len = vfsops->vfs_min_mount_data;
642 error = mount_domount(l, &vp, vfsops, path, flags, data_buf
    [all...]

Completed in 443 milliseconds