mirror_zfs/include/sys/dkio.h
behlendo 4a4295b267 Remove minor lingering CDDL tait of copied headers. Required
headers rewritten to include minimally what we need.



git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@56 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
2008-03-27 23:40:09 +00:00

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 */