/freebsd/sys/kern/ |
H A D | vfs_init.c | 49 static int vfs_register(struct vfsconf *); 50 static int vfs_unregister(struct vfsconf *); 63 struct vfsconfhead vfsconf = TAILQ_HEAD_INITIALIZER(vfsconf); variable 65 SX_SYSINIT(vfsconf, &vfsconf_sx, "vfsconf"); 106 static struct vfsconf * 109 struct vfsconf *vfsp; in vfs_byname_locked() 114 TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) { in vfs_byname_locked() 121 struct vfsconf * 124 struct vfsconf *vfsp; in vfs_byname() 132 struct vfsconf * [all …]
|
H A D | vfs_default.c | 1433 vfs_stdinit(struct vfsconf *vfsp) in vfs_stdinit() 1440 vfs_stduninit(struct vfsconf *vfsp) in vfs_stduninit()
|
H A D | vfs_subr.c | 4902 vfsconf2x(struct sysctl_req *req, struct vfsconf *vfsp) in vfsconf2x() 4931 vfsconf2x32(struct sysctl_req *req, struct vfsconf *vfsp) in vfsconf2x32() 4950 struct vfsconf *vfsp; in sysctl_vfs_conflist() 4955 TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) { in sysctl_vfs_conflist() 4981 struct vfsconf *vfsp; in vfs_sysctl() 5001 TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) { in vfs_sysctl() 5028 struct vfsconf *vfsp; in sysctl_ovfs_conf() 5032 TAILQ_FOREACH(vfsp, &vfsconf, vfc_list) { in sysctl_ovfs_conf()
|
/freebsd/sys/fs/pseudofs/ |
H A D | pseudofs.h | 47 struct vfsconf; 91 struct pfs_info *pi, struct vfsconf *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) { \ 295 _##name##_uninit(struct vfsconf *vfc) { \
|
H A D | pseudofs.c | 440 pfs_init(struct pfs_info *pi, struct vfsconf *vfc) in pfs_init() 470 pfs_uninit(struct pfs_info *pi, struct vfsconf *vfc) in pfs_uninit()
|
/freebsd/sys/ufs/ufs/ |
H A D | ufs_extern.h | 44 struct vfsconf; 75 int ufs_init(struct vfsconf *); 83 int ufs_uninit(struct vfsconf *);
|
H A D | ufs_vfsops.c | 172 ufs_init(struct vfsconf *vfsp) in ufs_init() 188 ufs_uninit(struct vfsconf *vfsp) in ufs_uninit()
|
/freebsd/sys/sys/ |
H A D | mount.h | 234 struct vfsconf *mnt_vfc; /* configuration info */ 640 struct vfsconf { struct 650 TAILQ_ENTRY(vfsconf) vfc_list; /* list of vfscons */ argument 660 struct vfsconf *vfc_next; /* next in list */ 770 TAILQ_HEAD(vfsconfhead, vfsconf); 771 extern struct vfsconfhead vfsconf; 807 typedef int vfs_init_t(struct vfsconf *); 808 typedef int vfs_uninit_t(struct vfsconf *); 967 static struct vfsconf fsname ## _vfsconf = { \ 1001 struct vfsconf *vfs_byname(const char *); [all …]
|
H A D | jail.h | 416 struct vfsconf; 488 void prison_add_vfs(struct vfsconf *vfsp);
|
/freebsd/sys/fs/nullfs/ |
H A D | null.h | 66 int nullfs_init(struct vfsconf *vfsp); 67 int nullfs_uninit(struct vfsconf *vfsp);
|
H A D | null_subr.c | 70 nullfs_init(struct vfsconf *vfsp) in nullfs_init() 80 nullfs_uninit(struct vfsconf *vfsp) in nullfs_uninit()
|
/freebsd/sys/fs/nfsclient/ |
H A D | nfs.h | 117 int ncl_init(struct vfsconf *); 118 int ncl_uninit(struct vfsconf *);
|
H A D | nfs_clsubs.c | 90 ncl_uninit(struct vfsconf *vfsp) in ncl_uninit() 375 ncl_init(struct vfsconf *vfsp) in ncl_init()
|
/freebsd/sys/fs/autofs/ |
H A D | autofs.h | 125 int autofs_init(struct vfsconf *vfsp); 126 int autofs_uninit(struct vfsconf *vfsp);
|
H A D | autofs.c | 160 autofs_init(struct vfsconf *vfsp) in autofs_init() 197 autofs_uninit(struct vfsconf *vfsp) in autofs_uninit()
|
/freebsd/sys/fs/unionfs/ |
H A D | union.h | 131 int unionfs_init(struct vfsconf *); 132 int unionfs_uninit(struct vfsconf *);
|
/freebsd/sys/fs/fuse/ |
H A D | fuse_main.c | 97 static struct vfsconf fuse_vfsconf = {
|
/freebsd/sys/fs/smbfs/ |
H A D | smbfs_vfsops.c | 358 smbfs_init(struct vfsconf *vfsp) in smbfs_init() 368 smbfs_uninit(struct vfsconf *vfsp) in smbfs_uninit()
|
/freebsd/sys/fs/ext2fs/ |
H A D | ext2_extern.h | 48 struct vfsconf;
|
/freebsd/sys/fs/p9fs/ |
H A D | p9fs_vfsops.c | 97 p9fs_init(struct vfsconf *vfsp) in p9fs_init() 127 p9fs_uninit(struct vfsconf *vfsp) in p9fs_uninit()
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
H A D | spl_vfs.c | 122 struct vfsconf *vfsp; in mount_snapshot()
|
/freebsd/sys/fs/fdescfs/ |
H A D | fdesc_vnops.c | 98 fdesc_init(struct vfsconf *vfsp) in fdesc_init() 110 fdesc_uninit(struct vfsconf *vfsp) in fdesc_uninit()
|
/freebsd/sys/fs/tmpfs/ |
H A D | tmpfs_vfsops.c | 669 tmpfs_init(struct vfsconf *conf) in tmpfs_init() 682 tmpfs_uninit(struct vfsconf *conf) in tmpfs_uninit()
|
/freebsd/sys/fs/udf/ |
H A D | udf_vfsops.c | 140 udf_init(struct vfsconf *foo) in udf_init() 156 udf_uninit(struct vfsconf *foo) in udf_init()
|
/freebsd/sys/libkern/ |
H A D | iconv.c | 576 struct vfsconf *vfsp; in iconv_vfs_refcount()
|