Home
last modified time | relevance | path

Searched refs:vfc (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/kern/
H A Dvfs_init.c395 vfs_register(struct vfsconf *vfc) in vfs_register() argument
409 if (vfc->vfc_version != VFS_VERSION) { in vfs_register()
411 vfc->vfc_name, vfc->vfc_version); in vfs_register()
415 if (vfs_byname_locked(vfc->vfc_name) != NULL) { in vfs_register()
428 hashval = fnv_32_str(vfc->vfc_name, FNV1_32_INIT); in vfs_register()
444 vfc->vfc_typenum = hashval; in vfs_register()
445 if (vfc->vfc_typenum >= maxvfsconf) in vfs_register()
446 maxvfsconf = vfc->vfc_typenum + 1; in vfs_register()
448 vfc->vfc_typenum = maxvfsconf++; in vfs_register()
449 TAILQ_INSERT_TAIL(&vfsconf, vfc, vfc_list); in vfs_register()
[all …]
H A Duipc_mqueue.c659 mqfs_init(struct vfsconf *vfc) in mqfs_init() argument
699 mqfs_uninit(struct vfsconf *vfc) in mqfs_uninit() argument
/freebsd/sys/fs/pseudofs/
H A Dpseudofs.h91 struct pfs_info *pi, struct vfsconf *vfc
93 pi, vfc
252 int pfs_init (struct pfs_info *pi, struct vfsconf *vfc);
253 int pfs_uninit (struct pfs_info *pi, struct vfsconf *vfc);
291 _##name##_init(struct vfsconf *vfc) { \
292 return (pfs_init(&name##_info, vfc)); \
296 _##name##_uninit(struct vfsconf *vfc) { \
297 return (pfs_uninit(&name##_info, vfc)); \
H A Dpseudofs.c480 pfs_init(struct pfs_info *pi, struct vfsconf *vfc) in pfs_init() argument
494 error = (pi->pi_init)(pi, vfc); in pfs_init()
511 pfs_uninit(struct pfs_info *pi, struct vfsconf *vfc) in pfs_uninit() argument
520 error = (pi->pi_uninit)(pi, vfc); in pfs_uninit()
/freebsd/sbin/nfsiod/
H A Dnfsiod.c60 struct xvfsconf vfc; in main() local
65 error = getvfsbyname("nfs", &vfc); in main()
69 error = getvfsbyname("nfs", &vfc); in main()
/freebsd/contrib/smbfs/mount_smbfs/
H A Dmount_smbfs.c81 struct xvfsconf vfc; in main() local
113 error = getvfsbyname(smbfs_vfsname, &vfc); in main()
117 error = getvfsbyname(smbfs_vfsname, &vfc); in main()
/freebsd/sbin/umount/
H A Dumount.c205 struct xvfsconf vfc; in umountall() local
230 if (getvfsbyname(fs->fs_vfstype, &vfc) == -1) in umountall()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_disk_posix.c1574 struct xvfsconf vfc; in setup_current_filesystem() local
1576 struct vfsconf vfc; in setup_current_filesystem() local
1628 r = getvfsbyname(sfs.f_fstypename, &vfc); in setup_current_filesystem()
1633 if (vfc.vfc_flags & VFCF_SYNTHETIC) in setup_current_filesystem()
/freebsd/usr.sbin/mountd/
H A Dmountd.c2463 struct xvfsconf vfc; in delete_export() local
2465 if (getvfsbyname(fsp->f_fstypename, &vfc) != 0) { in delete_export()
2482 if (vfc.vfc_flags & VFCF_NETWORK) in delete_export()