use proper types for uids, gids
[unix-history] / usr / src / sys / ufs / ffs / ufsmount.h
CommitLineData
da7c5cc6
KM
1/*
2 * Copyright (c) 1982 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 6.2 (Berkeley) %G%
7 */
8469a387
BJ
8
9/*
10 * Mount structure.
11 * One allocated on every mount.
12 * Used to find the super block.
13 */
14struct mount
15{
16 dev_t m_dev; /* device mounted */
17 struct buf *m_bufp; /* pointer to superblock */
18 struct inode *m_inodp; /* pointer to mounted on inode */
b9c7ff65 19 struct inode *m_qinod; /* QUOTA: pointer to quota file */
9f7af618
BJ
20};
21#ifdef KERNEL
22struct mount mount[NMOUNT];
23#endif