Lines Matching refs:fs_vfsdef
925 if ((vswp = vfs_getvfsswbyname(modl->fs_vfsdef->name)) == NULL) in mod_infofs()
956 if (modl->fs_vfsdef->def_version == VFSDEF_VERSION) { in mod_installfs()
958 fsname = modl->fs_vfsdef->name; in mod_installfs()
960 if ((modl->fs_vfsdef->def_version > 0) && in mod_installfs()
961 (modl->fs_vfsdef->def_version < VFSDEF_VERSION)) { in mod_installfs()
963 fsname = modl->fs_vfsdef->name; in mod_installfs()
997 vswp->vsw_flag = modl->fs_vfsdef->flags & ~(VSW_STATS); in mod_installfs()
999 if (modl->fs_vfsdef->flags & VSW_HASPROTO) { in mod_installfs()
1000 vfs_mergeopttbl(&vfs_mntopts, modl->fs_vfsdef->optproto, in mod_installfs()
1006 if (modl->fs_vfsdef->flags & VSW_CANRWRO) { in mod_installfs()
1017 if (vopstats_enabled && modl->fs_vfsdef->flags & VSW_STATS) { in mod_installfs()
1021 if (modl->fs_vfsdef->init == NULL) in mod_installfs()
1024 err = (*(modl->fs_vfsdef->init))(fstype, fsname); in mod_installfs()
1068 if ((vswp = vfs_getvfsswbyname(modl->fs_vfsdef->name)) == NULL) { in mod_removefs()