PSEUDOCODE
int
ffs_mountfs(devvp, mp, td, malloctype)
register struct vnode *devvp;
struct mount *mp;
struct thread *td;
struct malloc_type *malloctype;
{
...
error = vfs_mountedon(devvp);
if (error)
return (error);
...
}
AUTHORS
This manual page was written by
.An Chad David Aq davidc@acns.ab.ca .