xref: /openbmc/linux/fs/dlm/dlm_internal.h (revision f11722834605a155022a8098ad7d8adacf44b22f)
1e7fd4179SDavid Teigland /******************************************************************************
2e7fd4179SDavid Teigland *******************************************************************************
3e7fd4179SDavid Teigland **
4e7fd4179SDavid Teigland **  Copyright (C) Sistina Software, Inc.  1997-2003  All rights reserved.
560f98d18SDavid Teigland **  Copyright (C) 2004-2011 Red Hat, Inc.  All rights reserved.
6e7fd4179SDavid Teigland **
7e7fd4179SDavid Teigland **  This copyrighted material is made available to anyone wishing to use,
8e7fd4179SDavid Teigland **  modify, copy, or redistribute it subject to the terms and conditions
9e7fd4179SDavid Teigland **  of the GNU General Public License v.2.
10e7fd4179SDavid Teigland **
11e7fd4179SDavid Teigland *******************************************************************************
12e7fd4179SDavid Teigland ******************************************************************************/
13e7fd4179SDavid Teigland 
14e7fd4179SDavid Teigland #ifndef __DLM_INTERNAL_DOT_H__
15e7fd4179SDavid Teigland #define __DLM_INTERNAL_DOT_H__
16e7fd4179SDavid Teigland 
17e7fd4179SDavid Teigland /*
18e7fd4179SDavid Teigland  * This is the main header file to be included in each DLM source file.
19e7fd4179SDavid Teigland  */
20e7fd4179SDavid Teigland 
21e7fd4179SDavid Teigland #include <linux/module.h>
22e7fd4179SDavid Teigland #include <linux/slab.h>
23e7fd4179SDavid Teigland #include <linux/sched.h>
24e7fd4179SDavid Teigland #include <linux/types.h>
25e7fd4179SDavid Teigland #include <linux/ctype.h>
26e7fd4179SDavid Teigland #include <linux/spinlock.h>
27e7fd4179SDavid Teigland #include <linux/vmalloc.h>
28e7fd4179SDavid Teigland #include <linux/list.h>
29e7fd4179SDavid Teigland #include <linux/errno.h>
30e7fd4179SDavid Teigland #include <linux/random.h>
31e7fd4179SDavid Teigland #include <linux/delay.h>
32e7fd4179SDavid Teigland #include <linux/socket.h>
33e7fd4179SDavid Teigland #include <linux/kthread.h>
34e7fd4179SDavid Teigland #include <linux/kobject.h>
35e7fd4179SDavid Teigland #include <linux/kref.h>
36e7fd4179SDavid Teigland #include <linux/kernel.h>
37e7fd4179SDavid Teigland #include <linux/jhash.h>
38597d0caeSDavid Teigland #include <linux/miscdevice.h>
3990135925SDavid Teigland #include <linux/mutex.h>
403d6aa675SDavid Teigland #include <linux/idr.h>
41d6e24788SDavid Teigland #include <linux/ratelimit.h>
42e7fd4179SDavid Teigland #include <asm/uaccess.h>
43e7fd4179SDavid Teigland 
44e7fd4179SDavid Teigland #include <linux/dlm.h>
4599fc6487SDavid Teigland #include "config.h"
46e7fd4179SDavid Teigland 
47e7fd4179SDavid Teigland /* Size of the temp buffer midcomms allocates on the stack.
48e7fd4179SDavid Teigland    We try to make this large enough so most messages fit.
49e7fd4179SDavid Teigland    FIXME: should sctp make this unnecessary? */
50e7fd4179SDavid Teigland 
51e7fd4179SDavid Teigland #define DLM_INBUF_LEN		148
52e7fd4179SDavid Teigland 
53e7fd4179SDavid Teigland struct dlm_ls;
54e7fd4179SDavid Teigland struct dlm_lkb;
55e7fd4179SDavid Teigland struct dlm_rsb;
56e7fd4179SDavid Teigland struct dlm_member;
57e7fd4179SDavid Teigland struct dlm_rsbtable;
58e7fd4179SDavid Teigland struct dlm_recover;
59e7fd4179SDavid Teigland struct dlm_header;
60e7fd4179SDavid Teigland struct dlm_message;
61e7fd4179SDavid Teigland struct dlm_rcom;
62e7fd4179SDavid Teigland struct dlm_mhandle;
63e7fd4179SDavid Teigland 
64e7fd4179SDavid Teigland #define log_print(fmt, args...) \
65e7fd4179SDavid Teigland 	printk(KERN_ERR "dlm: "fmt"\n" , ##args)
66e7fd4179SDavid Teigland #define log_error(ls, fmt, args...) \
67e7fd4179SDavid Teigland 	printk(KERN_ERR "dlm: %s: " fmt "\n", (ls)->ls_name , ##args)
68e7fd4179SDavid Teigland 
6999fc6487SDavid Teigland #define log_debug(ls, fmt, args...) \
7099fc6487SDavid Teigland do { \
7199fc6487SDavid Teigland 	if (dlm_config.ci_log_debug) \
7299fc6487SDavid Teigland 		printk(KERN_DEBUG "dlm: %s: " fmt "\n", \
7399fc6487SDavid Teigland 		       (ls)->ls_name , ##args); \
7499fc6487SDavid Teigland } while (0)
75e7fd4179SDavid Teigland 
76d6e24788SDavid Teigland #define log_limit(ls, fmt, args...) \
77d6e24788SDavid Teigland do { \
78d6e24788SDavid Teigland 	if (dlm_config.ci_log_debug) \
79d6e24788SDavid Teigland 		printk_ratelimited(KERN_DEBUG "dlm: %s: " fmt "\n", \
80d6e24788SDavid Teigland 			(ls)->ls_name , ##args); \
81d6e24788SDavid Teigland } while (0)
82d6e24788SDavid Teigland 
83e7fd4179SDavid Teigland #define DLM_ASSERT(x, do) \
84e7fd4179SDavid Teigland { \
85e7fd4179SDavid Teigland   if (!(x)) \
86e7fd4179SDavid Teigland   { \
87e7fd4179SDavid Teigland     printk(KERN_ERR "\nDLM:  Assertion failed on line %d of file %s\n" \
88e7fd4179SDavid Teigland                "DLM:  assertion:  \"%s\"\n" \
89e7fd4179SDavid Teigland                "DLM:  time = %lu\n", \
90e7fd4179SDavid Teigland                __LINE__, __FILE__, #x, jiffies); \
91e7fd4179SDavid Teigland     {do} \
92e7fd4179SDavid Teigland     printk("\n"); \
93e7fd4179SDavid Teigland     BUG(); \
94e7fd4179SDavid Teigland     panic("DLM:  Record message above and reboot.\n"); \
95e7fd4179SDavid Teigland   } \
96e7fd4179SDavid Teigland }
97e7fd4179SDavid Teigland 
98e7fd4179SDavid Teigland 
99*f1172283SDavid Teigland #define DLM_RTF_SHRINK		0x00000001
100*f1172283SDavid Teigland 
101e7fd4179SDavid Teigland struct dlm_rsbtable {
1029beb3bf5SBob Peterson 	struct rb_root		keep;
1039beb3bf5SBob Peterson 	struct rb_root		toss;
104c7be761aSDavid Teigland 	spinlock_t		lock;
105*f1172283SDavid Teigland 	uint32_t		flags;
106e7fd4179SDavid Teigland };
107e7fd4179SDavid Teigland 
108e7fd4179SDavid Teigland 
109e7fd4179SDavid Teigland /*
110e7fd4179SDavid Teigland  * Lockspace member (per node in a ls)
111e7fd4179SDavid Teigland  */
112e7fd4179SDavid Teigland 
113e7fd4179SDavid Teigland struct dlm_member {
114e7fd4179SDavid Teigland 	struct list_head	list;
115e7fd4179SDavid Teigland 	int			nodeid;
116e7fd4179SDavid Teigland 	int			weight;
117757a4271SDavid Teigland 	int			slot;
118757a4271SDavid Teigland 	int			slot_prev;
11960f98d18SDavid Teigland 	int			comm_seq;
120757a4271SDavid Teigland 	uint32_t		generation;
121757a4271SDavid Teigland };
122757a4271SDavid Teigland 
123757a4271SDavid Teigland /*
124e7fd4179SDavid Teigland  * Save and manage recovery state for a lockspace.
125e7fd4179SDavid Teigland  */
126e7fd4179SDavid Teigland 
127e7fd4179SDavid Teigland struct dlm_recover {
128e7fd4179SDavid Teigland 	struct list_head	list;
12960f98d18SDavid Teigland 	struct dlm_config_node	*nodes;
13060f98d18SDavid Teigland 	int			nodes_count;
131e7fd4179SDavid Teigland 	uint64_t		seq;
132e7fd4179SDavid Teigland };
133e7fd4179SDavid Teigland 
134e7fd4179SDavid Teigland /*
135e7fd4179SDavid Teigland  * Pass input args to second stage locking function.
136e7fd4179SDavid Teigland  */
137e7fd4179SDavid Teigland 
138e7fd4179SDavid Teigland struct dlm_args {
139e7fd4179SDavid Teigland 	uint32_t		flags;
140e5dae548SDavid Teigland 	void			(*astfn) (void *astparam);
141e5dae548SDavid Teigland 	void			*astparam;
142e5dae548SDavid Teigland 	void			(*bastfn) (void *astparam, int mode);
143e7fd4179SDavid Teigland 	int			mode;
144e7fd4179SDavid Teigland 	struct dlm_lksb		*lksb;
145d7db923eSDavid Teigland 	unsigned long		timeout;
146e7fd4179SDavid Teigland };
147e7fd4179SDavid Teigland 
148e7fd4179SDavid Teigland 
149e7fd4179SDavid Teigland /*
150e7fd4179SDavid Teigland  * Lock block
151e7fd4179SDavid Teigland  *
152e7fd4179SDavid Teigland  * A lock can be one of three types:
153e7fd4179SDavid Teigland  *
154e7fd4179SDavid Teigland  * local copy      lock is mastered locally
155e7fd4179SDavid Teigland  *                 (lkb_nodeid is zero and DLM_LKF_MSTCPY is not set)
156e7fd4179SDavid Teigland  * process copy    lock is mastered on a remote node
157e7fd4179SDavid Teigland  *                 (lkb_nodeid is non-zero and DLM_LKF_MSTCPY is not set)
158e7fd4179SDavid Teigland  * master copy     master node's copy of a lock owned by remote node
159e7fd4179SDavid Teigland  *                 (lkb_nodeid is non-zero and DLM_LKF_MSTCPY is set)
160e7fd4179SDavid Teigland  *
161e7fd4179SDavid Teigland  * lkb_exflags: a copy of the most recent flags arg provided to dlm_lock or
162e7fd4179SDavid Teigland  * dlm_unlock.  The dlm does not modify these or use any private flags in
163e7fd4179SDavid Teigland  * this field; it only contains DLM_LKF_ flags from dlm.h.  These flags
164e7fd4179SDavid Teigland  * are sent as-is to the remote master when the lock is remote.
165e7fd4179SDavid Teigland  *
166e7fd4179SDavid Teigland  * lkb_flags: internal dlm flags (DLM_IFL_ prefix) from dlm_internal.h.
167e7fd4179SDavid Teigland  * Some internal flags are shared between the master and process nodes;
168e7fd4179SDavid Teigland  * these shared flags are kept in the lower two bytes.  One of these
169e7fd4179SDavid Teigland  * flags set on the master copy will be propagated to the process copy
170e7fd4179SDavid Teigland  * and v.v.  Other internal flags are private to the master or process
171e7fd4179SDavid Teigland  * node (e.g. DLM_IFL_MSTCPY).  These are kept in the high two bytes.
172e7fd4179SDavid Teigland  *
173e7fd4179SDavid Teigland  * lkb_sbflags: status block flags.  These flags are copied directly into
174e7fd4179SDavid Teigland  * the caller's lksb.sb_flags prior to the dlm_lock/dlm_unlock completion
175e7fd4179SDavid Teigland  * ast.  All defined in dlm.h with DLM_SBF_ prefix.
176e7fd4179SDavid Teigland  *
177e7fd4179SDavid Teigland  * lkb_status: the lock status indicates which rsb queue the lock is
178e7fd4179SDavid Teigland  * on, grant, convert, or wait.  DLM_LKSTS_ WAITING/GRANTED/CONVERT
179e7fd4179SDavid Teigland  *
180e7fd4179SDavid Teigland  * lkb_wait_type: the dlm message type (DLM_MSG_ prefix) for which a
181e7fd4179SDavid Teigland  * reply is needed.  Only set when the lkb is on the lockspace waiters
182e7fd4179SDavid Teigland  * list awaiting a reply from a remote node.
183e7fd4179SDavid Teigland  *
184e7fd4179SDavid Teigland  * lkb_nodeid: when the lkb is a local copy, nodeid is 0; when the lkb
185e7fd4179SDavid Teigland  * is a master copy, nodeid specifies the remote lock holder, when the
186e7fd4179SDavid Teigland  * lkb is a process copy, the nodeid specifies the lock master.
187e7fd4179SDavid Teigland  */
188e7fd4179SDavid Teigland 
189e7fd4179SDavid Teigland /* lkb_status */
190e7fd4179SDavid Teigland 
191e7fd4179SDavid Teigland #define DLM_LKSTS_WAITING	1
192e7fd4179SDavid Teigland #define DLM_LKSTS_GRANTED	2
193e7fd4179SDavid Teigland #define DLM_LKSTS_CONVERT	3
194e7fd4179SDavid Teigland 
195e7fd4179SDavid Teigland /* lkb_flags */
196e7fd4179SDavid Teigland 
197e7fd4179SDavid Teigland #define DLM_IFL_MSTCPY		0x00010000
198e7fd4179SDavid Teigland #define DLM_IFL_RESEND		0x00020000
199597d0caeSDavid Teigland #define DLM_IFL_DEAD		0x00040000
200ef0c2bb0SDavid Teigland #define DLM_IFL_OVERLAP_UNLOCK  0x00080000
201ef0c2bb0SDavid Teigland #define DLM_IFL_OVERLAP_CANCEL  0x00100000
202ef0c2bb0SDavid Teigland #define DLM_IFL_ENDOFLIFE	0x00200000
2033ae1acf9SDavid Teigland #define DLM_IFL_WATCH_TIMEWARN	0x00400000
20484d8cd69SDavid Teigland #define DLM_IFL_TIMEOUT_CANCEL	0x00800000
2058b4021faSDavid Teigland #define DLM_IFL_DEADLOCK_CANCEL	0x01000000
2062a7ce0edSDavid Teigland #define DLM_IFL_STUB_MS		0x02000000 /* magic number for m_flags */
207597d0caeSDavid Teigland #define DLM_IFL_USER		0x00000001
208597d0caeSDavid Teigland #define DLM_IFL_ORPHAN		0x00000002
209e7fd4179SDavid Teigland 
2108304d6f2SDavid Teigland #define DLM_CALLBACKS_SIZE	6
2118304d6f2SDavid Teigland 
2128304d6f2SDavid Teigland #define DLM_CB_CAST		0x00000001
2138304d6f2SDavid Teigland #define DLM_CB_BAST		0x00000002
2148304d6f2SDavid Teigland #define DLM_CB_SKIP		0x00000004
2158304d6f2SDavid Teigland 
2168304d6f2SDavid Teigland struct dlm_callback {
2178304d6f2SDavid Teigland 	uint64_t		seq;
2188304d6f2SDavid Teigland 	uint32_t		flags;		/* DLM_CBF_ */
2198304d6f2SDavid Teigland 	int			sb_status;	/* copy to lksb status */
2208304d6f2SDavid Teigland 	uint8_t			sb_flags;	/* copy to lksb flags */
2218304d6f2SDavid Teigland 	int8_t			mode; /* rq mode of bast, gr mode of cast */
2228304d6f2SDavid Teigland };
2238304d6f2SDavid Teigland 
224e7fd4179SDavid Teigland struct dlm_lkb {
225e7fd4179SDavid Teigland 	struct dlm_rsb		*lkb_resource;	/* the rsb */
226e7fd4179SDavid Teigland 	struct kref		lkb_ref;
227e7fd4179SDavid Teigland 	int			lkb_nodeid;	/* copied from rsb */
228e7fd4179SDavid Teigland 	int			lkb_ownpid;	/* pid of lock owner */
229e7fd4179SDavid Teigland 	uint32_t		lkb_id;		/* our lock ID */
230e7fd4179SDavid Teigland 	uint32_t		lkb_remid;	/* lock ID on remote partner */
231e7fd4179SDavid Teigland 	uint32_t		lkb_exflags;	/* external flags from caller */
232e7fd4179SDavid Teigland 	uint32_t		lkb_sbflags;	/* lksb flags */
233e7fd4179SDavid Teigland 	uint32_t		lkb_flags;	/* internal flags */
234e7fd4179SDavid Teigland 	uint32_t		lkb_lvbseq;	/* lvb sequence number */
235e7fd4179SDavid Teigland 
236e7fd4179SDavid Teigland 	int8_t			lkb_status;     /* granted, waiting, convert */
237e7fd4179SDavid Teigland 	int8_t			lkb_rqmode;	/* requested lock mode */
238e7fd4179SDavid Teigland 	int8_t			lkb_grmode;	/* granted lock mode */
239e7fd4179SDavid Teigland 	int8_t			lkb_highbast;	/* highest mode bast sent for */
2407fe2b319SDavid Teigland 
241e7fd4179SDavid Teigland 	int8_t			lkb_wait_type;	/* type of reply waiting for */
242ef0c2bb0SDavid Teigland 	int8_t			lkb_wait_count;
243c6ff669bSDavid Teigland 	int			lkb_wait_nodeid; /* for debugging */
244e7fd4179SDavid Teigland 
245e7fd4179SDavid Teigland 	struct list_head	lkb_statequeue;	/* rsb g/c/w list */
246e7fd4179SDavid Teigland 	struct list_head	lkb_rsb_lookup;	/* waiting for rsb lookup */
247e7fd4179SDavid Teigland 	struct list_head	lkb_wait_reply;	/* waiting for remote reply */
248597d0caeSDavid Teigland 	struct list_head	lkb_ownqueue;	/* list of locks for a process */
2493ae1acf9SDavid Teigland 	struct list_head	lkb_time_list;
250eeda418dSDavid Teigland 	ktime_t			lkb_timestamp;
251c6ff669bSDavid Teigland 	ktime_t			lkb_wait_time;
2523ae1acf9SDavid Teigland 	unsigned long		lkb_timeout_cs;
253e7fd4179SDavid Teigland 
25423e8e1aaSDavid Teigland 	struct mutex		lkb_cb_mutex;
25523e8e1aaSDavid Teigland 	struct work_struct	lkb_cb_work;
25623e8e1aaSDavid Teigland 	struct list_head	lkb_cb_list; /* for ls_cb_delay or proc->asts */
2578304d6f2SDavid Teigland 	struct dlm_callback	lkb_callbacks[DLM_CALLBACKS_SIZE];
2588304d6f2SDavid Teigland 	struct dlm_callback	lkb_last_cast;
2598304d6f2SDavid Teigland 	struct dlm_callback	lkb_last_bast;
2608304d6f2SDavid Teigland 	ktime_t			lkb_last_cast_time;	/* for debugging */
2618304d6f2SDavid Teigland 	ktime_t			lkb_last_bast_time;	/* for debugging */
2628304d6f2SDavid Teigland 
2634875647aSDavid Teigland 	uint64_t		lkb_recover_seq; /* from ls_recover_seq */
2644875647aSDavid Teigland 
265e7fd4179SDavid Teigland 	char			*lkb_lvbptr;
266e7fd4179SDavid Teigland 	struct dlm_lksb		*lkb_lksb;      /* caller's status block */
267e5dae548SDavid Teigland 	void			(*lkb_astfn) (void *astparam);
268e5dae548SDavid Teigland 	void			(*lkb_bastfn) (void *astparam, int mode);
269d292c0ccSDavid Teigland 	union {
270e5dae548SDavid Teigland 		void			*lkb_astparam;	/* caller's ast arg */
271d292c0ccSDavid Teigland 		struct dlm_user_args	*lkb_ua;
272d292c0ccSDavid Teigland 	};
273e7fd4179SDavid Teigland };
274e7fd4179SDavid Teigland 
275c04fecb4SDavid Teigland /*
276c04fecb4SDavid Teigland  * res_master_nodeid is "normal": 0 is unset/invalid, non-zero is the real
277c04fecb4SDavid Teigland  * nodeid, even when nodeid is our_nodeid.
278c04fecb4SDavid Teigland  *
279c04fecb4SDavid Teigland  * res_nodeid is "odd": -1 is unset/invalid, zero means our_nodeid,
280c04fecb4SDavid Teigland  * greater than zero when another nodeid.
281c04fecb4SDavid Teigland  *
282c04fecb4SDavid Teigland  * (TODO: remove res_nodeid and only use res_master_nodeid)
283c04fecb4SDavid Teigland  */
284e7fd4179SDavid Teigland 
285e7fd4179SDavid Teigland struct dlm_rsb {
286e7fd4179SDavid Teigland 	struct dlm_ls		*res_ls;	/* the lockspace */
287e7fd4179SDavid Teigland 	struct kref		res_ref;
28890135925SDavid Teigland 	struct mutex		res_mutex;
289e7fd4179SDavid Teigland 	unsigned long		res_flags;
290e7fd4179SDavid Teigland 	int			res_length;	/* length of rsb name */
291e7fd4179SDavid Teigland 	int			res_nodeid;
292c04fecb4SDavid Teigland 	int			res_master_nodeid;
293c04fecb4SDavid Teigland 	int			res_dir_nodeid;
2941d7c484eSDavid Teigland 	int			res_id;		/* for ls_recover_idr */
295e7fd4179SDavid Teigland 	uint32_t                res_lvbseq;
296e7fd4179SDavid Teigland 	uint32_t		res_hash;
297e7fd4179SDavid Teigland 	uint32_t		res_bucket;	/* rsbtbl */
298e7fd4179SDavid Teigland 	unsigned long		res_toss_time;
299e7fd4179SDavid Teigland 	uint32_t		res_first_lkid;
300e7fd4179SDavid Teigland 	struct list_head	res_lookup;	/* lkbs waiting on first */
3019beb3bf5SBob Peterson 	union {
3029beb3bf5SBob Peterson 		struct list_head	res_hashchain;
3039beb3bf5SBob Peterson 		struct rb_node		res_hashnode;	/* rsbtbl */
3049beb3bf5SBob Peterson 	};
305e7fd4179SDavid Teigland 	struct list_head	res_grantqueue;
306e7fd4179SDavid Teigland 	struct list_head	res_convertqueue;
307e7fd4179SDavid Teigland 	struct list_head	res_waitqueue;
308e7fd4179SDavid Teigland 
309e7fd4179SDavid Teigland 	struct list_head	res_root_list;	    /* used for recovery */
310e7fd4179SDavid Teigland 	struct list_head	res_recover_list;   /* used for recovery */
311e7fd4179SDavid Teigland 	int			res_recover_locks_count;
312e7fd4179SDavid Teigland 
313e7fd4179SDavid Teigland 	char			*res_lvbptr;
3143881ac04SDavid Teigland 	char			res_name[DLM_RESNAME_MAXLEN+1];
315e7fd4179SDavid Teigland };
316e7fd4179SDavid Teigland 
317c04fecb4SDavid Teigland /* dlm_master_lookup() flags */
318c04fecb4SDavid Teigland 
319c04fecb4SDavid Teigland #define DLM_LU_RECOVER_DIR	1
320c04fecb4SDavid Teigland #define DLM_LU_RECOVER_MASTER	2
321c04fecb4SDavid Teigland 
322c04fecb4SDavid Teigland /* dlm_master_lookup() results */
323c04fecb4SDavid Teigland 
324c04fecb4SDavid Teigland #define DLM_LU_MATCH		1
325c04fecb4SDavid Teigland #define DLM_LU_ADD		2
326c04fecb4SDavid Teigland 
327e7fd4179SDavid Teigland /* find_rsb() flags */
328e7fd4179SDavid Teigland 
329c04fecb4SDavid Teigland #define R_REQUEST		0x00000001
330c04fecb4SDavid Teigland #define R_RECEIVE_REQUEST	0x00000002
331c04fecb4SDavid Teigland #define R_RECEIVE_RECOVER	0x00000004
332e7fd4179SDavid Teigland 
333e7fd4179SDavid Teigland /* rsb_flags */
334e7fd4179SDavid Teigland 
335e7fd4179SDavid Teigland enum rsb_flags {
336e7fd4179SDavid Teigland 	RSB_MASTER_UNCERTAIN,
337e7fd4179SDavid Teigland 	RSB_VALNOTVALID,
338e7fd4179SDavid Teigland 	RSB_VALNOTVALID_PREV,
339e7fd4179SDavid Teigland 	RSB_NEW_MASTER,
340e7fd4179SDavid Teigland 	RSB_NEW_MASTER2,
341e7fd4179SDavid Teigland 	RSB_RECOVER_CONVERT,
3424875647aSDavid Teigland 	RSB_RECOVER_GRANT,
343da8c6663SDavid Teigland 	RSB_RECOVER_LVB_INVAL,
344e7fd4179SDavid Teigland };
345e7fd4179SDavid Teigland 
346e7fd4179SDavid Teigland static inline void rsb_set_flag(struct dlm_rsb *r, enum rsb_flags flag)
347e7fd4179SDavid Teigland {
348e7fd4179SDavid Teigland 	__set_bit(flag, &r->res_flags);
349e7fd4179SDavid Teigland }
350e7fd4179SDavid Teigland 
351e7fd4179SDavid Teigland static inline void rsb_clear_flag(struct dlm_rsb *r, enum rsb_flags flag)
352e7fd4179SDavid Teigland {
353e7fd4179SDavid Teigland 	__clear_bit(flag, &r->res_flags);
354e7fd4179SDavid Teigland }
355e7fd4179SDavid Teigland 
356e7fd4179SDavid Teigland static inline int rsb_flag(struct dlm_rsb *r, enum rsb_flags flag)
357e7fd4179SDavid Teigland {
358e7fd4179SDavid Teigland 	return test_bit(flag, &r->res_flags);
359e7fd4179SDavid Teigland }
360e7fd4179SDavid Teigland 
361e7fd4179SDavid Teigland 
362e7fd4179SDavid Teigland /* dlm_header is first element of all structs sent between nodes */
363e7fd4179SDavid Teigland 
36438aa8b0cSDavid Teigland #define DLM_HEADER_MAJOR	0x00030000
365757a4271SDavid Teigland #define DLM_HEADER_MINOR	0x00000001
366757a4271SDavid Teigland 
367757a4271SDavid Teigland #define DLM_HEADER_SLOTS	0x00000001
368e7fd4179SDavid Teigland 
369e7fd4179SDavid Teigland #define DLM_MSG			1
370e7fd4179SDavid Teigland #define DLM_RCOM		2
371e7fd4179SDavid Teigland 
372e7fd4179SDavid Teigland struct dlm_header {
373e7fd4179SDavid Teigland 	uint32_t		h_version;
374e7fd4179SDavid Teigland 	uint32_t		h_lockspace;
375e7fd4179SDavid Teigland 	uint32_t		h_nodeid;	/* nodeid of sender */
376e7fd4179SDavid Teigland 	uint16_t		h_length;
377e7fd4179SDavid Teigland 	uint8_t			h_cmd;		/* DLM_MSG, DLM_RCOM */
378e7fd4179SDavid Teigland 	uint8_t			h_pad;
379e7fd4179SDavid Teigland };
380e7fd4179SDavid Teigland 
381e7fd4179SDavid Teigland 
382e7fd4179SDavid Teigland #define DLM_MSG_REQUEST		1
383e7fd4179SDavid Teigland #define DLM_MSG_CONVERT		2
384e7fd4179SDavid Teigland #define DLM_MSG_UNLOCK		3
385e7fd4179SDavid Teigland #define DLM_MSG_CANCEL		4
386e7fd4179SDavid Teigland #define DLM_MSG_REQUEST_REPLY	5
387e7fd4179SDavid Teigland #define DLM_MSG_CONVERT_REPLY	6
388e7fd4179SDavid Teigland #define DLM_MSG_UNLOCK_REPLY	7
389e7fd4179SDavid Teigland #define DLM_MSG_CANCEL_REPLY	8
390e7fd4179SDavid Teigland #define DLM_MSG_GRANT		9
391e7fd4179SDavid Teigland #define DLM_MSG_BAST		10
392e7fd4179SDavid Teigland #define DLM_MSG_LOOKUP		11
393e7fd4179SDavid Teigland #define DLM_MSG_REMOVE		12
394e7fd4179SDavid Teigland #define DLM_MSG_LOOKUP_REPLY	13
3958499137dSDavid Teigland #define DLM_MSG_PURGE		14
396e7fd4179SDavid Teigland 
397e7fd4179SDavid Teigland struct dlm_message {
398e7fd4179SDavid Teigland 	struct dlm_header	m_header;
399e7fd4179SDavid Teigland 	uint32_t		m_type;		/* DLM_MSG_ */
400e7fd4179SDavid Teigland 	uint32_t		m_nodeid;
401e7fd4179SDavid Teigland 	uint32_t		m_pid;
402e7fd4179SDavid Teigland 	uint32_t		m_lkid;		/* lkid on sender */
403e7fd4179SDavid Teigland 	uint32_t		m_remid;	/* lkid on receiver */
404e7fd4179SDavid Teigland 	uint32_t		m_parent_lkid;
405e7fd4179SDavid Teigland 	uint32_t		m_parent_remid;
406e7fd4179SDavid Teigland 	uint32_t		m_exflags;
407e7fd4179SDavid Teigland 	uint32_t		m_sbflags;
408e7fd4179SDavid Teigland 	uint32_t		m_flags;
409e7fd4179SDavid Teigland 	uint32_t		m_lvbseq;
410e7fd4179SDavid Teigland 	uint32_t		m_hash;
411e7fd4179SDavid Teigland 	int			m_status;
412e7fd4179SDavid Teigland 	int			m_grmode;
413e7fd4179SDavid Teigland 	int			m_rqmode;
414e7fd4179SDavid Teigland 	int			m_bastmode;
415e7fd4179SDavid Teigland 	int			m_asts;
416e7fd4179SDavid Teigland 	int			m_result;	/* 0 or -EXXX */
417e7fd4179SDavid Teigland 	char			m_extra[0];	/* name or lvb */
418e7fd4179SDavid Teigland };
419e7fd4179SDavid Teigland 
420e7fd4179SDavid Teigland 
421e7fd4179SDavid Teigland #define DLM_RS_NODES		0x00000001
422e7fd4179SDavid Teigland #define DLM_RS_NODES_ALL	0x00000002
423e7fd4179SDavid Teigland #define DLM_RS_DIR		0x00000004
424e7fd4179SDavid Teigland #define DLM_RS_DIR_ALL		0x00000008
425e7fd4179SDavid Teigland #define DLM_RS_LOCKS		0x00000010
426e7fd4179SDavid Teigland #define DLM_RS_LOCKS_ALL	0x00000020
427e7fd4179SDavid Teigland #define DLM_RS_DONE		0x00000040
428e7fd4179SDavid Teigland #define DLM_RS_DONE_ALL		0x00000080
429e7fd4179SDavid Teigland 
430e7fd4179SDavid Teigland #define DLM_RCOM_STATUS		1
431e7fd4179SDavid Teigland #define DLM_RCOM_NAMES		2
432e7fd4179SDavid Teigland #define DLM_RCOM_LOOKUP		3
433e7fd4179SDavid Teigland #define DLM_RCOM_LOCK		4
434e7fd4179SDavid Teigland #define DLM_RCOM_STATUS_REPLY	5
435e7fd4179SDavid Teigland #define DLM_RCOM_NAMES_REPLY	6
436e7fd4179SDavid Teigland #define DLM_RCOM_LOOKUP_REPLY	7
437e7fd4179SDavid Teigland #define DLM_RCOM_LOCK_REPLY	8
438e7fd4179SDavid Teigland 
439e7fd4179SDavid Teigland struct dlm_rcom {
440e7fd4179SDavid Teigland 	struct dlm_header	rc_header;
441e7fd4179SDavid Teigland 	uint32_t		rc_type;	/* DLM_RCOM_ */
442e7fd4179SDavid Teigland 	int			rc_result;	/* multi-purpose */
443e7fd4179SDavid Teigland 	uint64_t		rc_id;		/* match reply with request */
44438aa8b0cSDavid Teigland 	uint64_t		rc_seq;		/* sender's ls_recover_seq */
44538aa8b0cSDavid Teigland 	uint64_t		rc_seq_reply;	/* remote ls_recover_seq */
446e7fd4179SDavid Teigland 	char			rc_buf[0];
447e7fd4179SDavid Teigland };
448e7fd4179SDavid Teigland 
449eef7d739SAl Viro union dlm_packet {
450eef7d739SAl Viro 	struct dlm_header	header;		/* common to other two */
451eef7d739SAl Viro 	struct dlm_message	message;
452eef7d739SAl Viro 	struct dlm_rcom		rcom;
453eef7d739SAl Viro };
454eef7d739SAl Viro 
455757a4271SDavid Teigland #define DLM_RSF_NEED_SLOTS	0x00000001
456757a4271SDavid Teigland 
457757a4271SDavid Teigland /* RCOM_STATUS data */
458757a4271SDavid Teigland struct rcom_status {
459757a4271SDavid Teigland 	__le32			rs_flags;
460757a4271SDavid Teigland 	__le32			rs_unused1;
461757a4271SDavid Teigland 	__le64			rs_unused2;
462757a4271SDavid Teigland };
463757a4271SDavid Teigland 
464757a4271SDavid Teigland /* RCOM_STATUS_REPLY data */
465e7fd4179SDavid Teigland struct rcom_config {
46693ff2971SAl Viro 	__le32			rf_lvblen;
46793ff2971SAl Viro 	__le32			rf_lsflags;
468757a4271SDavid Teigland 
469757a4271SDavid Teigland 	/* DLM_HEADER_SLOTS adds: */
470757a4271SDavid Teigland 	__le32			rf_flags;
471757a4271SDavid Teigland 	__le16			rf_our_slot;
472757a4271SDavid Teigland 	__le16			rf_num_slots;
473757a4271SDavid Teigland 	__le32			rf_generation;
474757a4271SDavid Teigland 	__le32			rf_unused1;
475757a4271SDavid Teigland 	__le64			rf_unused2;
476757a4271SDavid Teigland };
477757a4271SDavid Teigland 
478757a4271SDavid Teigland struct rcom_slot {
479757a4271SDavid Teigland 	__le32			ro_nodeid;
480757a4271SDavid Teigland 	__le16			ro_slot;
481757a4271SDavid Teigland 	__le16			ro_unused1;
482757a4271SDavid Teigland 	__le64			ro_unused2;
483e7fd4179SDavid Teigland };
484e7fd4179SDavid Teigland 
485e7fd4179SDavid Teigland struct rcom_lock {
486163a1859SAl Viro 	__le32			rl_ownpid;
487163a1859SAl Viro 	__le32			rl_lkid;
488163a1859SAl Viro 	__le32			rl_remid;
489163a1859SAl Viro 	__le32			rl_parent_lkid;
490163a1859SAl Viro 	__le32			rl_parent_remid;
491163a1859SAl Viro 	__le32			rl_exflags;
492163a1859SAl Viro 	__le32			rl_flags;
493163a1859SAl Viro 	__le32			rl_lvbseq;
494163a1859SAl Viro 	__le32			rl_result;
495e7fd4179SDavid Teigland 	int8_t			rl_rqmode;
496e7fd4179SDavid Teigland 	int8_t			rl_grmode;
497e7fd4179SDavid Teigland 	int8_t			rl_status;
498e7fd4179SDavid Teigland 	int8_t			rl_asts;
499163a1859SAl Viro 	__le16			rl_wait_type;
500163a1859SAl Viro 	__le16			rl_namelen;
501e7fd4179SDavid Teigland 	char			rl_name[DLM_RESNAME_MAXLEN];
502e7fd4179SDavid Teigland 	char			rl_lvb[0];
503e7fd4179SDavid Teigland };
504e7fd4179SDavid Teigland 
50505c32f47SDavid Teigland /*
50605c32f47SDavid Teigland  * The max number of resources per rsbtbl bucket that shrink will attempt
50705c32f47SDavid Teigland  * to remove in each iteration.
50805c32f47SDavid Teigland  */
50905c32f47SDavid Teigland 
51005c32f47SDavid Teigland #define DLM_REMOVE_NAMES_MAX 8
51105c32f47SDavid Teigland 
512e7fd4179SDavid Teigland struct dlm_ls {
513e7fd4179SDavid Teigland 	struct list_head	ls_list;	/* list of lockspaces */
514597d0caeSDavid Teigland 	dlm_lockspace_t		*ls_local_handle;
515e7fd4179SDavid Teigland 	uint32_t		ls_global_id;	/* global unique lockspace ID */
516757a4271SDavid Teigland 	uint32_t		ls_generation;
517e7fd4179SDavid Teigland 	uint32_t		ls_exflags;
518e7fd4179SDavid Teigland 	int			ls_lvblen;
5190f8e0d9aSDavid Teigland 	int			ls_count;	/* refcount of processes in
5200f8e0d9aSDavid Teigland 						   the dlm using this ls */
5210f8e0d9aSDavid Teigland 	int			ls_create_count; /* create/release refcount */
522e7fd4179SDavid Teigland 	unsigned long		ls_flags;	/* LSFL_ */
523c1dcf65fSDavid Teigland 	unsigned long		ls_scan_time;
524e7fd4179SDavid Teigland 	struct kobject		ls_kobj;
525e7fd4179SDavid Teigland 
5263d6aa675SDavid Teigland 	struct idr		ls_lkbidr;
5273d6aa675SDavid Teigland 	spinlock_t		ls_lkbidr_spin;
5283d6aa675SDavid Teigland 
529e7fd4179SDavid Teigland 	struct dlm_rsbtable	*ls_rsbtbl;
530e7fd4179SDavid Teigland 	uint32_t		ls_rsbtbl_size;
531e7fd4179SDavid Teigland 
53290135925SDavid Teigland 	struct mutex		ls_waiters_mutex;
533e7fd4179SDavid Teigland 	struct list_head	ls_waiters;	/* lkbs needing a reply */
534e7fd4179SDavid Teigland 
535ef0c2bb0SDavid Teigland 	struct mutex		ls_orphans_mutex;
536ef0c2bb0SDavid Teigland 	struct list_head	ls_orphans;
537ef0c2bb0SDavid Teigland 
5383ae1acf9SDavid Teigland 	struct mutex		ls_timeout_mutex;
5393ae1acf9SDavid Teigland 	struct list_head	ls_timeout;
5403ae1acf9SDavid Teigland 
5413881ac04SDavid Teigland 	spinlock_t		ls_new_rsb_spin;
5423881ac04SDavid Teigland 	int			ls_new_rsb_count;
5433881ac04SDavid Teigland 	struct list_head	ls_new_rsb;	/* new rsb structs */
5443881ac04SDavid Teigland 
54505c32f47SDavid Teigland 	spinlock_t		ls_remove_spin;
54605c32f47SDavid Teigland 	char			ls_remove_name[DLM_RESNAME_MAXLEN+1];
54705c32f47SDavid Teigland 	char			*ls_remove_names[DLM_REMOVE_NAMES_MAX];
54805c32f47SDavid Teigland 	int			ls_remove_len;
54905c32f47SDavid Teigland 	int			ls_remove_lens[DLM_REMOVE_NAMES_MAX];
55005c32f47SDavid Teigland 
551e7fd4179SDavid Teigland 	struct list_head	ls_nodes;	/* current nodes in ls */
552e7fd4179SDavid Teigland 	struct list_head	ls_nodes_gone;	/* dead node list, recovery */
553e7fd4179SDavid Teigland 	int			ls_num_nodes;	/* number of nodes in ls */
554e7fd4179SDavid Teigland 	int			ls_low_nodeid;
555e7fd4179SDavid Teigland 	int			ls_total_weight;
556e7fd4179SDavid Teigland 	int			*ls_node_array;
557e7fd4179SDavid Teigland 
558757a4271SDavid Teigland 	int			ls_slot;
559757a4271SDavid Teigland 	int			ls_num_slots;
560757a4271SDavid Teigland 	int			ls_slots_size;
561757a4271SDavid Teigland 	struct dlm_slot		*ls_slots;
562757a4271SDavid Teigland 
563e7fd4179SDavid Teigland 	struct dlm_rsb		ls_stub_rsb;	/* for returning errors */
564e7fd4179SDavid Teigland 	struct dlm_lkb		ls_stub_lkb;	/* for returning errors */
565e7fd4179SDavid Teigland 	struct dlm_message	ls_stub_ms;	/* for faking a reply */
566e7fd4179SDavid Teigland 
5675de6319bSDavid Teigland 	struct dentry		*ls_debug_rsb_dentry; /* debugfs */
5685de6319bSDavid Teigland 	struct dentry		*ls_debug_waiters_dentry; /* debugfs */
569ac90a255SDavid Teigland 	struct dentry		*ls_debug_locks_dentry; /* debugfs */
570d022509dSDavid Teigland 	struct dentry		*ls_debug_all_dentry; /* debugfs */
571c04fecb4SDavid Teigland 	struct dentry		*ls_debug_toss_dentry; /* debugfs */
572e7fd4179SDavid Teigland 
573e7fd4179SDavid Teigland 	wait_queue_head_t	ls_uevent_wait;	/* user part of join/leave */
574e7fd4179SDavid Teigland 	int			ls_uevent_result;
5758b0e7b2cSDavid Teigland 	struct completion	ls_members_done;
5768b0e7b2cSDavid Teigland 	int			ls_members_result;
577e7fd4179SDavid Teigland 
578597d0caeSDavid Teigland 	struct miscdevice       ls_device;
579597d0caeSDavid Teigland 
58023e8e1aaSDavid Teigland 	struct workqueue_struct	*ls_callback_wq;
58123e8e1aaSDavid Teigland 
582e7fd4179SDavid Teigland 	/* recovery related */
583e7fd4179SDavid Teigland 
58423e8e1aaSDavid Teigland 	struct mutex		ls_cb_mutex;
58523e8e1aaSDavid Teigland 	struct list_head	ls_cb_delay; /* save for queue_work later */
586e7fd4179SDavid Teigland 	struct timer_list	ls_timer;
587e7fd4179SDavid Teigland 	struct task_struct	*ls_recoverd_task;
58890135925SDavid Teigland 	struct mutex		ls_recoverd_active;
589e7fd4179SDavid Teigland 	spinlock_t		ls_recover_lock;
5903ae1acf9SDavid Teigland 	unsigned long		ls_recover_begin; /* jiffies timestamp */
591e7fd4179SDavid Teigland 	uint32_t		ls_recover_status; /* DLM_RS_ */
592e7fd4179SDavid Teigland 	uint64_t		ls_recover_seq;
593e7fd4179SDavid Teigland 	struct dlm_recover	*ls_recover_args;
594e7fd4179SDavid Teigland 	struct rw_semaphore	ls_in_recovery;	/* block local requests */
595c36258b5SDavid Teigland 	struct rw_semaphore	ls_recv_active;	/* block dlm_recv */
596e7fd4179SDavid Teigland 	struct list_head	ls_requestqueue;/* queue remote requests */
59790135925SDavid Teigland 	struct mutex		ls_requestqueue_mutex;
5984007685cSAl Viro 	struct dlm_rcom		*ls_recover_buf;
599faa0f267SDavid Teigland 	int			ls_recover_nodeid; /* for debugging */
600c04fecb4SDavid Teigland 	unsigned int		ls_recover_dir_sent_res; /* for log info */
601c04fecb4SDavid Teigland 	unsigned int		ls_recover_dir_sent_msg; /* for log info */
6024875647aSDavid Teigland 	unsigned int		ls_recover_locks_in; /* for log info */
6034a99c3d9SDavid Teigland 	uint64_t		ls_rcom_seq;
60498f176fbSDavid Teigland 	spinlock_t		ls_rcom_spin;
605e7fd4179SDavid Teigland 	struct list_head	ls_recover_list;
606e7fd4179SDavid Teigland 	spinlock_t		ls_recover_list_lock;
607e7fd4179SDavid Teigland 	int			ls_recover_list_count;
6081d7c484eSDavid Teigland 	struct idr		ls_recover_idr;
6091d7c484eSDavid Teigland 	spinlock_t		ls_recover_idr_lock;
610e7fd4179SDavid Teigland 	wait_queue_head_t	ls_wait_general;
611475f230cSDavid Teigland 	wait_queue_head_t	ls_recover_lock_wait;
612597d0caeSDavid Teigland 	struct mutex		ls_clear_proc_locks;
613e7fd4179SDavid Teigland 
614e7fd4179SDavid Teigland 	struct list_head	ls_root_list;	/* root resources */
615e7fd4179SDavid Teigland 	struct rw_semaphore	ls_root_sem;	/* protect root_list */
616e7fd4179SDavid Teigland 
61760f98d18SDavid Teigland 	const struct dlm_lockspace_ops *ls_ops;
61860f98d18SDavid Teigland 	void			*ls_ops_arg;
61960f98d18SDavid Teigland 
620e7fd4179SDavid Teigland 	int			ls_namelen;
621e7fd4179SDavid Teigland 	char			ls_name[1];
622e7fd4179SDavid Teigland };
623e7fd4179SDavid Teigland 
624475f230cSDavid Teigland /*
625475f230cSDavid Teigland  * LSFL_RECOVER_STOP - dlm_ls_stop() sets this to tell dlm recovery routines
626475f230cSDavid Teigland  * that they should abort what they're doing so new recovery can be started.
627475f230cSDavid Teigland  *
628475f230cSDavid Teigland  * LSFL_RECOVER_DOWN - dlm_ls_stop() sets this to tell dlm_recoverd that it
629475f230cSDavid Teigland  * should do down_write() on the in_recovery rw_semaphore. (doing down_write
630475f230cSDavid Teigland  * within dlm_ls_stop causes complaints about the lock acquired/released
631475f230cSDavid Teigland  * in different contexts.)
632475f230cSDavid Teigland  *
633475f230cSDavid Teigland  * LSFL_RECOVER_LOCK - dlm_recoverd holds the in_recovery rw_semaphore.
634475f230cSDavid Teigland  * It sets this after it is done with down_write() on the in_recovery
635475f230cSDavid Teigland  * rw_semaphore and clears it after it has released the rw_semaphore.
636475f230cSDavid Teigland  *
637475f230cSDavid Teigland  * LSFL_RECOVER_WORK - dlm_ls_start() sets this to tell dlm_recoverd that it
638475f230cSDavid Teigland  * should begin recovery of the lockspace.
639475f230cSDavid Teigland  *
640475f230cSDavid Teigland  * LSFL_RUNNING - set when normal locking activity is enabled.
641475f230cSDavid Teigland  * dlm_ls_stop() clears this to tell dlm locking routines that they should
642475f230cSDavid Teigland  * quit what they are doing so recovery can run.  dlm_recoverd sets
643475f230cSDavid Teigland  * this after recovery is finished.
644475f230cSDavid Teigland  */
645475f230cSDavid Teigland 
646475f230cSDavid Teigland #define LSFL_RECOVER_STOP	0
647475f230cSDavid Teigland #define LSFL_RECOVER_DOWN	1
648475f230cSDavid Teigland #define LSFL_RECOVER_LOCK	2
649475f230cSDavid Teigland #define LSFL_RECOVER_WORK	3
650475f230cSDavid Teigland #define LSFL_RUNNING		4
651475f230cSDavid Teigland 
652475f230cSDavid Teigland #define LSFL_RCOM_READY		5
653475f230cSDavid Teigland #define LSFL_RCOM_WAIT		6
654475f230cSDavid Teigland #define LSFL_UEVENT_WAIT	7
655475f230cSDavid Teigland #define LSFL_TIMEWARN		8
656475f230cSDavid Teigland #define LSFL_CB_DELAY		9
657475f230cSDavid Teigland #define LSFL_NODIR		10
658e7fd4179SDavid Teigland 
659597d0caeSDavid Teigland /* much of this is just saving user space pointers associated with the
660597d0caeSDavid Teigland    lock that we pass back to the user lib with an ast */
661597d0caeSDavid Teigland 
662597d0caeSDavid Teigland struct dlm_user_args {
663597d0caeSDavid Teigland 	struct dlm_user_proc	*proc; /* each process that opens the lockspace
664597d0caeSDavid Teigland 					  device has private data
665597d0caeSDavid Teigland 					  (dlm_user_proc) on the struct file,
666597d0caeSDavid Teigland 					  the process's locks point back to it*/
667597d0caeSDavid Teigland 	struct dlm_lksb		lksb;
668597d0caeSDavid Teigland 	struct dlm_lksb __user	*user_lksb;
669597d0caeSDavid Teigland 	void __user		*castparam;
670597d0caeSDavid Teigland 	void __user		*castaddr;
671597d0caeSDavid Teigland 	void __user		*bastparam;
672597d0caeSDavid Teigland 	void __user		*bastaddr;
673d7db923eSDavid Teigland 	uint64_t		xid;
674597d0caeSDavid Teigland };
675597d0caeSDavid Teigland 
676597d0caeSDavid Teigland #define DLM_PROC_FLAGS_CLOSING 1
677597d0caeSDavid Teigland #define DLM_PROC_FLAGS_COMPAT  2
678597d0caeSDavid Teigland 
679597d0caeSDavid Teigland /* locks list is kept so we can remove all a process's locks when it
680597d0caeSDavid Teigland    exits (or orphan those that are persistent) */
681597d0caeSDavid Teigland 
682597d0caeSDavid Teigland struct dlm_user_proc {
683597d0caeSDavid Teigland 	dlm_lockspace_t		*lockspace;
684597d0caeSDavid Teigland 	unsigned long		flags; /* DLM_PROC_FLAGS */
685597d0caeSDavid Teigland 	struct list_head	asts;
686597d0caeSDavid Teigland 	spinlock_t		asts_spin;
687597d0caeSDavid Teigland 	struct list_head	locks;
688597d0caeSDavid Teigland 	spinlock_t		locks_spin;
689a1bc86e6SDavid Teigland 	struct list_head	unlocking;
690597d0caeSDavid Teigland 	wait_queue_head_t	wait;
691597d0caeSDavid Teigland };
692597d0caeSDavid Teigland 
693e7fd4179SDavid Teigland static inline int dlm_locking_stopped(struct dlm_ls *ls)
694e7fd4179SDavid Teigland {
695e7fd4179SDavid Teigland 	return !test_bit(LSFL_RUNNING, &ls->ls_flags);
696e7fd4179SDavid Teigland }
697e7fd4179SDavid Teigland 
698e7fd4179SDavid Teigland static inline int dlm_recovery_stopped(struct dlm_ls *ls)
699e7fd4179SDavid Teigland {
700475f230cSDavid Teigland 	return test_bit(LSFL_RECOVER_STOP, &ls->ls_flags);
701e7fd4179SDavid Teigland }
702e7fd4179SDavid Teigland 
703e7fd4179SDavid Teigland static inline int dlm_no_directory(struct dlm_ls *ls)
704e7fd4179SDavid Teigland {
7054875647aSDavid Teigland 	return test_bit(LSFL_NODIR, &ls->ls_flags);
706e7fd4179SDavid Teigland }
707e7fd4179SDavid Teigland 
708e028398dSAdrian Bunk int dlm_netlink_init(void);
709e028398dSAdrian Bunk void dlm_netlink_exit(void);
710e028398dSAdrian Bunk void dlm_timeout_warn(struct dlm_lkb *lkb);
7112402211aSDavid Teigland int dlm_plock_init(void);
7122402211aSDavid Teigland void dlm_plock_exit(void);
713e028398dSAdrian Bunk 
714e028398dSAdrian Bunk #ifdef CONFIG_DLM_DEBUG
715e028398dSAdrian Bunk int dlm_register_debugfs(void);
716e028398dSAdrian Bunk void dlm_unregister_debugfs(void);
717e028398dSAdrian Bunk int dlm_create_debug_file(struct dlm_ls *ls);
718e028398dSAdrian Bunk void dlm_delete_debug_file(struct dlm_ls *ls);
719e028398dSAdrian Bunk #else
720e028398dSAdrian Bunk static inline int dlm_register_debugfs(void) { return 0; }
721e028398dSAdrian Bunk static inline void dlm_unregister_debugfs(void) { }
722e028398dSAdrian Bunk static inline int dlm_create_debug_file(struct dlm_ls *ls) { return 0; }
723e028398dSAdrian Bunk static inline void dlm_delete_debug_file(struct dlm_ls *ls) { }
724e028398dSAdrian Bunk #endif
725e028398dSAdrian Bunk 
726e7fd4179SDavid Teigland #endif				/* __DLM_INTERNAL_DOT_H__ */
727e7fd4179SDavid Teigland 
728