mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
4a4295b267
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 */
|