Searched refs:vfsconf (Results 1 - 11 of 11) sorted by relevance

/xnu-2422.115.4/bsd/vfs/
H A Dvfs_init.c278 /* vars for vfsconf lock */
403 for (vfsp = vfsconf, i = 0; i < maxvfsslots; i++, vfsp++) {
404 struct vfsconf vfsc;
407 if (i) vfsconf[i-1].vfc_next = vfsp;
411 bzero(&vfsc, sizeof(struct vfsconf));
516 * Description: Add a filesystem to the vfsconf list at the first
520 * Parameter: nvfsp vfsconf for VFS to add
525 * Notes: The vfsconf should be treated as a linked list by
530 * Warning: This code assumes that vfsconf[0] is non-empty.
546 if (vfsconf[slo
[all...]
H A Dvfs_conf.c181 struct vfstable *vfsconf = vfstbllist; variable in typeref:struct:vfstable
H A Dvfs_subr.c990 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
1044 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
2726 struct vfsconf vfsc;
2764 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
2792 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
2811 sizeof(struct vfsconf)));
H A Dkpi_vfs.c948 struct vfsconf vfsc;
949 bzero(&vfsc, sizeof(struct vfsconf));
H A Dvfs_syscalls.c579 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
/xnu-2422.115.4/bsd/miscfs/mockfs/
H A Dmockfs_vfsops.c54 int mockfs_init(__unused struct vfsconf * vfsc);
226 int mockfs_init(__unused struct vfsconf * vfsc)
/xnu-2422.115.4/bsd/sys/
H A Dmount.h367 #define VFS_CONF 2 /* struct: vfsconf for filesystem given
389 struct vfsconf { struct
661 @param vfsconf Configuration information. Currently, the only useful data are the filesystem name,
666 int (*vfs_init)(struct vfsconf *);
1305 int getvfsbyname(const char *, struct vfsconf *);
H A Dmount_internal.h322 extern struct vfstable *vfsconf; /* head of list of filesystem types */
/xnu-2422.115.4/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c110 devfs_init(__unused struct vfsconf *vfsp)
492 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
497 panic("Could not find entry in vfsconf for devfs.\n");
/xnu-2422.115.4/bsd/nfs/
H A Dnfs_vfsops.c200 int nfs_vfs_init(struct vfsconf *);
290 nfs_vfs_init(__unused struct vfsconf *vfsp)
1261 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next)
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_vfsops.c154 static int hfs_init(struct vfsconf *vfsp);
2704 hfs_init(__unused struct vfsconf *vfsp)

Completed in 107 milliseconds