change all macros taking "fs" to have it as their first argument
[unix-history] / usr / src / sys / ufs / ffs / ufsmount.h
CommitLineData
9f7af618 1/* ufsmount.h 4.3 81/02/26 */
8469a387
BJ
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 */
9f7af618
BJ
13};
14#ifdef KERNEL
15struct mount mount[NMOUNT];
16#endif