Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/kern/
HDvfs_init.c388 vfs_register(struct vfsconf *vfc) in vfs_register() argument
402 if (vfc->vfc_version != VFS_VERSION) { in vfs_register()
404 vfc->vfc_name, vfc->vfc_version); in vfs_register()
408 if (vfs_byname_locked(vfc->vfc_name) != NULL) { in vfs_register()
420 hashval = fnv_32_str(vfc->vfc_name, FNV1_32_INIT); in vfs_register()
436 vfc->vfc_typenum = hashval; in vfs_register()
437 if (vfc->vfc_typenum >= maxvfsconf) in vfs_register()
438 maxvfsconf = vfc->vfc_typenum + 1; in vfs_register()
440 vfc->vfc_typenum = maxvfsconf++; in vfs_register()
441 TAILQ_INSERT_TAIL(&vfsconf, vfc, vfc_list); in vfs_register()
[all …]
HDuipc_mqueue.c654 mqfs_init(struct vfsconf *vfc) in mqfs_init() argument
695 mqfs_uninit(struct vfsconf *vfc) in mqfs_uninit() argument
/freebsd-14-stable/usr.bin/lsvfs/
HDlsvfs.c42 struct xvfsconf vfc, *xvfsp; in main() local
53 if (getvfsbyname(*argv, &vfc) == 0) { in main()
54 printf(FMT, vfc.vfc_name, vfc.vfc_typenum, in main()
55 vfc.vfc_refcount, fmt_flags(vfc.vfc_flags)); in main()
/freebsd-14-stable/sys/fs/pseudofs/
HDpseudofs.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);
290 _##name##_init(struct vfsconf *vfc) { \
291 return (pfs_init(&name##_info, vfc)); \
295 _##name##_uninit(struct vfsconf *vfc) { \
296 return (pfs_uninit(&name##_info, vfc)); \
HDpseudofs.c440 pfs_init(struct pfs_info *pi, struct vfsconf *vfc) in pfs_init() argument
454 error = (pi->pi_init)(pi, vfc); in pfs_init()
470 pfs_uninit(struct pfs_info *pi, struct vfsconf *vfc) in pfs_uninit() argument
479 error = (pi->pi_uninit)(pi, vfc); in pfs_uninit()
/freebsd-14-stable/sbin/nfsiod/
HDnfsiod.c72 struct xvfsconf vfc; in main() local
77 error = getvfsbyname("nfs", &vfc); in main()
81 error = getvfsbyname("nfs", &vfc); in main()
/freebsd-14-stable/contrib/smbfs/mount_smbfs/
HDmount_smbfs.c82 struct xvfsconf vfc; in main() local
114 error = getvfsbyname(smbfs_vfsname, &vfc); in main()
118 error = getvfsbyname(smbfs_vfsname, &vfc); in main()
/freebsd-14-stable/sbin/umount/
HDumount.c217 struct xvfsconf vfc; in umountall() local
242 if (getvfsbyname(fs->fs_vfstype, &vfc) == -1) in umountall()
/freebsd-14-stable/contrib/libarchive/libarchive/
HDarchive_read_disk_posix.c1574 struct xvfsconf vfc; in setup_current_filesystem() local
1576 struct vfsconf vfc; in setup_current_filesystem() local
1631 r = getvfsbyname(sfs.f_fstypename, &vfc); in setup_current_filesystem()
1636 if (vfc.vfc_flags & VFCF_SYNTHETIC) in setup_current_filesystem()
/freebsd-14-stable/usr.sbin/mountd/
HDmountd.c2477 struct xvfsconf vfc; in delete_export() local
2479 if (getvfsbyname(fsp->f_fstypename, &vfc) != 0) { in delete_export()
2496 if (vfc.vfc_flags & VFCF_NETWORK) in delete_export()