4 extern struct mproc mproc
[NR_PROCS
];
6 /*===========================================================================*
8 *===========================================================================*/
12 struct vmnt vmnt
[NR_MNTS
];
17 if (getsysinfo(VFS_PROC_NR
, SI_VMNT_TAB
, vmnt
, sizeof(vmnt
)) != OK
)
20 for (vmp
= &vmnt
[0]; vmp
< &vmnt
[NR_MNTS
]; vmp
++) {
21 if (vmp
->m_dev
== NO_DEV
)
23 if (vmp
->m_fs_e
== PFS_PROC_NR
)
24 continue; /* Skip (special case) */
26 slot
= _ENDPOINT_P(vmp
->m_fs_e
);
27 if (slot
< 0 || slot
>= NR_PROCS
)
30 buf_printf("%s on %s type %s (%s)\n", vmp
->m_mount_dev
,
31 vmp
->m_mount_path
, rmp
->mp_name
,
32 (vmp
->m_flags
& VMNT_READONLY
) ? "ro" : "rw");