blob: 2e9f9d682a3578f1fa1f3bc680b1f069eb2ee8fc [file] [log] [blame]
Jordan Crouse29f66af2011-11-17 13:39:20 -07001#ifndef _GENLOCK_H_
2#define _GENLOCK_H_
3
4#ifdef __KERNEL__
5
6struct genlock;
7struct genlock_handle;
8
9struct genlock_handle *genlock_get_handle(void);
10struct genlock_handle *genlock_get_handle_fd(int fd);
11void genlock_put_handle(struct genlock_handle *handle);
12struct genlock *genlock_create_lock(struct genlock_handle *);
13struct genlock *genlock_attach_lock(struct genlock_handle *, int fd);
14int genlock_wait(struct genlock_handle *handle, u32 timeout);
15void genlock_release_lock(struct genlock_handle *);
16int genlock_lock(struct genlock_handle *handle, int op, int flags,
17 u32 timeout);
18#endif
19
20#define GENLOCK_UNLOCK 0
21#define GENLOCK_WRLOCK 1
22#define GENLOCK_RDLOCK 2
23
24#define GENLOCK_NOBLOCK (1 << 0)
25
26struct genlock_lock {
27 int fd;
28 int op;
29 int flags;
30 int timeout;
31};
32
33#define GENLOCK_IOC_MAGIC 'G'
34
35#define GENLOCK_IOC_NEW _IO(GENLOCK_IOC_MAGIC, 0)
36#define GENLOCK_IOC_EXPORT _IOR(GENLOCK_IOC_MAGIC, 1, \
37 struct genlock_lock)
38#define GENLOCK_IOC_ATTACH _IOW(GENLOCK_IOC_MAGIC, 2, \
39 struct genlock_lock)
40#define GENLOCK_IOC_LOCK _IOW(GENLOCK_IOC_MAGIC, 3, \
41 struct genlock_lock)
42#define GENLOCK_IOC_RELEASE _IO(GENLOCK_IOC_MAGIC, 4)
43#define GENLOCK_IOC_WAIT _IOW(GENLOCK_IOC_MAGIC, 5, \
44 struct genlock_lock)
45#endif