vfs_mountroot
return (*(vfsp)->vfs_op->vfs_mountroot)(vfsp, reason);
VFSNAME_MOUNTROOT, offsetof(vfsops_t, vfs_mountroot),
int (*vfs_mountroot)(struct vfs *, enum whymountroot);
int (*vfs_mountroot)(); /* mount the root filesystem */
(*(vfsp)->vfs_op->vfs_mountroot)(vfsp, init)
void vfs_mountroot(void);
extern void vfs_mountroot(); /* mount the root */
VFSNAME_MOUNTROOT, { .vfs_mountroot = devfs_mountroot },
func = (int (*)()) vfsp->vfs_op->vfs_mountroot;
vfsop_find(&farg, &func, int, &arg0, vfs_mountroot,
vfsop_find(vf, &func, int, &arg0, vfs_mountroot, fsemop_mountroot);
VFSNAME_MOUNTROOT, { .vfs_mountroot = hsfs_mountroot },
VFSNAME_MOUNTROOT, { .vfs_mountroot = nfs3_mountroot },
VFSNAME_MOUNTROOT, { .vfs_mountroot = nfs4_mountroot },
VFSNAME_MOUNTROOT, { .vfs_mountroot = nfsdyn_mountroot },
VFSNAME_MOUNTROOT, { .vfs_mountroot = nfs_mountroot },
VFSNAME_MOUNTROOT, { .vfs_mountroot = udf_mountroot },
VFSNAME_MOUNTROOT, { .vfs_mountroot = ufs_mountroot },
return (*(vfsp)->vfs_op->vfs_mountroot)(vfsp, reason);
{ VFSNAME_MOUNTROOT, offsetof(vfsops_t, vfs_mountroot),
VFSNAME_MOUNTROOT, { .vfs_mountroot = zfs_mountroot },
vfs_mountroot(); /* Mount the root file system */
int (*vfs_mountroot)(vfs_t *, enum whymountroot); \
void vfs_mountroot(void);