]> git.proxmox.com Git - mirror_spl.git/blame - include/sys/dkio.h
Update rwlocks to track owner to ensure correct semantics
[mirror_spl.git] / include / sys / dkio.h
CommitLineData
4a4295b2 1#ifndef _SPL_DKIO_H
2#define _SPL_DKIO_H
a713518f 3
4struct dk_callback {
5 void (*dkc_callback)(void *dkc_cookie, int error);
6 void *dkc_cookie;
7 int dkc_flag;
8};
9
4a4295b2 10#define DKIOC (0x04 << 8)
11#define DKIOCFLUSHWRITECACHE (DKIOC | 34)
a713518f 12
4a4295b2 13#endif /* _SPL_DKIO_H */