2006-10-25 15:40:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
EXTERN struct vmnt {
|
|
|
|
int m_fs_e; /* FS process' kernel endpoint */
|
|
|
|
dev_t m_dev; /* device number */
|
|
|
|
int m_flags; /* mount flags */
|
2010-01-13 00:08:50 +01:00
|
|
|
struct vnode *m_mounted_on; /* vnode on which the partition is mounted */
|
2006-10-25 15:40:36 +02:00
|
|
|
struct vnode *m_root_node; /* root vnode */
|
2010-01-13 00:08:50 +01:00
|
|
|
char m_label[LABEL_MAX]; /* label of the file system process */
|
2006-10-25 15:40:36 +02:00
|
|
|
} vmnt[NR_MNTS];
|
|
|
|
|