2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #ifndef LOCK_DLM_DOT_H
11 #define LOCK_DLM_DOT_H
13 #include <linux/module.h>
14 #include <linux/slab.h>
15 #include <linux/spinlock.h>
16 #include <linux/types.h>
17 #include <linux/string.h>
18 #include <linux/list.h>
19 #include <linux/socket.h>
20 #include <linux/delay.h>
21 #include <linux/kthread.h>
22 #include <linux/kobject.h>
23 #include <linux/fcntl.h>
24 #include <linux/wait.h>
27 #include <linux/dlm.h>
28 #include <linux/dlm_plock.h>
29 #include <linux/lm_interface.h>
32 * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a
33 * prefix of lock_dlm_ gets awkward. Externally, GFS refers to this module
37 #define GDLM_STRNAME_BYTES 24
38 #define GDLM_LVB_SIZE 32
39 #define GDLM_DROP_COUNT 0
40 #define GDLM_DROP_PERIOD 60
41 #define GDLM_NAME_LEN 128
43 /* GFS uses 12 bytes to identify a resource (32 bit type + 64 bit number).
44 We sprintf these numbers into a 24 byte string of hex values to make them
45 human-readable (to make debugging simpler.) */
48 unsigned char name
[GDLM_STRNAME_BYTES
];
49 unsigned short namelen
;
65 char clustername
[GDLM_NAME_LEN
];
66 char fsname
[GDLM_NAME_LEN
];
68 dlm_lockspace_t
*dlm_lockspace
;
73 int recover_jid_status
;
74 spinlock_t async_lock
;
75 struct list_head complete
;
76 struct list_head blocking
;
77 struct list_head delayed
;
78 struct list_head submit
;
79 struct list_head all_locks
;
81 wait_queue_head_t wait_control
;
82 struct task_struct
*thread1
;
83 struct task_struct
*thread2
;
84 wait_queue_head_t thread_wait
;
85 unsigned long drop_time
;
87 int drop_locks_period
;
96 LFL_FORCE_PROMOTE
= 5,
103 LFL_UNLOCK_DELETE
= 12,
109 struct lm_lockname lockname
;
110 struct gdlm_strname strname
;
112 struct dlm_lksb lksb
;
117 u32 lkf
; /* dlm flags DLM_LKF_ */
118 unsigned long flags
; /* lock_dlm flags LFL_ */
120 int bast_mode
; /* protected by async_lock */
122 struct list_head clist
; /* complete */
123 struct list_head blist
; /* blocking */
124 struct list_head delay_list
; /* delayed */
125 struct list_head all_list
; /* all locks for the fs */
126 struct gdlm_lock
*hold_null
; /* NL lock for hold_lvb */
129 #define gdlm_assert(assertion, fmt, args...) \
131 if (unlikely(!(assertion))) { \
132 printk(KERN_EMERG "lock_dlm: fatal assertion failed \"%s\"\n" \
133 "lock_dlm: " fmt "\n", \
134 #assertion, ##args); \
139 #define log_print(lev, fmt, arg...) printk(lev "lock_dlm: " fmt "\n" , ## arg)
140 #define log_info(fmt, arg...) log_print(KERN_INFO , fmt , ## arg)
141 #define log_error(fmt, arg...) log_print(KERN_ERR , fmt , ## arg)
142 #ifdef LOCK_DLM_LOG_DEBUG
143 #define log_debug(fmt, arg...) log_print(KERN_DEBUG , fmt , ## arg)
145 #define log_debug(fmt, arg...)
150 int gdlm_sysfs_init(void);
151 void gdlm_sysfs_exit(void);
152 int gdlm_kobject_setup(struct gdlm_ls
*, struct kobject
*);
153 void gdlm_kobject_release(struct gdlm_ls
*);
157 int gdlm_init_threads(struct gdlm_ls
*);
158 void gdlm_release_threads(struct gdlm_ls
*);
162 s16
gdlm_make_lmstate(s16
);
163 void gdlm_queue_delayed(struct gdlm_lock
*);
164 void gdlm_submit_delayed(struct gdlm_ls
*);
165 int gdlm_release_all_locks(struct gdlm_ls
*);
166 void gdlm_delete_lp(struct gdlm_lock
*);
167 unsigned int gdlm_do_lock(struct gdlm_lock
*);
169 int gdlm_get_lock(void *, struct lm_lockname
*, void **);
170 void gdlm_put_lock(void *);
171 unsigned int gdlm_lock(void *, unsigned int, unsigned int, unsigned int);
172 unsigned int gdlm_unlock(void *, unsigned int);
173 void gdlm_cancel(void *);
174 int gdlm_hold_lvb(void *, char **);
175 void gdlm_unhold_lvb(void *, char *);
179 extern const struct lm_lockops gdlm_ops
;