Whamcloud - gitweb
LU-1137 ldlm: fix for the flock handling for 1.8 clients
[fs/lustre-release.git] / lustre / include / lustre_dlm.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2010, 2012, Whamcloud, Inc.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  */
38
39 #ifndef _LUSTRE_DLM_H__
40 #define _LUSTRE_DLM_H__
41
42 /** \defgroup ldlm ldlm
43  *
44  * @{
45  */
46
47 #if defined(__linux__)
48 #include <linux/lustre_dlm.h>
49 #elif defined(__APPLE__)
50 #include <darwin/lustre_dlm.h>
51 #elif defined(__WINNT__)
52 #include <winnt/lustre_dlm.h>
53 #else
54 #error Unsupported operating system.
55 #endif
56
57 #include <lustre_lib.h>
58 #include <lustre_net.h>
59 #include <lustre_import.h>
60 #include <lustre_handles.h>
61 #include <interval_tree.h> /* for interval_node{}, ldlm_extent */
62 #include <lu_ref.h>
63
64 struct obd_ops;
65 struct obd_device;
66
67 #define OBD_LDLM_DEVICENAME  "ldlm"
68
69 #ifdef HAVE_BGL_SUPPORT
70 /* 1.5 times the maximum 128 tasks available in VN mode */
71 #define LDLM_DEFAULT_LRU_SIZE 196
72 #else
73 #define LDLM_DEFAULT_LRU_SIZE (100 * cfs_num_online_cpus())
74 #endif
75 #define LDLM_DEFAULT_MAX_ALIVE (cfs_time_seconds(36000))
76 #define LDLM_CTIME_AGE_LIMIT (10)
77 #define LDLM_DEFAULT_PARALLEL_AST_LIMIT 1024
78
79 typedef enum {
80         ELDLM_OK = 0,
81
82         ELDLM_LOCK_CHANGED = 300,
83         ELDLM_LOCK_ABORTED = 301,
84         ELDLM_LOCK_REPLACED = 302,
85         ELDLM_NO_LOCK_DATA = 303,
86
87         ELDLM_NAMESPACE_EXISTS = 400,
88         ELDLM_BAD_NAMESPACE    = 401
89 } ldlm_error_t;
90
91 typedef enum {
92         LDLM_NAMESPACE_SERVER = 1 << 0,
93         LDLM_NAMESPACE_CLIENT = 1 << 1
94 } ldlm_side_t;
95
96 #define LDLM_FL_LOCK_CHANGED   0x000001 /* extent, mode, or resource changed */
97
98 /* If the server returns one of these flags, then the lock was put on that list.
99  * If the client sends one of these flags (during recovery ONLY!), it wants the
100  * lock added to the specified list, no questions asked. -p */
101 #define LDLM_FL_BLOCK_GRANTED  0x000002
102 #define LDLM_FL_BLOCK_CONV     0x000004
103 #define LDLM_FL_BLOCK_WAIT     0x000008
104
105 #define LDLM_FL_CBPENDING      0x000010 /* this lock is being destroyed */
106 #define LDLM_FL_AST_SENT       0x000020 /* blocking or cancel packet was
107                                          * queued for sending. */
108 #define LDLM_FL_WAIT_NOREPROC  0x000040 /* not a real flag, not saved in lock */
109 #define LDLM_FL_CANCEL         0x000080 /* cancellation callback already run */
110
111 /* Lock is being replayed.  This could probably be implied by the fact that one
112  * of BLOCK_{GRANTED,CONV,WAIT} is set, but that is pretty dangerous. */
113 #define LDLM_FL_REPLAY         0x000100
114
115 #define LDLM_FL_INTENT_ONLY    0x000200 /* don't grant lock, just do intent */
116 #define LDLM_FL_LOCAL_ONLY     0x000400
117
118 /* don't run the cancel callback under ldlm_cli_cancel_unused */
119 #define LDLM_FL_FAILED         0x000800
120
121 #define LDLM_FL_HAS_INTENT     0x001000 /* lock request has intent */
122 #define LDLM_FL_CANCELING      0x002000 /* lock cancel has already been sent */
123 #define LDLM_FL_LOCAL          0x004000 /* local lock (ie, no srv/cli split) */
124 #define LDLM_FL_DISCARD_DATA   0x010000 /* discard (no writeback) on cancel */
125
126 #define LDLM_FL_NO_TIMEOUT     0x020000 /* Blocked by group lock - wait
127                                          * indefinitely */
128
129 /* file & record locking */
130 #define LDLM_FL_BLOCK_NOWAIT   0x040000 /* server told not to wait if blocked.
131                                          * For AGL, OST will not send glimpse
132                                          * callback. */
133 #define LDLM_FL_TEST_LOCK      0x080000 // return blocking lock
134
135 /* XXX FIXME: This is being added to b_size as a low-risk fix to the fact that
136  * the LVB filling happens _after_ the lock has been granted, so another thread
137  * can match`t before the LVB has been updated.  As a dirty hack, we set
138  * LDLM_FL_LVB_READY only after we've done the LVB poop.
139  * this is only needed on lov/osc now, where lvb is actually used and callers
140  * must set it in input flags.
141  *
142  * The proper fix is to do the granting inside of the completion AST, which can
143  * be replaced with a LVB-aware wrapping function for OSC locks.  That change is
144  * pretty high-risk, though, and would need a lot more testing. */
145
146 #define LDLM_FL_LVB_READY      0x100000
147
148 /* A lock contributes to the kms calculation until it has finished the part
149  * of it's cancelation that performs write back on its dirty pages.  It
150  * can remain on the granted list during this whole time.  Threads racing
151  * to update the kms after performing their writeback need to know to
152  * exclude each others locks from the calculation as they walk the granted
153  * list. */
154 #define LDLM_FL_KMS_IGNORE     0x200000
155
156 /* Don't put lock into the LRU list, so that it is not canceled due to aging.
157  * Used by MGC locks, they are cancelled only at unmount or by callback. */
158 #define LDLM_FL_NO_LRU         0x400000
159
160 /* Immediatelly cancel such locks when they block some other locks. Send
161  * cancel notification to original lock holder, but expect no reply. This is
162  * for clients (like liblustre) that cannot be expected to reliably response
163  * to blocking ast. */
164 #define LDLM_FL_CANCEL_ON_BLOCK 0x800000
165
166 /* Flags flags inherited from parent lock when doing intents. */
167 #define LDLM_INHERIT_FLAGS     (LDLM_FL_CANCEL_ON_BLOCK)
168
169 /* completion ast to be executed */
170 #define LDLM_FL_CP_REQD        0x1000000
171
172 /* cleanup_resource has already handled the lock */
173 #define LDLM_FL_CLEANED        0x2000000
174
175 /* optimization hint: LDLM can run blocking callback from current context
176  * w/o involving separate thread. in order to decrease cs rate */
177 #define LDLM_FL_ATOMIC_CB      0x4000000
178
179 /* It may happen that a client initiate 2 operations, e.g. unlink and mkdir,
180  * such that server send blocking ast for conflict locks to this client for
181  * the 1st operation, whereas the 2nd operation has canceled this lock and
182  * is waiting for rpc_lock which is taken by the 1st operation.
183  * LDLM_FL_BL_AST is to be set by ldlm_callback_handler() to the lock not allow
184  * ELC code to cancel it.
185  * LDLM_FL_BL_DONE is to be set by ldlm_cancel_callback() when lock cache is
186  * droped to let ldlm_callback_handler() return EINVAL to the server. It is
187  * used when ELC rpc is already prepared and is waiting for rpc_lock, too late
188  * to send a separate CANCEL rpc. */
189 #define LDLM_FL_BL_AST          0x10000000
190 #define LDLM_FL_BL_DONE         0x20000000
191
192 /* measure lock contention and return -EUSERS if locking contention is high */
193 #define LDLM_FL_DENY_ON_CONTENTION 0x40000000
194
195 /* These are flags that are mapped into the flags and ASTs of blocking locks */
196 #define LDLM_AST_DISCARD_DATA  0x80000000 /* Add FL_DISCARD to blocking ASTs */
197
198 /* Flags sent in AST lock_flags to be mapped into the receiving lock. */
199 #define LDLM_AST_FLAGS         (LDLM_FL_DISCARD_DATA)
200
201 /* 
202  * --------------------------------------------------------------------------
203  * NOTE! Starting from this point, that is, LDLM_FL_* flags with values above
204  * 0x80000000 will not be sent over the wire.
205  * --------------------------------------------------------------------------
206  */
207
208 /* Used for marking lock as an target for -EINTR while cp_ast sleep
209  * emulation + race with upcoming bl_ast.  */
210 #define LDLM_FL_FAIL_LOC       0x100000000ULL
211
212 /* Used while processing the unused list to know that we have already
213  * handled this lock and decided to skip it */
214 #define LDLM_FL_SKIPPED        0x200000000ULL
215
216 /* The blocking callback is overloaded to perform two functions.  These flags
217  * indicate which operation should be performed. */
218 #define LDLM_CB_BLOCKING    1
219 #define LDLM_CB_CANCELING   2
220
221 /* compatibility matrix */
222 #define LCK_COMPAT_EX  LCK_NL
223 #define LCK_COMPAT_PW  (LCK_COMPAT_EX | LCK_CR)
224 #define LCK_COMPAT_PR  (LCK_COMPAT_PW | LCK_PR)
225 #define LCK_COMPAT_CW  (LCK_COMPAT_PW | LCK_CW)
226 #define LCK_COMPAT_CR  (LCK_COMPAT_CW | LCK_PR | LCK_PW)
227 #define LCK_COMPAT_NL  (LCK_COMPAT_CR | LCK_EX | LCK_GROUP)
228 #define LCK_COMPAT_GROUP  (LCK_GROUP | LCK_NL)
229 #define LCK_COMPAT_COS (LCK_COS)
230
231 extern ldlm_mode_t lck_compat_array[];
232
233 static inline void lockmode_verify(ldlm_mode_t mode)
234 {
235        LASSERT(mode > LCK_MINMODE && mode < LCK_MAXMODE);
236 }
237
238 static inline int lockmode_compat(ldlm_mode_t exist_mode, ldlm_mode_t new_mode)
239 {
240        return (lck_compat_array[exist_mode] & new_mode);
241 }
242
243 /*
244  *
245  * cluster name spaces
246  *
247  */
248
249 #define DLM_OST_NAMESPACE 1
250 #define DLM_MDS_NAMESPACE 2
251
252 /* XXX
253    - do we just separate this by security domains and use a prefix for
254      multiple namespaces in the same domain?
255    -
256 */
257
258 /*
259  * Locking rules:
260  *
261  * lr_lock
262  *
263  * lr_lock
264  *     waiting_locks_spinlock
265  *
266  * lr_lock
267  *     led_lock
268  *
269  * lr_lock
270  *     ns_lock
271  *
272  * lr_lvb_mutex
273  *     lr_lock
274  *
275  */
276
277 struct ldlm_pool;
278 struct ldlm_lock;
279 struct ldlm_resource;
280 struct ldlm_namespace;
281
282 struct ldlm_pool_ops {
283         int (*po_recalc)(struct ldlm_pool *pl);
284         int (*po_shrink)(struct ldlm_pool *pl, int nr,
285                          unsigned int gfp_mask);
286         int (*po_setup)(struct ldlm_pool *pl, int limit);
287 };
288
289 /**
290  * One second for pools thread check interval. Each pool has own period.
291  */
292 #define LDLM_POOLS_THREAD_PERIOD (1)
293
294 /**
295  * ~6% margin for modest pools. See ldlm_pool.c for details.
296  */
297 #define LDLM_POOLS_MODEST_MARGIN_SHIFT (4)
298
299 /**
300  * Default recalc period for server side pools in sec.
301  */
302 #define LDLM_POOL_SRV_DEF_RECALC_PERIOD (1)
303
304 /**
305  * Default recalc period for client side pools in sec.
306  */
307 #define LDLM_POOL_CLI_DEF_RECALC_PERIOD (10)
308
309 struct ldlm_pool {
310         /**
311          * Pool proc directory.
312          */
313         cfs_proc_dir_entry_t  *pl_proc_dir;
314         /**
315          * Pool name, should be long enough to contain compound proc entry name.
316          */
317         char                   pl_name[100];
318         /**
319          * Lock for protecting slv/clv updates.
320          */
321         cfs_spinlock_t         pl_lock;
322         /**
323          * Number of allowed locks in in pool, both, client and server side.
324          */
325         cfs_atomic_t           pl_limit;
326         /**
327          * Number of granted locks in
328          */
329         cfs_atomic_t           pl_granted;
330         /**
331          * Grant rate per T.
332          */
333         cfs_atomic_t           pl_grant_rate;
334         /**
335          * Cancel rate per T.
336          */
337         cfs_atomic_t           pl_cancel_rate;
338         /**
339          * Server lock volume. Protected by pl_lock.
340          */
341         __u64                  pl_server_lock_volume;
342         /**
343          * Current biggest client lock volume. Protected by pl_lock.
344          */
345         __u64                  pl_client_lock_volume;
346         /**
347          * Lock volume factor. SLV on client is calculated as following:
348          * server_slv * lock_volume_factor.
349          */
350         cfs_atomic_t           pl_lock_volume_factor;
351         /**
352          * Time when last slv from server was obtained.
353          */
354         time_t                 pl_recalc_time;
355         /**
356           * Recalc period for pool.
357           */
358         time_t                 pl_recalc_period;
359         /**
360          * Recalc and shrink ops.
361          */
362         struct ldlm_pool_ops  *pl_ops;
363         /**
364          * Number of planned locks for next period.
365          */
366         int                    pl_grant_plan;
367         /**
368          * Pool statistics.
369          */
370         struct lprocfs_stats  *pl_stats;
371 };
372
373 typedef int (*ldlm_res_policy)(struct ldlm_namespace *, struct ldlm_lock **,
374                                void *req_cookie, ldlm_mode_t mode, int flags,
375                                void *data);
376
377 typedef int (*ldlm_cancel_for_recovery)(struct ldlm_lock *lock);
378
379 struct ldlm_valblock_ops {
380         int (*lvbo_init)(struct ldlm_resource *res);
381         int (*lvbo_update)(struct ldlm_resource *res,
382                            struct ptlrpc_request *r,
383                            int increase);
384         int (*lvbo_free)(struct ldlm_resource *res);
385 };
386
387 typedef enum {
388         LDLM_NAMESPACE_GREEDY = 1 << 0,
389         LDLM_NAMESPACE_MODEST = 1 << 1
390 } ldlm_appetite_t;
391
392 /*
393  * Default values for the "max_nolock_size", "contention_time" and
394  * "contended_locks" namespace tunables.
395  */
396 #define NS_DEFAULT_MAX_NOLOCK_BYTES 0
397 #define NS_DEFAULT_CONTENTION_SECONDS 2
398 #define NS_DEFAULT_CONTENDED_LOCKS 32
399
400 struct ldlm_ns_bucket {
401         /** refer back */
402         struct ldlm_namespace      *nsb_namespace;
403         /** estimated lock callback time */
404         struct adaptive_timeout     nsb_at_estimate;
405 };
406
407 enum {
408         /** ldlm namespace lock stats */
409         LDLM_NSS_LOCKS          = 0,
410         LDLM_NSS_LAST
411 };
412
413 typedef enum {
414         /** invalide type */
415         LDLM_NS_TYPE_UNKNOWN    = 0,
416         /** mdc namespace */
417         LDLM_NS_TYPE_MDC,
418         /** mds namespace */
419         LDLM_NS_TYPE_MDT,
420         /** osc namespace */
421         LDLM_NS_TYPE_OSC,
422         /** ost namespace */
423         LDLM_NS_TYPE_OST,
424         /** mgc namespace */
425         LDLM_NS_TYPE_MGC,
426         /** mgs namespace */
427         LDLM_NS_TYPE_MGT,
428 } ldlm_ns_type_t;
429
430 struct ldlm_namespace {
431         /**
432          * Backward link to obd, required for ldlm pool to store new SLV.
433          */
434         struct obd_device     *ns_obd;
435
436         /**
437          * Is this a client-side lock tree?
438          */
439         ldlm_side_t            ns_client;
440
441         /**
442          * resource hash
443          */
444         cfs_hash_t            *ns_rs_hash;
445
446         /**
447          * serialize
448          */
449         cfs_spinlock_t         ns_lock;
450
451         /**
452          * big refcount (by bucket)
453          */
454         cfs_atomic_t           ns_bref;
455
456         /**
457          * Namespce connect flags supported by server (may be changed via proc,
458          * lru resize may be disabled/enabled).
459          */
460         __u64                  ns_connect_flags;
461
462          /**
463           * Client side orig connect flags supported by server.
464           */
465         __u64                  ns_orig_connect_flags;
466
467         /**
468          * Position in global namespace list.
469          */
470         cfs_list_t             ns_list_chain;
471
472         /**
473          * All root resources in namespace.
474          */
475         cfs_list_t             ns_unused_list;
476         int                    ns_nr_unused;
477
478         unsigned int           ns_max_unused;
479         unsigned int           ns_max_age;
480         unsigned int           ns_timeouts;
481          /**
482           * Seconds.
483           */
484         unsigned int           ns_ctime_age_limit;
485
486         /**
487          * Next debug dump, jiffies.
488          */
489         cfs_time_t             ns_next_dump;
490
491         ldlm_res_policy        ns_policy;
492         struct ldlm_valblock_ops *ns_lvbo;
493         void                  *ns_lvbp;
494         cfs_waitq_t            ns_waitq;
495         struct ldlm_pool       ns_pool;
496         ldlm_appetite_t        ns_appetite;
497
498         /**
499          * If more than \a ns_contended_locks found, the resource is considered
500          * to be contended.
501          */
502         unsigned               ns_contended_locks;
503
504         /**
505          * The resource remembers contended state during \a ns_contention_time,
506          * in seconds.
507          */
508         unsigned               ns_contention_time;
509
510         /**
511          * Limit size of nolock requests, in bytes.
512          */
513         unsigned               ns_max_nolock_size;
514
515         /**
516          * Limit of parallel AST RPC count.
517          */
518         unsigned               ns_max_parallel_ast;
519
520         /* callback to cancel locks before replaying it during recovery */
521         ldlm_cancel_for_recovery ns_cancel_for_recovery;
522         /**
523          * ldlm lock stats
524          */
525         struct lprocfs_stats  *ns_stats;
526
527         unsigned               ns_stopping:1;   /* namespace cleanup */
528 };
529
530 static inline int ns_is_client(struct ldlm_namespace *ns)
531 {
532         LASSERT(ns != NULL);
533         LASSERT(!(ns->ns_client & ~(LDLM_NAMESPACE_CLIENT |
534                                     LDLM_NAMESPACE_SERVER)));
535         LASSERT(ns->ns_client == LDLM_NAMESPACE_CLIENT ||
536                 ns->ns_client == LDLM_NAMESPACE_SERVER);
537         return ns->ns_client == LDLM_NAMESPACE_CLIENT;
538 }
539
540 static inline int ns_is_server(struct ldlm_namespace *ns)
541 {
542         LASSERT(ns != NULL);
543         LASSERT(!(ns->ns_client & ~(LDLM_NAMESPACE_CLIENT |
544                                     LDLM_NAMESPACE_SERVER)));
545         LASSERT(ns->ns_client == LDLM_NAMESPACE_CLIENT ||
546                 ns->ns_client == LDLM_NAMESPACE_SERVER);
547         return ns->ns_client == LDLM_NAMESPACE_SERVER;
548 }
549
550 static inline int ns_connect_lru_resize(struct ldlm_namespace *ns)
551 {
552         LASSERT(ns != NULL);
553         return !!(ns->ns_connect_flags & OBD_CONNECT_LRU_RESIZE);
554 }
555
556 static inline void ns_register_cancel(struct ldlm_namespace *ns,
557                                       ldlm_cancel_for_recovery arg)
558 {
559         LASSERT(ns != NULL);
560         ns->ns_cancel_for_recovery = arg;
561 }
562
563 struct ldlm_lock;
564
565 typedef int (*ldlm_blocking_callback)(struct ldlm_lock *lock,
566                                       struct ldlm_lock_desc *new, void *data,
567                                       int flag);
568 typedef int (*ldlm_completion_callback)(struct ldlm_lock *lock, int flags,
569                                         void *data);
570 typedef int (*ldlm_glimpse_callback)(struct ldlm_lock *lock, void *data);
571 typedef unsigned long (*ldlm_weigh_callback)(struct ldlm_lock *lock);
572
573 /* Interval node data for each LDLM_EXTENT lock */
574 struct ldlm_interval {
575         struct interval_node li_node;   /* node for tree mgmt */
576         cfs_list_t           li_group;  /* the locks which have the same
577                                          * policy - group of the policy */
578 };
579 #define to_ldlm_interval(n) container_of(n, struct ldlm_interval, li_node)
580
581 /* the interval tree must be accessed inside the resource lock. */
582 struct ldlm_interval_tree {
583         /* tree size, this variable is used to count
584          * granted PW locks in ldlm_extent_policy()*/
585         int                   lit_size;
586         ldlm_mode_t           lit_mode; /* lock mode */
587         struct interval_node *lit_root; /* actually ldlm_interval */
588 };
589
590 #define LUSTRE_TRACKS_LOCK_EXP_REFS (1)
591
592 /* Cancel flag. */
593 typedef enum {
594         LCF_ASYNC      = 0x1, /* Cancel locks asynchronously. */
595         LCF_LOCAL      = 0x2, /* Cancel locks locally, not notifing server */
596         LCF_BL_AST     = 0x4, /* Cancel locks marked as LDLM_FL_BL_AST
597                                * in the same RPC */
598 } ldlm_cancel_flags_t;
599
600 struct ldlm_flock {
601         __u64 start;
602         __u64 end;
603         __u64 owner;
604         __u64 blocking_owner;
605         struct obd_export *blocking_export;
606         __u32 pid;
607 };
608
609 typedef union {
610         struct ldlm_extent l_extent;
611         struct ldlm_flock l_flock;
612         struct ldlm_inodebits l_inodebits;
613 } ldlm_policy_data_t;
614
615 void ldlm_convert_policy_to_wire(ldlm_type_t type,
616                                  const ldlm_policy_data_t *lpolicy,
617                                  ldlm_wire_policy_data_t *wpolicy);
618 void ldlm_convert_policy_to_local(struct obd_export *exp, ldlm_type_t type,
619                                   const ldlm_wire_policy_data_t *wpolicy,
620                                   ldlm_policy_data_t *lpolicy);
621
622 struct ldlm_lock {
623         /**
624          * Must be first in the structure.
625          */
626         struct portals_handle    l_handle;
627         /**
628          * Lock reference count.
629          */
630         cfs_atomic_t             l_refc;
631         /**
632          * Internal spinlock protects l_resource.  we should hold this lock
633          * first before grabbing res_lock.
634          */
635         cfs_spinlock_t           l_lock;
636         /**
637          * ldlm_lock_change_resource() can change this.
638          */
639         struct ldlm_resource    *l_resource;
640         /**
641          * Protected by ns_hash_lock. List item for client side lru list.
642          */
643         cfs_list_t               l_lru;
644         /**
645          * Protected by lr_lock, linkage to resource's lock queues.
646          */
647         cfs_list_t               l_res_link;
648         /**
649          * Tree node for ldlm_extent.
650          */
651         struct ldlm_interval    *l_tree_node;
652         /**
653          * Protected by per-bucket exp->exp_lock_hash locks. Per export hash
654          * of locks.
655          */
656         cfs_hlist_node_t         l_exp_hash;
657         /**
658          * Protected by lr_lock. Requested mode.
659          */
660         ldlm_mode_t              l_req_mode;
661         /**
662          * Granted mode, also protected by lr_lock.
663          */
664         ldlm_mode_t              l_granted_mode;
665         /**
666          * Lock enqueue completion handler.
667          */
668         ldlm_completion_callback l_completion_ast;
669         /**
670          * Lock blocking ast handler.
671          */
672         ldlm_blocking_callback   l_blocking_ast;
673         /**
674          * Lock glimpse handler.
675          */
676         ldlm_glimpse_callback    l_glimpse_ast;
677         ldlm_weigh_callback      l_weigh_ast;
678
679         /**
680          * Lock export.
681          */
682         struct obd_export       *l_export;
683         /**
684          * Lock connection export.
685          */
686         struct obd_export       *l_conn_export;
687
688         /**
689          * Remote lock handle.
690          */
691         struct lustre_handle     l_remote_handle;
692
693         ldlm_policy_data_t       l_policy_data;
694
695         /*
696          * Protected by lr_lock. Various counters: readers, writers, etc.
697          */
698         __u64                 l_flags;
699         __u32                 l_readers;
700         __u32                 l_writers;
701         /**
702          * If the lock is granted, a process sleeps on this waitq to learn when
703          * it's no longer in use.  If the lock is not granted, a process sleeps
704          * on this waitq to learn when it becomes granted.
705          */
706         cfs_waitq_t           l_waitq;
707
708         /** 
709          * Seconds. it will be updated if there is any activity related to 
710          * the lock, e.g. enqueue the lock or send block AST.
711          */
712         cfs_time_t            l_last_activity;
713
714         /**
715          * Jiffies. Should be converted to time if needed.
716          */
717         cfs_time_t            l_last_used;
718
719         struct ldlm_extent    l_req_extent;
720
721         unsigned int          l_failed:1,
722         /*
723          * Set for locks that were removed from class hash table and will be
724          * destroyed when last reference to them is released. Set by
725          * ldlm_lock_destroy_internal().
726          *
727          * Protected by lock and resource locks.
728          */
729                               l_destroyed:1,
730         /**
731          * flag whether this is a server namespace lock.
732          */
733                               l_ns_srv:1;
734
735         /*
736          * Client-side-only members.
737          */
738
739         /**
740          * Temporary storage for an LVB received during an enqueue operation.
741          */
742         __u32                 l_lvb_len;
743         void                 *l_lvb_data;
744
745         void                 *l_ast_data;
746
747         /*
748          * Server-side-only members.
749          */
750
751         /** connection cookie for the client originated the operation. */
752         __u64                 l_client_cookie;
753
754         /**
755          * Protected by elt_lock. Callbacks pending.
756          */
757         cfs_list_t            l_pending_chain;
758
759         cfs_time_t            l_callback_timeout;
760
761         /**
762          * Pid which created this lock.
763          */
764         __u32                 l_pid;
765
766         int                   l_bl_ast_run;
767         /**
768          * For ldlm_add_ast_work_item().
769          */
770         cfs_list_t            l_bl_ast;
771         /**
772          * For ldlm_add_ast_work_item().
773          */
774         cfs_list_t            l_cp_ast;
775         /**
776          * For ldlm_add_ast_work_item().
777          */
778         cfs_list_t            l_rk_ast;
779
780         struct ldlm_lock     *l_blocking_lock;
781
782         /**
783          * Protected by lr_lock, linkages to "skip lists".
784          */
785         cfs_list_t            l_sl_mode;
786         cfs_list_t            l_sl_policy;
787         struct lu_ref         l_reference;
788 #if LUSTRE_TRACKS_LOCK_EXP_REFS
789         /* Debugging stuff for bug 20498, for tracking export
790            references. */
791         /** number of export references taken */
792         int                   l_exp_refs_nr;
793         /** link all locks referencing one export */
794         cfs_list_t            l_exp_refs_link;
795         /** referenced export object */
796         struct obd_export    *l_exp_refs_target;
797 #endif
798         /** export blocking dlm lock list, protected by
799          * l_export->exp_bl_list_lock.
800          * Lock order of waiting_lists_spinlock, exp_bl_list_lock and res lock
801          * is: res lock -> exp_bl_list_lock -> wanting_lists_spinlock. */
802         cfs_list_t            l_exp_list;
803 };
804
805 struct ldlm_resource {
806         struct ldlm_ns_bucket *lr_ns_bucket;
807
808         /* protected by ns_hash_lock */
809         cfs_hlist_node_t       lr_hash;
810         cfs_spinlock_t         lr_lock;
811
812         /* protected by lr_lock */
813         cfs_list_t             lr_granted;
814         cfs_list_t             lr_converting;
815         cfs_list_t             lr_waiting;
816         ldlm_mode_t            lr_most_restr;
817         ldlm_type_t            lr_type; /* LDLM_{PLAIN,EXTENT,FLOCK} */
818         struct ldlm_res_id     lr_name;
819         cfs_atomic_t           lr_refcount;
820
821         struct ldlm_interval_tree lr_itree[LCK_MODE_NUM];  /* interval trees*/
822
823         /* Server-side-only lock value block elements */
824         /** to serialize lvbo_init */
825         cfs_mutex_t            lr_lvb_mutex;
826         __u32                  lr_lvb_len;
827         /** protect by lr_lock */
828         void                  *lr_lvb_data;
829
830         /* when the resource was considered as contended */
831         cfs_time_t             lr_contention_time;
832         /**
833          * List of references to this resource. For debugging.
834          */
835         struct lu_ref          lr_reference;
836
837         struct inode          *lr_lvb_inode;
838 };
839
840 static inline char *
841 ldlm_ns_name(struct ldlm_namespace *ns)
842 {
843         return ns->ns_rs_hash->hs_name;
844 }
845
846 static inline struct ldlm_namespace *
847 ldlm_res_to_ns(struct ldlm_resource *res)
848 {
849         return res->lr_ns_bucket->nsb_namespace;
850 }
851
852 static inline struct ldlm_namespace *
853 ldlm_lock_to_ns(struct ldlm_lock *lock)
854 {
855         return ldlm_res_to_ns(lock->l_resource);
856 }
857
858 static inline char *
859 ldlm_lock_to_ns_name(struct ldlm_lock *lock)
860 {
861         return ldlm_ns_name(ldlm_lock_to_ns(lock));
862 }
863
864 static inline struct adaptive_timeout *
865 ldlm_lock_to_ns_at(struct ldlm_lock *lock)
866 {
867         return &lock->l_resource->lr_ns_bucket->nsb_at_estimate;
868 }
869
870 struct ldlm_ast_work {
871         struct ldlm_lock      *w_lock;
872         int                    w_blocking;
873         struct ldlm_lock_desc  w_desc;
874         cfs_list_t             w_list;
875         int                    w_flags;
876         void                  *w_data;
877         int                    w_datalen;
878 };
879
880 /* ldlm_enqueue parameters common */
881 struct ldlm_enqueue_info {
882         __u32 ei_type;   /* Type of the lock being enqueued. */
883         __u32 ei_mode;   /* Mode of the lock being enqueued. */
884         void *ei_cb_bl;  /* blocking lock callback */
885         void *ei_cb_cp;  /* lock completion callback */
886         void *ei_cb_gl;  /* lock glimpse callback */
887         void *ei_cb_wg;  /* lock weigh callback */
888         void *ei_cbdata; /* Data to be passed into callbacks. */
889 };
890
891 extern struct obd_ops ldlm_obd_ops;
892
893 extern char *ldlm_lockname[];
894 extern char *ldlm_typename[];
895 extern char *ldlm_it2str(int it);
896 #ifdef LIBCFS_DEBUG
897 #define ldlm_lock_debug(msgdata, mask, cdls, lock, fmt, a...) do {      \
898         CFS_CHECK_STACK(msgdata, mask, cdls);                           \
899                                                                         \
900         if (((mask) & D_CANTMASK) != 0 ||                               \
901             ((libcfs_debug & (mask)) != 0 &&                            \
902              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))          \
903                 _ldlm_lock_debug(lock, msgdata, fmt, ##a);              \
904 } while(0)
905
906 void _ldlm_lock_debug(struct ldlm_lock *lock,
907                       struct libcfs_debug_msg_data *data,
908                       const char *fmt, ...)
909         __attribute__ ((format (printf, 3, 4)));
910
911 #define LDLM_DEBUG_LIMIT(mask, lock, fmt, a...) do {                         \
912         static cfs_debug_limit_state_t _ldlm_cdls;                           \
913         LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, &_ldlm_cdls);              \
914         ldlm_lock_debug(&msgdata, mask, &_ldlm_cdls, lock, "### " fmt , ##a);\
915 } while (0)
916
917 #define LDLM_ERROR(lock, fmt, a...) LDLM_DEBUG_LIMIT(D_ERROR, lock, fmt, ## a)
918 #define LDLM_WARN(lock, fmt, a...)  LDLM_DEBUG_LIMIT(D_WARNING, lock, fmt, ## a)
919
920 #define LDLM_DEBUG(lock, fmt, a...)   do {                                  \
921         LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_DLMTRACE, NULL);              \
922         ldlm_lock_debug(&msgdata, D_DLMTRACE, NULL, lock, "### " fmt , ##a);\
923 } while (0)
924 #else /* !LIBCFS_DEBUG */
925 # define LDLM_DEBUG(lock, fmt, a...) ((void)0)
926 # define LDLM_ERROR(lock, fmt, a...) ((void)0)
927 # define ldlm_lock_debuf(cdls, level, lock, file, func, line, fmt, a...) \
928          ((void)0)
929 #endif
930
931 #define LDLM_DEBUG_NOLOCK(format, a...)                 \
932         CDEBUG(D_DLMTRACE, "### " format "\n" , ##a)
933
934 typedef int (*ldlm_processing_policy)(struct ldlm_lock *lock, int *flags,
935                                       int first_enq, ldlm_error_t *err,
936                                       cfs_list_t *work_list);
937
938 /*
939  * Iterators.
940  */
941
942 #define LDLM_ITER_CONTINUE 1 /* keep iterating */
943 #define LDLM_ITER_STOP     2 /* stop iterating */
944
945 typedef int (*ldlm_iterator_t)(struct ldlm_lock *, void *);
946 typedef int (*ldlm_res_iterator_t)(struct ldlm_resource *, void *);
947
948 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
949                           void *closure);
950 void ldlm_namespace_foreach(struct ldlm_namespace *ns, ldlm_iterator_t iter,
951                             void *closure);
952
953 int ldlm_replay_locks(struct obd_import *imp);
954 int ldlm_resource_iterate(struct ldlm_namespace *, const struct ldlm_res_id *,
955                            ldlm_iterator_t iter, void *data);
956
957 /* ldlm_flock.c */
958 int ldlm_flock_completion_ast(struct ldlm_lock *lock, int flags, void *data);
959
960 /* ldlm_extent.c */
961 __u64 ldlm_extent_shift_kms(struct ldlm_lock *lock, __u64 old_kms);
962
963
964 /* ldlm_lockd.c */
965 int ldlm_server_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
966                              void *data, int flag);
967 int ldlm_server_completion_ast(struct ldlm_lock *lock, int flags, void *data);
968 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data);
969 int ldlm_handle_enqueue(struct ptlrpc_request *req, ldlm_completion_callback,
970                         ldlm_blocking_callback, ldlm_glimpse_callback);
971 int ldlm_handle_convert(struct ptlrpc_request *req);
972 int ldlm_handle_cancel(struct ptlrpc_request *req);
973 int ldlm_request_cancel(struct ptlrpc_request *req,
974                         const struct ldlm_request *dlm_req, int first);
975 int ldlm_del_waiting_lock(struct ldlm_lock *lock);
976 int ldlm_refresh_waiting_lock(struct ldlm_lock *lock, int timeout);
977 void ldlm_revoke_export_locks(struct obd_export *exp);
978 int ldlm_get_ref(void);
979 void ldlm_put_ref(void);
980 int ldlm_init_export(struct obd_export *exp);
981 void ldlm_destroy_export(struct obd_export *exp);
982
983 /* ldlm_lock.c */
984 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res);
985 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg);
986 void ldlm_lock2handle(const struct ldlm_lock *lock,
987                       struct lustre_handle *lockh);
988 struct ldlm_lock *__ldlm_handle2lock(const struct lustre_handle *, int flags);
989 void ldlm_cancel_callback(struct ldlm_lock *);
990 int ldlm_lock_remove_from_lru(struct ldlm_lock *);
991 int ldlm_lock_set_data(struct lustre_handle *, void *);
992
993 static inline struct ldlm_lock *ldlm_handle2lock(const struct lustre_handle *h)
994 {
995         return __ldlm_handle2lock(h, 0);
996 }
997
998 #define LDLM_LOCK_REF_DEL(lock) \
999         lu_ref_del(&lock->l_reference, "handle", cfs_current())
1000
1001 static inline struct ldlm_lock *
1002 ldlm_handle2lock_long(const struct lustre_handle *h, int flags)
1003 {
1004         struct ldlm_lock *lock;
1005
1006         lock = __ldlm_handle2lock(h, flags);
1007         if (lock != NULL)
1008                 LDLM_LOCK_REF_DEL(lock);
1009         return lock;
1010 }
1011
1012 static inline int ldlm_res_lvbo_update(struct ldlm_resource *res,
1013                                        struct ptlrpc_request *r, int increase)
1014 {
1015         if (ldlm_res_to_ns(res)->ns_lvbo &&
1016             ldlm_res_to_ns(res)->ns_lvbo->lvbo_update) {
1017                 return ldlm_res_to_ns(res)->ns_lvbo->lvbo_update(res, r,
1018                                                                  increase);
1019         }
1020         return 0;
1021 }
1022
1023 int ldlm_error2errno(ldlm_error_t error);
1024 ldlm_error_t ldlm_errno2error(int err_no); /* don't call it `errno': this
1025                                             * confuses user-space. */
1026 #if LUSTRE_TRACKS_LOCK_EXP_REFS
1027 void ldlm_dump_export_locks(struct obd_export *exp);
1028 #endif
1029
1030 /**
1031  * Release a temporary lock reference obtained by ldlm_handle2lock() or
1032  * __ldlm_handle2lock().
1033  */
1034 #define LDLM_LOCK_PUT(lock)                     \
1035 do {                                            \
1036         LDLM_LOCK_REF_DEL(lock);                \
1037         /*LDLM_DEBUG((lock), "put");*/          \
1038         ldlm_lock_put(lock);                    \
1039 } while (0)
1040
1041 /**
1042  * Release a lock reference obtained by some other means (see
1043  * LDLM_LOCK_PUT()).
1044  */
1045 #define LDLM_LOCK_RELEASE(lock)                 \
1046 do {                                            \
1047         /*LDLM_DEBUG((lock), "put");*/          \
1048         ldlm_lock_put(lock);                    \
1049 } while (0)
1050
1051 #define LDLM_LOCK_GET(lock)                     \
1052 ({                                              \
1053         ldlm_lock_get(lock);                    \
1054         /*LDLM_DEBUG((lock), "get");*/          \
1055         lock;                                   \
1056 })
1057
1058 #define ldlm_lock_list_put(head, member, count)                     \
1059 ({                                                                  \
1060         struct ldlm_lock *_lock, *_next;                            \
1061         int c = count;                                              \
1062         cfs_list_for_each_entry_safe(_lock, _next, head, member) {  \
1063                 if (c-- == 0)                                       \
1064                         break;                                      \
1065                 cfs_list_del_init(&_lock->member);                  \
1066                 LDLM_LOCK_RELEASE(_lock);                           \
1067         }                                                           \
1068         LASSERT(c <= 0);                                            \
1069 })
1070
1071 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock);
1072 void ldlm_lock_put(struct ldlm_lock *lock);
1073 void ldlm_lock_destroy(struct ldlm_lock *lock);
1074 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc);
1075 void ldlm_lock_addref(struct lustre_handle *lockh, __u32 mode);
1076 int  ldlm_lock_addref_try(struct lustre_handle *lockh, __u32 mode);
1077 void ldlm_lock_decref(struct lustre_handle *lockh, __u32 mode);
1078 void ldlm_lock_decref_and_cancel(struct lustre_handle *lockh, __u32 mode);
1079 void ldlm_lock_fail_match_locked(struct ldlm_lock *lock);
1080 void ldlm_lock_fail_match(struct ldlm_lock *lock);
1081 void ldlm_lock_allow_match(struct ldlm_lock *lock);
1082 void ldlm_lock_allow_match_locked(struct ldlm_lock *lock);
1083 ldlm_mode_t ldlm_lock_match(struct ldlm_namespace *ns, int flags,
1084                             const struct ldlm_res_id *, ldlm_type_t type,
1085                             ldlm_policy_data_t *, ldlm_mode_t mode,
1086                             struct lustre_handle *, int unref);
1087 ldlm_mode_t ldlm_revalidate_lock_handle(struct lustre_handle *lockh,
1088                                         __u64 *bits);
1089 struct ldlm_resource *ldlm_lock_convert(struct ldlm_lock *lock, int new_mode,
1090                                         __u32 *flags);
1091 void ldlm_lock_downgrade(struct ldlm_lock *lock, int new_mode);
1092 void ldlm_lock_cancel(struct ldlm_lock *lock);
1093 void ldlm_reprocess_all(struct ldlm_resource *res);
1094 void ldlm_reprocess_all_ns(struct ldlm_namespace *ns);
1095 void ldlm_lock_dump(int level, struct ldlm_lock *lock, int pos);
1096 void ldlm_lock_dump_handle(int level, struct lustre_handle *);
1097 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req);
1098
1099 /* resource.c */
1100 struct ldlm_namespace *
1101 ldlm_namespace_new(struct obd_device *obd, char *name,
1102                    ldlm_side_t client, ldlm_appetite_t apt,
1103                    ldlm_ns_type_t ns_type);
1104 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, int flags);
1105 void ldlm_namespace_free(struct ldlm_namespace *ns,
1106                          struct obd_import *imp, int force);
1107 void ldlm_namespace_register(struct ldlm_namespace *ns, ldlm_side_t client);
1108 void ldlm_namespace_unregister(struct ldlm_namespace *ns, ldlm_side_t client);
1109 void ldlm_namespace_move_locked(struct ldlm_namespace *ns, ldlm_side_t client);
1110 struct ldlm_namespace *ldlm_namespace_first_locked(ldlm_side_t client);
1111 void ldlm_namespace_get(struct ldlm_namespace *ns);
1112 void ldlm_namespace_put(struct ldlm_namespace *ns);
1113 int ldlm_proc_setup(void);
1114 #ifdef LPROCFS
1115 void ldlm_proc_cleanup(void);
1116 #else
1117 static inline void ldlm_proc_cleanup(void) {}
1118 #endif
1119
1120 /* resource.c - internal */
1121 struct ldlm_resource *ldlm_resource_get(struct ldlm_namespace *ns,
1122                                         struct ldlm_resource *parent,
1123                                         const struct ldlm_res_id *,
1124                                         ldlm_type_t type, int create);
1125 struct ldlm_resource *ldlm_resource_getref(struct ldlm_resource *res);
1126 int ldlm_resource_putref(struct ldlm_resource *res);
1127 void ldlm_resource_add_lock(struct ldlm_resource *res,
1128                             cfs_list_t *head,
1129                             struct ldlm_lock *lock);
1130 void ldlm_resource_unlink_lock(struct ldlm_lock *lock);
1131 void ldlm_res2desc(struct ldlm_resource *res, struct ldlm_resource_desc *desc);
1132 void ldlm_dump_all_namespaces(ldlm_side_t client, int level);
1133 void ldlm_namespace_dump(int level, struct ldlm_namespace *);
1134 void ldlm_resource_dump(int level, struct ldlm_resource *);
1135 int ldlm_lock_change_resource(struct ldlm_namespace *, struct ldlm_lock *,
1136                               const struct ldlm_res_id *);
1137
1138 #define LDLM_RESOURCE_ADDREF(res) do {                                  \
1139         lu_ref_add_atomic(&(res)->lr_reference, __FUNCTION__, cfs_current());  \
1140 } while (0)
1141
1142 #define LDLM_RESOURCE_DELREF(res) do {                                  \
1143         lu_ref_del(&(res)->lr_reference, __FUNCTION__, cfs_current());  \
1144 } while (0)
1145
1146 struct ldlm_callback_suite {
1147         ldlm_completion_callback lcs_completion;
1148         ldlm_blocking_callback   lcs_blocking;
1149         ldlm_glimpse_callback    lcs_glimpse;
1150         ldlm_weigh_callback      lcs_weigh;
1151 };
1152
1153 /* ldlm_request.c */
1154 int ldlm_expired_completion_wait(void *data);
1155 int ldlm_blocking_ast_nocheck(struct ldlm_lock *lock);
1156 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
1157                       void *data, int flag);
1158 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp);
1159 int ldlm_completion_ast_async(struct ldlm_lock *lock, int flags, void *data);
1160 int ldlm_completion_ast(struct ldlm_lock *lock, int flags, void *data);
1161 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
1162                      struct ldlm_enqueue_info *einfo,
1163                      const struct ldlm_res_id *res_id,
1164                      ldlm_policy_data_t const *policy, int *flags,
1165                      void *lvb, __u32 lvb_len, struct lustre_handle *lockh,
1166                      int async);
1167 int ldlm_prep_enqueue_req(struct obd_export *exp,
1168                           struct ptlrpc_request *req,
1169                           cfs_list_t *cancels,
1170                           int count);
1171 int ldlm_prep_elc_req(struct obd_export *exp,
1172                       struct ptlrpc_request *req,
1173                       int version, int opc, int canceloff,
1174                       cfs_list_t *cancels, int count);
1175 int ldlm_handle_enqueue0(struct ldlm_namespace *ns, struct ptlrpc_request *req,
1176                          const struct ldlm_request *dlm_req,
1177                          const struct ldlm_callback_suite *cbs);
1178 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
1179                           ldlm_type_t type, __u8 with_policy, ldlm_mode_t mode,
1180                           int *flags, void *lvb, __u32 lvb_len,
1181                           struct lustre_handle *lockh, int rc);
1182 int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
1183                            const struct ldlm_res_id *res_id,
1184                            ldlm_type_t type, ldlm_policy_data_t *policy,
1185                            ldlm_mode_t mode, int *flags,
1186                            ldlm_blocking_callback blocking,
1187                            ldlm_completion_callback completion,
1188                            ldlm_glimpse_callback glimpse,
1189                            void *data, __u32 lvb_len,
1190                            const __u64 *client_cookie,
1191                            struct lustre_handle *lockh);
1192 int ldlm_server_ast(struct lustre_handle *lockh, struct ldlm_lock_desc *new,
1193                     void *data, __u32 data_len);
1194 int ldlm_cli_convert(struct lustre_handle *, int new_mode, __u32 *flags);
1195 int ldlm_cli_update_pool(struct ptlrpc_request *req);
1196 int ldlm_handle_convert0(struct ptlrpc_request *req,
1197                          const struct ldlm_request *dlm_req);
1198 int ldlm_cli_cancel(struct lustre_handle *lockh);
1199 int ldlm_cli_cancel_unused(struct ldlm_namespace *, const struct ldlm_res_id *,
1200                            ldlm_cancel_flags_t flags, void *opaque);
1201 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
1202                                     const struct ldlm_res_id *res_id,
1203                                     ldlm_policy_data_t *policy,
1204                                     ldlm_mode_t mode,
1205                                     ldlm_cancel_flags_t flags,
1206                                     void *opaque);
1207 int ldlm_cli_cancel_req(struct obd_export *exp, cfs_list_t *head,
1208                         int count, ldlm_cancel_flags_t flags);
1209 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1210                                cfs_list_t *cancels,
1211                                ldlm_policy_data_t *policy,
1212                                ldlm_mode_t mode, int lock_flags,
1213                                ldlm_cancel_flags_t cancel_flags, void *opaque);
1214 int ldlm_cli_cancel_list_local(cfs_list_t *cancels, int count,
1215                                ldlm_cancel_flags_t flags);
1216 int ldlm_cli_cancel_list(cfs_list_t *head, int count,
1217                          struct ptlrpc_request *req, ldlm_cancel_flags_t flags);
1218
1219 /* mds/handler.c */
1220 /* This has to be here because recursive inclusion sucks. */
1221 int intent_disposition(struct ldlm_reply *rep, int flag);
1222 void intent_set_disposition(struct ldlm_reply *rep, int flag);
1223
1224
1225 /* ioctls for trying requests */
1226 #define IOC_LDLM_TYPE                   'f'
1227 #define IOC_LDLM_MIN_NR                 40
1228
1229 #define IOC_LDLM_TEST                   _IOWR('f', 40, long)
1230 #define IOC_LDLM_DUMP                   _IOWR('f', 41, long)
1231 #define IOC_LDLM_REGRESS_START          _IOWR('f', 42, long)
1232 #define IOC_LDLM_REGRESS_STOP           _IOWR('f', 43, long)
1233 #define IOC_LDLM_MAX_NR                 43
1234
1235 /**
1236  * "Modes" of acquiring lock_res, necessary to tell lockdep that taking more
1237  * than one lock_res is dead-lock safe.
1238  */
1239 enum lock_res_type {
1240         LRT_NORMAL,
1241         LRT_NEW
1242 };
1243
1244 static inline void lock_res(struct ldlm_resource *res)
1245 {
1246         cfs_spin_lock(&res->lr_lock);
1247 }
1248
1249 static inline void lock_res_nested(struct ldlm_resource *res,
1250                                    enum lock_res_type mode)
1251 {
1252         cfs_spin_lock_nested(&res->lr_lock, mode);
1253 }
1254
1255
1256 static inline void unlock_res(struct ldlm_resource *res)
1257 {
1258         cfs_spin_unlock(&res->lr_lock);
1259 }
1260
1261 static inline void check_res_locked(struct ldlm_resource *res)
1262 {
1263         LASSERT_SPIN_LOCKED(&res->lr_lock);
1264 }
1265
1266 struct ldlm_resource * lock_res_and_lock(struct ldlm_lock *lock);
1267 void unlock_res_and_lock(struct ldlm_lock *lock);
1268
1269 /* ldlm_pool.c */
1270 void ldlm_pools_recalc(ldlm_side_t client);
1271 int ldlm_pools_init(void);
1272 void ldlm_pools_fini(void);
1273
1274 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1275                    int idx, ldlm_side_t client);
1276 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
1277                      unsigned int gfp_mask);
1278 void ldlm_pool_fini(struct ldlm_pool *pl);
1279 int ldlm_pool_setup(struct ldlm_pool *pl, int limit);
1280 int ldlm_pool_recalc(struct ldlm_pool *pl);
1281 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl);
1282 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl);
1283 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl);
1284 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl);
1285 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv);
1286 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv);
1287 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit);
1288 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock);
1289 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock);
1290
1291 /** @} ldlm */
1292
1293 #endif