 b6aa3714a1
			
		
	
	
		b6aa3714a1
		
	
	
	
	
		
			
			Now that we have enough room in the message, remove these types. Change-Id: Ib734c6f0209b259a14a1189b3886b9c8474e1b9a
		
			
				
	
	
		
			42 lines
		
	
	
		
			815 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			815 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _VTREEFS_PROTO_H
 | |
| #define _VTREEFS_PROTO_H
 | |
| 
 | |
| /* inode.c */
 | |
| void init_inodes(unsigned int inodes, struct inode_stat *stat, index_t
 | |
| 	nr_indexed_entries);
 | |
| void cleanup_inodes(void);
 | |
| struct inode *find_inode(ino_t num);
 | |
| struct inode *get_inode(ino_t num);
 | |
| void put_inode(struct inode *node);
 | |
| void ref_inode(struct inode *node);
 | |
| int get_inode_number(struct inode *node);
 | |
| int is_inode_deleted(struct inode *node);
 | |
| int fs_putnode(void);
 | |
| 
 | |
| /* link.c */
 | |
| int fs_rdlink(void);
 | |
| 
 | |
| /* mount.c */
 | |
| int fs_readsuper(void);
 | |
| int fs_unmount(void);
 | |
| 
 | |
| /* path.c */
 | |
| int fs_lookup(void);
 | |
| 
 | |
| /* read.c */
 | |
| int fs_read(void);
 | |
| int fs_getdents(void);
 | |
| 
 | |
| /* sdbm.c */
 | |
| long sdbm_hash(char *str, int len);
 | |
| 
 | |
| /* stadir.c */
 | |
| int fs_stat(void);
 | |
| int fs_statvfs(void);
 | |
| 
 | |
| /* utility.c */
 | |
| int no_sys(void);
 | |
| int do_noop(void);
 | |
| 
 | |
| #endif /* _VTREEFS_PROTO_H */
 |