1 /* Virtual mount table related routines.
3 * Jul 2006 (Balazs Gerofi)
10 /*===========================================================================*
12 *===========================================================================*/
13 PUBLIC
struct vmnt
*get_free_vmnt(short *index
)
17 for (vp
= &vmnt
[0]; vp
< &vmnt
[NR_MNTS
]; ++vp
, ++(*index
)) {
18 if (vp
->m_dev
== NO_DEV
) return vp
;
24 /*===========================================================================*
26 *===========================================================================*/
27 PUBLIC
struct vmnt
*find_vmnt(int fs_e
)
30 for (vp
= &vmnt
[0]; vp
< &vmnt
[NR_MNTS
]; ++vp
) {
31 if (vp
->m_fs_e
== fs_e
) return vp
;