Douglas Fuller | f66241c | 2015-06-18 13:06:10 -0700 | [diff] [blame^] | 1 | #ifndef _LINUX_CEPH_CLS_LOCK_CLIENT_H |
| 2 | #define _LINUX_CEPH_CLS_LOCK_CLIENT_H |
| 3 | |
| 4 | #include <linux/ceph/osd_client.h> |
| 5 | |
| 6 | enum ceph_cls_lock_type { |
| 7 | CEPH_CLS_LOCK_NONE = 0, |
| 8 | CEPH_CLS_LOCK_EXCLUSIVE = 1, |
| 9 | CEPH_CLS_LOCK_SHARED = 2, |
| 10 | }; |
| 11 | |
| 12 | int ceph_cls_lock(struct ceph_osd_client *osdc, |
| 13 | struct ceph_object_id *oid, |
| 14 | struct ceph_object_locator *oloc, |
| 15 | char *lock_name, u8 type, char *cookie, |
| 16 | char *tag, char *desc, u8 flags); |
| 17 | int ceph_cls_unlock(struct ceph_osd_client *osdc, |
| 18 | struct ceph_object_id *oid, |
| 19 | struct ceph_object_locator *oloc, |
| 20 | char *lock_name, char *cookie); |
| 21 | int ceph_cls_break_lock(struct ceph_osd_client *osdc, |
| 22 | struct ceph_object_id *oid, |
| 23 | struct ceph_object_locator *oloc, |
| 24 | char *lock_name, char *cookie, |
| 25 | struct ceph_entity_name *locker); |
| 26 | |
| 27 | #endif |