mirror of
				https://git.proxmox.com/git/mirror_spl-debian
				synced 2025-11-04 05:43:29 +00:00 
			
		
		
		
	headers rewritten to include minimally what we need. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@56 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
		
			
				
	
	
		
			14 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SPL_DKIO_H
 | 
						|
#define	_SPL_DKIO_H
 | 
						|
 | 
						|
struct dk_callback {
 | 
						|
	void (*dkc_callback)(void *dkc_cookie, int error);
 | 
						|
	void *dkc_cookie;
 | 
						|
	int dkc_flag;
 | 
						|
};
 | 
						|
 | 
						|
#define	DKIOC			(0x04 << 8)
 | 
						|
#define	DKIOCFLUSHWRITECACHE	(DKIOC | 34)
 | 
						|
 | 
						|
#endif /* _SPL_DKIO_H */
 |