xref: /original-bsd/sys/ufs/ffs/ufsmount.h (revision 3109f15a)
1 /*	ufsmount.h	6.1	83/07/29	*/
2 
3 /*
4  * Mount structure.
5  * One allocated on every mount.
6  * Used to find the super block.
7  */
8 struct	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 	struct	inode *m_qinod;	/* QUOTA: pointer to quota file */
14 };
15 #ifdef KERNEL
16 struct	mount mount[NMOUNT];
17 #endif
18