Start development on BSD 4
[unix-history] / .ref-5cb41021d721f4e0ac572d592613f963e495d1ff / .ref-BSD-3 / usr / src / sys / h / mount.h
CommitLineData
e78f0c8d
BJ
1/* mount.h 2.1 1/5/80 */
2
3/*
4 * Mount structure.
5 * One allocated on every mount.
6 * Used to find the super block.
7 */
8struct mount
9{
10 dev_t m_dev; /* device mounted */
11 struct buf *m_bufp; /* pointer to superblock */
12 struct inode *m_inodp; /* pointer to mounted on inode */
13} mount[NMOUNT];