ca93965444678a35b8e1f0232ef2f70cb5497a52
[unix-history] / usr / src / sys / ufs / ffs / ufsmount.h
/* ufsmount.h 3.1 %H% */
/*
* Mount structure.
* One allocated on every mount.
* Used to find the super block.
*/
struct mount
{
dev_t m_dev; /* device mounted */
struct buf *m_bufp; /* pointer to superblock */
struct inode *m_inodp; /* pointer to mounted on inode */
} mount[NMOUNT];