1: /*
   2:  * Mount structure.
   3:  * One allocated on every mount.
   4:  * Used to hold the super block.
   5:  */
   6: struct  mount
   7: {
   8:     dev_t   m_dev;          /* device mounted */
   9:     struct  inode   *m_inodp;   /* pointer to mounted on inode */
  10:     struct  filsys  m_filsys;   /* superblock data */
  11: };
  12: 
  13: # ifdef KERNEL
  14: extern  struct  mount   mount[];
  15: # endif

Defined struct's

mount defined in line 6; used 24 times

Usage of this include

Last modified: 1983-03-14
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 661
Valid CSS Valid XHTML 1.0 Strict