mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	 73e540a0d1
			
		
	
	
		73e540a0d1
		
	
	
	
	
		
			
			Update uio support git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@42 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
		
			
				
	
	
		
			27 lines
		
	
	
		
			493 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			493 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _SPL_KOBJ_H
 | |
| #define _SPL_KOBJ_H
 | |
| 
 | |
| #ifdef  __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #include <sys/vnode.h>
 | |
| 
 | |
| typedef struct _buf {
 | |
| 	vnode_t *vp;
 | |
| } _buf_t;
 | |
| 
 | |
| typedef struct _buf buf_t;
 | |
| 
 | |
| extern struct _buf *kobj_open_file(const char *name);
 | |
| extern void kobj_close_file(struct _buf *file);
 | |
| extern int kobj_read_file(struct _buf *file, char *buf,
 | |
| 			  ssize_t size, offset_t off);
 | |
| extern int kobj_get_filesize(struct _buf *file, uint64_t *size);
 | |
| 
 | |
| #ifdef  __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif /* SPL_KOBJ_H */
 |