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