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

Defined struct's

mount defined in line 14; used 40 times

Usage of this include

Last modified: 1986-06-05
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 722
Valid CSS Valid XHTML 1.0 Strict