12 lines
		
	
	
		
			402 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			402 B
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
 | 
						|
EXTERN struct vmnt {
 | 
						|
  int m_fs_e;                   /* FS process' kernel endpoint */
 | 
						|
  dev_t m_dev;                  /* device number */
 | 
						|
  int m_flags;                  /* mount flags */
 | 
						|
  struct vnode *m_mounted_on;   /* vnode on which the partition is mounted */
 | 
						|
  struct vnode *m_root_node;    /* root vnode */
 | 
						|
  char m_label[LABEL_MAX];	/* label of the file system process */
 | 
						|
} vmnt[NR_MNTS];
 | 
						|
 |