blob: 8d2660f0ab108fa80cc4ce12b609dd1eaf16bc4b [file] [log] [blame]
David Teiglande7fd4172006-01-18 09:30:29 +00001/******************************************************************************
2*******************************************************************************
3**
4** Copyright (C) 2005 Red Hat, Inc. All rights reserved.
5**
6** This copyrighted material is made available to anyone wishing to use,
7** modify, copy, or redistribute it subject to the terms and conditions
8** of the GNU General Public License v.2.
9**
10*******************************************************************************
11******************************************************************************/
12
13#ifndef __LOCK_DOT_H__
14#define __LOCK_DOT_H__
15
16void dlm_print_rsb(struct dlm_rsb *r);
David Teigland597d0ca2006-07-12 16:44:04 -050017void dlm_print_lkb(struct dlm_lkb *lkb);
David Teiglande7fd4172006-01-18 09:30:29 +000018int dlm_receive_message(struct dlm_header *hd, int nodeid, int recovery);
19int dlm_modes_compat(int mode1, int mode2);
20int dlm_find_rsb(struct dlm_ls *ls, char *name, int namelen,
21 unsigned int flags, struct dlm_rsb **r_ret);
22void dlm_put_rsb(struct dlm_rsb *r);
23void dlm_hold_rsb(struct dlm_rsb *r);
24int dlm_put_lkb(struct dlm_lkb *lkb);
25void dlm_scan_rsbs(struct dlm_ls *ls);
26
27int dlm_purge_locks(struct dlm_ls *ls);
28void dlm_purge_mstcpy_locks(struct dlm_rsb *r);
David Teigland97a35d12006-05-02 13:34:03 -040029void dlm_grant_after_purge(struct dlm_ls *ls);
David Teiglande7fd4172006-01-18 09:30:29 +000030int dlm_recover_waiters_post(struct dlm_ls *ls);
31void dlm_recover_waiters_pre(struct dlm_ls *ls);
32int dlm_recover_master_copy(struct dlm_ls *ls, struct dlm_rcom *rc);
33int dlm_recover_process_copy(struct dlm_ls *ls, struct dlm_rcom *rc);
34
David Teigland597d0ca2006-07-12 16:44:04 -050035int dlm_user_request(struct dlm_ls *ls, struct dlm_user_args *ua, int mode,
36 uint32_t flags, void *name, unsigned int namelen, uint32_t parent_lkid);
37int dlm_user_convert(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
38 int mode, uint32_t flags, uint32_t lkid, char *lvb_in);
39int dlm_user_unlock(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
40 uint32_t flags, uint32_t lkid, char *lvb_in);
41int dlm_user_cancel(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
42 uint32_t flags, uint32_t lkid);
43void dlm_clear_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc);
44
David Teiglande7fd4172006-01-18 09:30:29 +000045static inline int is_master(struct dlm_rsb *r)
46{
47 return !r->res_nodeid;
48}
49
50static inline void lock_rsb(struct dlm_rsb *r)
51{
David Teigland90135922006-01-20 08:47:07 +000052 mutex_lock(&r->res_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +000053}
54
55static inline void unlock_rsb(struct dlm_rsb *r)
56{
David Teigland90135922006-01-20 08:47:07 +000057 mutex_unlock(&r->res_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +000058}
59
60#endif
61