mirror of
				https://git.proxmox.com/git/mirror_spl-debian
				synced 2025-11-04 03:49:53 +00:00 
			
		
		
		
	Rework vnodes to be based on the slab cache, just like on Solaris. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@45 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
		
			
				
	
	
		
			12 lines
		
	
	
		
			293 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			293 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SPL_PATHNAME_H
 | 
						|
#define _SPL_PATHNAME_H
 | 
						|
 | 
						|
typedef struct pathname {
 | 
						|
	char	*pn_buf;		/* underlying storage */
 | 
						|
	char	*pn_path;		/* remaining pathname */
 | 
						|
	size_t	pn_pathlen;		/* remaining length */
 | 
						|
	size_t	pn_bufsize;		/* total size of pn_buf */
 | 
						|
} pathname_t;
 | 
						|
 | 
						|
#endif /* SPL_PATHNAME_H */
 |