mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-29 03:14:25 +03:00
4b17158506
- Re-implmented kobj support based on the vnode support. - Add TESTS option to check.sh, and removed delay after module load. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@39 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
12 lines
152 B
C
12 lines
152 B
C
#ifndef _SPL_UIO_H
|
|
#define _SPL_UIO_H
|
|
|
|
typedef enum uio_rw {
|
|
UIO_READ = 0,
|
|
UIO_WRITE = 1,
|
|
} uio_rw_t;
|
|
|
|
#define UIO_SYSSPACE 1
|
|
|
|
#endif /* SPL_UIO_H */
|