xref: /original-bsd/sys/ufs/ufs/ufsmount.h (revision a4d3ae46)
1 /*
2  * Copyright (c) 1982, 1986 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)ufsmount.h	7.2 (Berkeley) 06/21/87
7  */
8 
9 /*
10  * Mount structure.
11  * One allocated on every mount.
12  * Used to find the super block.
13  */
14 struct	mount
15 {
16 	dev_t	m_dev;		/* device mounted */
17 	struct	fs *m_fs;	/* pointer to superblock */
18 	struct	inode *m_inodp;	/* pointer to mounted on inode */
19 	struct	inode *m_qinod;	/* QUOTA: pointer to quota file */
20 };
21 #ifdef KERNEL
22 struct	mount mount[NMOUNT];
23 #endif
24