blob: c8b226c62807a5bf0d4b9d6aebfc4e2b29aa13be [file] [log] [blame]
David Teiglande7fd4172006-01-18 09:30:29 +00001/******************************************************************************
2*******************************************************************************
3**
David Teigland3ae1acf2007-05-18 08:59:31 -05004** Copyright (C) 2005-2007 Red Hat, Inc. All rights reserved.
David Teiglande7fd4172006-01-18 09:30:29 +00005**
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
David Teiglanda345da32006-08-18 11:54:25 -050016void dlm_dump_rsb(struct dlm_rsb *r);
David Teigland597d0ca2006-07-12 16:44:04 -050017void dlm_print_lkb(struct dlm_lkb *lkb);
David Teigland6d40c4a2012-04-23 16:36:01 -050018void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms,
19 uint32_t saved_seq);
Al Viroeef7d732008-01-25 00:58:46 -050020void dlm_receive_buffer(union dlm_packet *p, int nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +000021int dlm_modes_compat(int mode1, int mode2);
David Teiglande7fd4172006-01-18 09:30:29 +000022void 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);
David Teigland85e86ed2007-05-18 08:58:15 -050026int dlm_lock_recovery_try(struct dlm_ls *ls);
27void dlm_unlock_recovery(struct dlm_ls *ls);
David Teiglandc6ff6692011-03-28 14:17:26 -050028void dlm_scan_waiters(struct dlm_ls *ls);
David Teigland3ae1acf2007-05-18 08:59:31 -050029void dlm_scan_timeout(struct dlm_ls *ls);
30void dlm_adjust_timeouts(struct dlm_ls *ls);
David Teiglande7fd4172006-01-18 09:30:29 +000031
David Teigland7210cb72012-03-08 12:37:12 -060032int dlm_search_rsb_tree(struct rb_root *tree, char *name, int len,
33 unsigned int flags, struct dlm_rsb **r_ret);
34
David Teigland48756472012-04-26 15:54:29 -050035void dlm_recover_purge(struct dlm_ls *ls);
David Teiglande7fd4172006-01-18 09:30:29 +000036void dlm_purge_mstcpy_locks(struct dlm_rsb *r);
David Teigland48756472012-04-26 15:54:29 -050037void dlm_recover_grant(struct dlm_ls *ls);
David Teiglande7fd4172006-01-18 09:30:29 +000038int dlm_recover_waiters_post(struct dlm_ls *ls);
39void dlm_recover_waiters_pre(struct dlm_ls *ls);
40int dlm_recover_master_copy(struct dlm_ls *ls, struct dlm_rcom *rc);
41int dlm_recover_process_copy(struct dlm_ls *ls, struct dlm_rcom *rc);
42
David Teigland597d0ca2006-07-12 16:44:04 -050043int dlm_user_request(struct dlm_ls *ls, struct dlm_user_args *ua, int mode,
David Teiglandd7db9232007-05-18 09:00:32 -050044 uint32_t flags, void *name, unsigned int namelen,
45 unsigned long timeout_cs);
David Teigland597d0ca2006-07-12 16:44:04 -050046int dlm_user_convert(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
David Teiglandd7db9232007-05-18 09:00:32 -050047 int mode, uint32_t flags, uint32_t lkid, char *lvb_in,
48 unsigned long timeout_cs);
David Teigland597d0ca2006-07-12 16:44:04 -050049int dlm_user_unlock(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
50 uint32_t flags, uint32_t lkid, char *lvb_in);
51int dlm_user_cancel(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
52 uint32_t flags, uint32_t lkid);
David Teigland72c2be72007-03-30 15:06:16 -050053int dlm_user_purge(struct dlm_ls *ls, struct dlm_user_proc *proc,
54 int nodeid, int pid);
David Teigland8b4021f2007-05-29 08:46:00 -050055int dlm_user_deadlock(struct dlm_ls *ls, uint32_t flags, uint32_t lkid);
David Teigland597d0ca2006-07-12 16:44:04 -050056void dlm_clear_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc);
57
David Teiglande7fd4172006-01-18 09:30:29 +000058static inline int is_master(struct dlm_rsb *r)
59{
60 return !r->res_nodeid;
61}
62
63static inline void lock_rsb(struct dlm_rsb *r)
64{
David Teigland90135922006-01-20 08:47:07 +000065 mutex_lock(&r->res_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +000066}
67
68static inline void unlock_rsb(struct dlm_rsb *r)
69{
David Teigland90135922006-01-20 08:47:07 +000070 mutex_unlock(&r->res_mutex);
David Teiglande7fd4172006-01-18 09:30:29 +000071}
72
73#endif
74