aboutsummaryrefslogtreecommitdiffstats
path: root/include/sys/dkio.h
blob: efe7fa2700394de49e705685ae09b6da089b55c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 */