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