1 /* Virtual mount table related routines.
9 /*===========================================================================*
11 *===========================================================================*/
12 PUBLIC
struct vmnt
*get_free_vmnt(short *index
)
16 for (vp
= &vmnt
[0]; vp
< &vmnt
[NR_MNTS
]; ++vp
, ++(*index
))
17 if (vp
->m_dev
== NO_DEV
) return(vp
);
23 /*===========================================================================*
25 *===========================================================================*/
26 PUBLIC
struct vmnt
*find_vmnt(int fs_e
)
29 for (vp
= &vmnt
[0]; vp
< &vmnt
[NR_MNTS
]; ++vp
)
30 if (vp
->m_fs_e
== fs_e
) return(vp
);