Whamcloud - gitweb
smash the HEAD with the contents of b_cmd. HEAD_PRE_CMD_SMASH and
[fs/lustre-release.git] / lustre / include / linux / lustre_dlm.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * (visit-tags-table FILE)
3  * vim:expandtab:shiftwidth=8:tabstop=8:
4  */
5
6 #ifndef _LUSTRE_DLM_H__
7 #define _LUSTRE_DLM_H__
8
9 #ifdef __KERNEL__
10 # include <linux/proc_fs.h>
11 #endif
12
13 #include <linux/lustre_lib.h>
14 #include <linux/lustre_net.h>
15 #include <linux/lustre_import.h>
16 #include <linux/lustre_handles.h>
17 #include <linux/lustre_export.h> /* for obd_export, for LDLM_DEBUG */
18
19 struct obd_ops;
20 struct obd_device;
21
22 #define OBD_LDLM_DEVICENAME  "ldlm"
23
24 #define LDLM_DEFAULT_LRU_SIZE 100
25
26 typedef enum {
27         ELDLM_OK = 0,
28
29         ELDLM_LOCK_CHANGED = 300,
30         ELDLM_LOCK_ABORTED = 301,
31         ELDLM_LOCK_REPLACED = 302,
32         ELDLM_NO_LOCK_DATA = 303,
33
34         ELDLM_NAMESPACE_EXISTS = 400,
35         ELDLM_BAD_NAMESPACE    = 401
36 } ldlm_error_t;
37
38 #define LDLM_NAMESPACE_SERVER 0
39 #define LDLM_NAMESPACE_CLIENT 1
40
41 #define LDLM_FL_LOCK_CHANGED   0x000001 /* extent, mode, or resource changed */
42
43 /* If the server returns one of these flags, then the lock was put on that list.
44  * If the client sends one of these flags (during recovery ONLY!), it wants the
45  * lock added to the specified list, no questions asked. -p */
46 #define LDLM_FL_BLOCK_GRANTED  0x000002
47 #define LDLM_FL_BLOCK_CONV     0x000004
48 #define LDLM_FL_BLOCK_WAIT     0x000008
49
50 #define LDLM_FL_CBPENDING      0x000010 /* this lock is being destroyed */
51 #define LDLM_FL_AST_SENT       0x000020 /* blocking or cancel packet was sent */
52 #define LDLM_FL_WAIT_NOREPROC  0x000040 /* not a real flag, not saved in lock */
53 #define LDLM_FL_CANCEL         0x000080 /* cancellation callback already run */
54
55 /* Lock is being replayed.  This could probably be implied by the fact that one
56  * of BLOCK_{GRANTED,CONV,WAIT} is set, but that is pretty dangerous. */
57 #define LDLM_FL_REPLAY         0x000100
58
59 #define LDLM_FL_INTENT_ONLY    0x000200 /* don't grant lock, just do intent */
60 #define LDLM_FL_LOCAL_ONLY     0x000400 /* see ldlm_cli_cancel_unused */
61
62 /* don't run the cancel callback under ldlm_cli_cancel_unused */
63 #define LDLM_FL_FAILED         0x000800
64
65 #define LDLM_FL_HAS_INTENT     0x001000 /* lock request has intent */
66 #define LDLM_FL_CANCELING      0x002000 /* lock cancel has already been sent */
67 #define LDLM_FL_LOCAL          0x004000 /* local lock (ie, no srv/cli split) */
68 #define LDLM_FL_WARN           0x008000 /* see ldlm_cli_cancel_unused */
69 #define LDLM_FL_DISCARD_DATA   0x010000 /* discard (no writeback) on cancel */
70
71 #define LDLM_FL_NO_TIMEOUT     0x020000 /* Blocked by group lock - wait
72                                          * indefinitely */
73
74 /* file & record locking */
75 #define LDLM_FL_BLOCK_NOWAIT   0x040000 // server told not to wait if blocked
76 #define LDLM_FL_TEST_LOCK      0x080000 // return blocking lock
77
78 /* These are flags that are mapped into the flags and ASTs of blocking locks */
79 #define LDLM_AST_DISCARD_DATA  0x80000000 /* Add FL_DISCARD to blocking ASTs */
80 /* Flags sent in AST lock_flags to be mapped into the receiving lock. */
81 #define LDLM_AST_FLAGS         (LDLM_FL_DISCARD_DATA)
82
83 /* XXX FIXME: This is being added to b_size as a low-risk fix to the fact that
84  * the LVB filling happens _after_ the lock has been granted, so another thread
85  * can match before the LVB has been updated.  As a dirty hack, we set
86  * LDLM_FL_CAN_MATCH only after we've done the LVB poop.
87  *
88  * The proper fix is to do the granting inside of the completion AST, which can
89  * be replaced with a LVB-aware wrapping function for OSC locks.  That change is
90  * pretty high-risk, though, and would need a lot more testing. */
91 #define LDLM_FL_CAN_MATCH      0x100000
92
93 /* The blocking callback is overloaded to perform two functions.  These flags
94  * indicate which operation should be performed. */
95 #define LDLM_CB_BLOCKING    1
96 #define LDLM_CB_CANCELING   2
97
98 /* compatibility matrix */
99 #define LCK_COMPAT_EX  LCK_NL
100 #define LCK_COMPAT_PW  (LCK_COMPAT_EX | LCK_CR)
101 #define LCK_COMPAT_PR  (LCK_COMPAT_PW | LCK_PR)
102 #define LCK_COMPAT_CW  (LCK_COMPAT_PW | LCK_CW)
103 #define LCK_COMPAT_CR  (LCK_COMPAT_CW | LCK_PR | LCK_PW)
104 #define LCK_COMPAT_NL  (LCK_COMPAT_CR | LCK_EX)
105
106 static ldlm_mode_t lck_compat_array[] = {
107         [LCK_EX] LCK_COMPAT_EX,
108         [LCK_PW] LCK_COMPAT_PW,
109         [LCK_PR] LCK_COMPAT_PR,
110         [LCK_CW] LCK_COMPAT_CW,
111         [LCK_CR] LCK_COMPAT_CR,
112         [LCK_NL] LCK_COMPAT_NL
113 };
114
115 static inline void lockmode_verify(ldlm_mode_t mode)
116 {
117        LASSERT(mode >= LCK_EX && mode <= LCK_NL);
118 }
119
120 static inline int lockmode_compat(ldlm_mode_t exist, ldlm_mode_t new)
121 {
122        return (lck_compat_array[exist] & new);
123 }
124
125 /*
126  *
127  * cluster name spaces
128  *
129  */
130
131 #define DLM_OST_NAMESPACE 1
132 #define DLM_MDS_NAMESPACE 2
133
134 /* XXX
135    - do we just separate this by security domains and use a prefix for
136      multiple namespaces in the same domain?
137    -
138 */
139
140 struct ldlm_lock;
141 struct ldlm_resource;
142 struct ldlm_namespace;
143
144 typedef int (*ldlm_res_policy)(struct ldlm_namespace *, struct ldlm_lock **,
145                                void *req_cookie, ldlm_mode_t mode, int flags,
146                                void *data);
147
148 struct ldlm_valblock_ops {
149         int (*lvbo_init)(struct ldlm_resource *res);
150         int (*lvbo_update)(struct ldlm_resource *res, struct lustre_msg *m,
151                            int buf_idx, int increase);
152 };
153
154 struct ldlm_namespace {
155         char                  *ns_name;
156         __u32                  ns_client; /* is this a client-side lock tree? */
157         struct list_head      *ns_hash; /* hash table for ns */
158         __u32                  ns_refcount; /* count of resources in the hash */
159         struct list_head       ns_root_list; /* all root resources in ns */
160         struct lustre_lock     ns_lock; /* protects hash, refcount, list */
161         struct list_head       ns_list_chain; /* position in global NS list */
162         /*
163         struct proc_dir_entry *ns_proc_dir;
164         */
165
166         struct list_head       ns_unused_list; /* all root resources in ns */
167         int                    ns_nr_unused;
168         unsigned int           ns_max_unused;
169
170         spinlock_t             ns_counter_lock;
171         __u64                  ns_locks;
172         __u64                  ns_resources;
173         ldlm_res_policy        ns_policy;
174         struct ldlm_valblock_ops *ns_lvbo;
175         void                    *ns_lvbp;
176 };
177
178 /*
179  *
180  * Resource hash table
181  *
182  */
183
184 #define RES_HASH_BITS 10
185 #define RES_HASH_SIZE (1UL << RES_HASH_BITS)
186 #define RES_HASH_MASK (RES_HASH_SIZE - 1)
187
188 struct ldlm_lock;
189
190 typedef int (*ldlm_blocking_callback)(struct ldlm_lock *lock,
191                                       struct ldlm_lock_desc *new, void *data,
192                                       int flag);
193 typedef int (*ldlm_completion_callback)(struct ldlm_lock *lock, int flags,
194                                         void *data);
195 typedef int (*ldlm_glimpse_callback)(struct ldlm_lock *lock, void *data);
196
197 struct ldlm_lock {
198         struct portals_handle l_handle; // must be first in the structure
199         atomic_t              l_refc;
200         struct ldlm_resource *l_resource;
201         struct ldlm_lock     *l_parent;
202         struct list_head      l_children;
203         struct list_head      l_childof;
204         struct list_head      l_lru;
205         struct list_head      l_res_link; // position in one of three res lists
206         struct list_head      l_export_chain; // per-export chain of locks
207
208         ldlm_mode_t           l_req_mode;
209         ldlm_mode_t           l_granted_mode;
210
211         ldlm_completion_callback l_completion_ast;
212         ldlm_blocking_callback   l_blocking_ast;
213         ldlm_glimpse_callback    l_glimpse_ast;
214
215         struct obd_export    *l_export;
216         struct obd_export    *l_conn_export;
217         __u32                 l_flags;
218         struct lustre_handle  l_remote_handle;
219         ldlm_policy_data_t    l_policy_data;
220
221         __u32                 l_readers;
222         __u32                 l_writers;
223         __u8                  l_destroyed;
224
225         /* If the lock is granted, a process sleeps on this waitq to learn when
226          * it's no longer in use.  If the lock is not granted, a process sleeps
227          * on this waitq to learn when it becomes granted. */
228         wait_queue_head_t     l_waitq;
229         struct timeval        l_enqueued_time;
230
231         unsigned long         l_last_used;      /* jiffies */
232         struct ldlm_extent    l_req_extent;
233
234         /* Client-side-only members */
235         __u32                 l_lvb_len;        /* temporary storage for */
236         void                 *l_lvb_data;       /* an LVB received during */
237         void                 *l_lvb_swabber;    /* an enqueue */
238         void                 *l_ast_data;
239
240         /* Server-side-only members */
241         struct list_head      l_pending_chain;  /* callbacks pending */
242         unsigned long         l_callback_timeout;
243 };
244
245 #define LDLM_PLAIN       10
246 #define LDLM_EXTENT      11
247 #define LDLM_FLOCK       12
248 #define LDLM_IBITS       13
249
250 #define LDLM_MIN_TYPE 10
251 #define LDLM_MAX_TYPE 13
252
253 struct ldlm_resource {
254         struct ldlm_namespace *lr_namespace;
255         struct list_head       lr_hash;
256         struct ldlm_resource  *lr_parent;   /* 0 for a root resource */
257         struct list_head       lr_children; /* list head for child resources */
258         struct list_head       lr_childof;  /* part of ns_root_list if root res,
259                                              * part of lr_children if child */
260
261         struct list_head       lr_granted;
262         struct list_head       lr_converting;
263         struct list_head       lr_waiting;
264         ldlm_mode_t            lr_most_restr;
265         __u32                  lr_type; /* LDLM_PLAIN or LDLM_EXTENT */
266         struct ldlm_resource  *lr_root;
267         struct ldlm_res_id     lr_name;
268         atomic_t               lr_refcount;
269
270         /* Server-side-only lock value block elements */
271         struct semaphore       lr_lvb_sem;
272         __u32                  lr_lvb_len;
273         void                  *lr_lvb_data;
274
275         /* lr_tmp holds a list head temporarily, during the building of a work
276          * queue.  see ldlm_add_ast_work_item and ldlm_run_ast_work */
277         void                  *lr_tmp;
278 };
279
280 struct ldlm_ast_work {
281         struct ldlm_lock *w_lock;
282         int               w_blocking;
283         struct ldlm_lock_desc w_desc;
284         struct list_head   w_list;
285         int w_flags;
286         void *w_data;
287         int w_datalen;
288 };
289
290 extern struct obd_ops ldlm_obd_ops;
291
292 extern char *ldlm_lockname[];
293 extern char *ldlm_typename[];
294 extern char *ldlm_it2str(int it);
295
296 #define __LDLM_DEBUG(level, lock, format, a...)                               \
297 do {                                                                          \
298         if (lock->l_resource == NULL) {                                       \
299                 CDEBUG(level, "### " format                                   \
300                        " ns: \?\? lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "\
301                        "res: \?\? rrc=\?\? type: \?\?\? flags: %x remote: "   \
302                        LPX64" expref: %d\n" , ## a, lock,                     \
303                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),   \
304                        lock->l_readers, lock->l_writers,                      \
305                        ldlm_lockname[lock->l_granted_mode],                   \
306                        ldlm_lockname[lock->l_req_mode],                       \
307                        lock->l_flags, lock->l_remote_handle.cookie,           \
308                        lock->l_export ?                                       \
309                        atomic_read(&lock->l_export->exp_refcount) : -99);     \
310                 break;                                                        \
311         }                                                                     \
312         if (lock->l_resource->lr_type == LDLM_EXTENT) {                       \
313                 CDEBUG(level, "### " format                                   \
314                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "  \
315                        "res: "LPU64"/"LPU64" rrc: %d type: %s ["LPU64"->"LPU64\
316                        "] (req "LPU64"->"LPU64") flags: %x remote: "LPX64     \
317                        " expref: %d\n" , ## a,                                \
318                        lock->l_resource->lr_namespace->ns_name, lock,         \
319                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),   \
320                        lock->l_readers, lock->l_writers,                      \
321                        ldlm_lockname[lock->l_granted_mode],                   \
322                        ldlm_lockname[lock->l_req_mode],                       \
323                        lock->l_resource->lr_name.name[0],                     \
324                        lock->l_resource->lr_name.name[1],                     \
325                        atomic_read(&lock->l_resource->lr_refcount),           \
326                        ldlm_typename[lock->l_resource->lr_type],              \
327                        lock->l_policy_data.l_extent.start,                    \
328                        lock->l_policy_data.l_extent.end,                      \
329                        lock->l_req_extent.start, lock->l_req_extent.end,      \
330                        lock->l_flags, lock->l_remote_handle.cookie,           \
331                        lock->l_export ?                                       \
332                        atomic_read(&lock->l_export->exp_refcount) : -99);     \
333                 break;                                                        \
334         }                                                                     \
335         if (lock->l_resource->lr_type == LDLM_FLOCK) {                        \
336                 CDEBUG(level, "### " format                                   \
337                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "  \
338                        "res: "LPU64"/"LPU64" rrc: %d type: %s pid: "LPU64" "  \
339                        "["LPU64"->"LPU64"] flags: %x remote: "LPX64           \
340                        " expref: %d\n" , ## a,                                \
341                        lock->l_resource->lr_namespace->ns_name, lock,         \
342                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),   \
343                        lock->l_readers, lock->l_writers,                      \
344                        ldlm_lockname[lock->l_granted_mode],                   \
345                        ldlm_lockname[lock->l_req_mode],                       \
346                        lock->l_resource->lr_name.name[0],                     \
347                        lock->l_resource->lr_name.name[1],                     \
348                        atomic_read(&lock->l_resource->lr_refcount),           \
349                        ldlm_typename[lock->l_resource->lr_type],              \
350                        lock->l_policy_data.l_flock.pid,                       \
351                        lock->l_policy_data.l_flock.start,                     \
352                        lock->l_policy_data.l_flock.end,                       \
353                        lock->l_flags, lock->l_remote_handle.cookie,           \
354                        lock->l_export ?                                       \
355                        atomic_read(&lock->l_export->exp_refcount) : -99);     \
356                 break;                                                        \
357         }                                                                     \
358         if (lock->l_resource->lr_type == LDLM_IBITS) {                        \
359                 CDEBUG(level, "### " format                                   \
360                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "  \
361                        "res: "LPU64"/"LPU64" bits "LPX64" rrc: %d type: %s "   \
362                        "flags: %x remote: "LPX64" expref: %d\n" , ## a,       \
363                        lock->l_resource->lr_namespace->ns_name,               \
364                        lock, lock->l_handle.h_cookie,                         \
365                        atomic_read (&lock->l_refc),                           \
366                        lock->l_readers, lock->l_writers,                      \
367                        ldlm_lockname[lock->l_granted_mode],                   \
368                        ldlm_lockname[lock->l_req_mode],                       \
369                        lock->l_resource->lr_name.name[0],                     \
370                        lock->l_resource->lr_name.name[1],                     \
371                        lock->l_policy_data.l_inodebits.bits,                  \
372                        atomic_read(&lock->l_resource->lr_refcount),           \
373                        ldlm_typename[lock->l_resource->lr_type],              \
374                        lock->l_flags, lock->l_remote_handle.cookie,           \
375                        lock->l_export ?                                       \
376                        atomic_read(&lock->l_export->exp_refcount) : -99);     \
377                 break;                                                        \
378         }                                                                     \
379         {                                                                     \
380                 CDEBUG(level, "### " format                                   \
381                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "  \
382                        "res: "LPU64"/"LPU64"/"LPU64"/"LPU64" rrc: %d type: %s "\
383                        "flags: %x remote: "LPX64" expref: %d\n" , ## a,       \
384                        lock->l_resource->lr_namespace->ns_name,               \
385                        lock, lock->l_handle.h_cookie,                         \
386                        atomic_read (&lock->l_refc),                           \
387                        lock->l_readers, lock->l_writers,                      \
388                        ldlm_lockname[lock->l_granted_mode],                   \
389                        ldlm_lockname[lock->l_req_mode],                       \
390                        lock->l_resource->lr_name.name[0],                     \
391                        lock->l_resource->lr_name.name[1],                     \
392                        lock->l_resource->lr_name.name[2],                     \
393                        lock->l_resource->lr_name.name[3],                     \
394                        atomic_read(&lock->l_resource->lr_refcount),           \
395                        ldlm_typename[lock->l_resource->lr_type],              \
396                        lock->l_flags, lock->l_remote_handle.cookie,           \
397                        lock->l_export ?                                       \
398                        atomic_read(&lock->l_export->exp_refcount) : -99);     \
399         }                                                                     \
400 } while (0)
401
402 #define LDLM_DEBUG(lock, format, a...) __LDLM_DEBUG(D_DLMTRACE, lock, \
403                                                     format, ## a)
404 #define LDLM_ERROR(lock, format, a...) __LDLM_DEBUG(D_ERROR, lock, format, ## a)
405
406 #define LDLM_DEBUG_NOLOCK(format, a...)                 \
407         CDEBUG(D_DLMTRACE, "### " format "\n" , ## a)
408
409 typedef int (*ldlm_processing_policy)(struct ldlm_lock *lock, int *flags,
410                                       int first_enq, ldlm_error_t *err);
411
412 /*
413  * Iterators.
414  */
415
416 #define LDLM_ITER_CONTINUE 1 /* keep iterating */
417 #define LDLM_ITER_STOP     2 /* stop iterating */
418
419 typedef int (*ldlm_iterator_t)(struct ldlm_lock *, void *);
420 typedef int (*ldlm_res_iterator_t)(struct ldlm_resource *, void *);
421
422 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
423                           void *closure);
424 int ldlm_namespace_foreach(struct ldlm_namespace *ns, ldlm_iterator_t iter,
425                            void *closure);
426 int ldlm_namespace_foreach_res(struct ldlm_namespace *ns,
427                                ldlm_res_iterator_t iter, void *closure);
428
429 int ldlm_replay_locks(struct obd_import *imp);
430 void ldlm_change_cbdata(struct ldlm_namespace *, struct ldlm_res_id *,
431                         ldlm_iterator_t iter, void *data);
432
433 /* ldlm_flock.c */
434 int ldlm_flock_completion_ast(struct ldlm_lock *lock, int flags, void *data);
435
436 /* ldlm_extent.c */
437 __u64 ldlm_extent_shift_kms(struct ldlm_lock *lock, __u64 old_kms);
438
439
440 /* ldlm_lockd.c */
441 int ldlm_server_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
442                              void *data, int flag);
443 int ldlm_server_completion_ast(struct ldlm_lock *lock, int flags, void *data);
444 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data);
445 int ldlm_handle_enqueue(struct ptlrpc_request *req, ldlm_completion_callback,
446                         ldlm_blocking_callback, ldlm_glimpse_callback);
447 int ldlm_handle_convert(struct ptlrpc_request *req);
448 int ldlm_handle_cancel(struct ptlrpc_request *req);
449 int ldlm_del_waiting_lock(struct ldlm_lock *lock);
450 int ldlm_get_ref(void);
451 void ldlm_put_ref(int force);
452 #ifndef __KERNEL__
453 void liblustre_ldlm_handle_bl_callback(struct ldlm_namespace *ns,
454                                        struct ldlm_lock_desc *ld,
455                                        struct ldlm_lock *lock);
456 #endif
457
458 /* ldlm_lock.c */
459 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res);
460 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg);
461 void ldlm_lock2handle(struct ldlm_lock *lock, struct lustre_handle *lockh);
462 struct ldlm_lock *__ldlm_handle2lock(struct lustre_handle *, int flags);
463 void ldlm_cancel_callback(struct ldlm_lock *);
464 int ldlm_lock_set_data(struct lustre_handle *, void *data);
465 void ldlm_lock_remove_from_lru(struct ldlm_lock *);
466 struct ldlm_lock *ldlm_handle2lock_ns(struct ldlm_namespace *,
467                                       struct lustre_handle *);
468
469 static inline struct ldlm_lock *ldlm_handle2lock(struct lustre_handle *h)
470 {
471         return __ldlm_handle2lock(h, 0);
472 }
473
474 #define LDLM_LOCK_PUT(lock)                     \
475 do {                                            \
476         /*LDLM_DEBUG((lock), "put");*/          \
477         ldlm_lock_put(lock);                    \
478 } while (0)
479
480 #define LDLM_LOCK_GET(lock)                     \
481 ({                                              \
482         ldlm_lock_get(lock);                    \
483         /*LDLM_DEBUG((lock), "get");*/          \
484         lock;                                   \
485 })
486
487 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock);
488 void ldlm_lock_put(struct ldlm_lock *lock);
489 void ldlm_lock_destroy(struct ldlm_lock *lock);
490 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc);
491 void ldlm_lock_addref(struct lustre_handle *lockh, __u32 mode);
492 void ldlm_lock_decref(struct lustre_handle *lockh, __u32 mode);
493 void ldlm_lock_decref_and_cancel(struct lustre_handle *lockh, __u32 mode);
494 void ldlm_lock_allow_match(struct ldlm_lock *lock);
495 int ldlm_lock_match(struct ldlm_namespace *ns, int flags, struct ldlm_res_id *,
496                     __u32 type, ldlm_policy_data_t *, ldlm_mode_t mode,
497                     struct lustre_handle *);
498 struct ldlm_resource *ldlm_lock_convert(struct ldlm_lock *lock, int new_mode,
499                                         int *flags);
500 void ldlm_lock_cancel(struct ldlm_lock *lock);
501 void ldlm_cancel_locks_for_export(struct obd_export *export);
502 void ldlm_reprocess_all(struct ldlm_resource *res);
503 void ldlm_reprocess_all_ns(struct ldlm_namespace *ns);
504 void ldlm_lock_dump(int level, struct ldlm_lock *lock, int pos);
505 void ldlm_lock_dump_handle(int level, struct lustre_handle *);
506
507 /* ldlm_test.c */
508 int ldlm_test(struct obd_device *device, struct lustre_handle *connh);
509 int ldlm_regression_start(struct obd_device *obddev,
510                           struct lustre_handle *connh,
511                           unsigned int threads, unsigned int max_locks_in,
512                           unsigned int num_resources_in,
513                           unsigned int num_extents_in);
514 int ldlm_regression_stop(void);
515
516
517 /* resource.c */
518 struct ldlm_namespace *ldlm_namespace_new(char *name, __u32 local);
519 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, int flags);
520 int ldlm_namespace_free(struct ldlm_namespace *ns, int force);
521 int ldlm_proc_setup(void);
522 void ldlm_proc_cleanup(void);
523
524 /* resource.c - internal */
525 struct ldlm_resource *ldlm_resource_get(struct ldlm_namespace *ns,
526                                         struct ldlm_resource *parent,
527                                         struct ldlm_res_id, __u32 type,
528                                         int create);
529 struct ldlm_resource *ldlm_resource_getref(struct ldlm_resource *res);
530 int ldlm_resource_putref(struct ldlm_resource *res);
531 void ldlm_resource_add_lock(struct ldlm_resource *res, struct list_head *head,
532                             struct ldlm_lock *lock);
533 void ldlm_resource_unlink_lock(struct ldlm_lock *lock);
534 void ldlm_res2desc(struct ldlm_resource *res, struct ldlm_resource_desc *desc);
535 void ldlm_dump_all_namespaces(void);
536 void ldlm_namespace_dump(struct ldlm_namespace *);
537 void ldlm_resource_dump(struct ldlm_resource *);
538 int ldlm_lock_change_resource(struct ldlm_namespace *, struct ldlm_lock *,
539                               struct ldlm_res_id);
540
541 /* ldlm_request.c */
542 int ldlm_expired_completion_wait(void *data);
543 int ldlm_completion_ast(struct ldlm_lock *lock, int flags, void *data);
544 int ldlm_cli_enqueue(struct obd_export *exp,
545                      struct ptlrpc_request *req,
546                      struct ldlm_namespace *ns,
547                      struct ldlm_res_id,
548                      __u32 type,
549                      ldlm_policy_data_t *,
550                      ldlm_mode_t mode,
551                      int *flags,
552                      ldlm_blocking_callback blocking,
553                      ldlm_completion_callback completion,
554                      ldlm_glimpse_callback glimpse,
555                      void *data,
556                      void *lvb,
557                      __u32 lvb_len,
558                      void *lvb_swabber,
559                      struct lustre_handle *lockh);
560 int ldlm_server_ast(struct lustre_handle *lockh, struct ldlm_lock_desc *new,
561                     void *data, __u32 data_len);
562 int ldlm_cli_convert(struct lustre_handle *, int new_mode, int *flags);
563 int ldlm_cli_cancel(struct lustre_handle *lockh);
564 int ldlm_cli_cancel_unused(struct ldlm_namespace *, struct ldlm_res_id *,
565                            int flags, void *opaque);
566
567 /* mds/handler.c */
568 /* This has to be here because recursive inclusion sucks. */
569 int intent_disposition(struct ldlm_reply *rep, int flag);
570 void intent_set_disposition(struct ldlm_reply *rep, int flag);
571 int mds_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
572                      void *data, int flag);
573
574
575 /* ioctls for trying requests */
576 #define IOC_LDLM_TYPE                   'f'
577 #define IOC_LDLM_MIN_NR                 40
578
579 #define IOC_LDLM_TEST                   _IOWR('f', 40, long)
580 #define IOC_LDLM_DUMP                   _IOWR('f', 41, long)
581 #define IOC_LDLM_REGRESS_START          _IOWR('f', 42, long)
582 #define IOC_LDLM_REGRESS_STOP           _IOWR('f', 43, long)
583 #define IOC_LDLM_MAX_NR                 43
584
585 #endif