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: * @(#)mount.h 7.1 (Berkeley) 6/4/86
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 buf *m_bufp; /* 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
Defined variables
mount
defined in line
22; used 45 times
- in /usr/src/sys/sys/quota_kern.c line
163,
221-226(3),
274,
404(2),
413,
427,
501(2),
637,
660
- in /usr/src/sys/sys/quota_subr.c line
41
- in /usr/src/sys/sys/quota_sys.c line
44(2),
327(2)
- in /usr/src/sys/sys/quota_ufs.c line
42(2),
63,
173
- in /usr/src/sys/sys/sys_inode.c line
333(2)
- in /usr/src/sys/sys/ufs_inode.c line
134(2)
- in /usr/src/sys/sys/ufs_mount.c line
85(2),
92(2),
187(2),
220
- in /usr/src/sys/sys/ufs_namei.c line
646-649(3)
- in /usr/src/sys/sys/ufs_subr.c line
57(2),
305(2),
339-341(3)
- in /usr/src/sys/sys/vm_mem.c line
265
- in /usr/src/sys/vax/vm_machdep.c line
133
Defined struct's
mount
defined in line
14; used 40 times
- in line 22(2)
- in /usr/src/sys/sys/quota_kern.c line
131(2),
249(2),
395(2),
427(2),
489(2),
513(2),
606(2),
657(2)
- in /usr/src/sys/sys/quota_sys.c line
34(2),
322(2)
- in /usr/src/sys/sys/quota_ufs.c line
36(2)
- in /usr/src/sys/sys/sys_inode.c line
309(2)
- in /usr/src/sys/sys/ufs_inode.c line
112(2)
- in /usr/src/sys/sys/ufs_mount.c line
67(2),
179(2),
229(2)
- in /usr/src/sys/sys/ufs_subr.c line
44(2),
302(2),
335(2)
Usage of this include