Whamcloud - gitweb
LU-11518 ldlm: control lru_size for extent lock
[fs/lustre-release.git] / lustre / include / lustre_dlm.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2010, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 /** \defgroup LDLM Lustre Distributed Lock Manager
34  *
35  * Lustre DLM is based on VAX DLM.
36  * Its two main roles are:
37  *   - To provide locking assuring consistency of data on all Lustre nodes.
38  *   - To allow clients to cache state protected by a lock by holding the
39  *     lock until a conflicting lock is requested or it is expired by the LRU.
40  *
41  * @{
42  */
43
44 #ifndef _LUSTRE_DLM_H__
45 #define _LUSTRE_DLM_H__
46
47 #include <lustre_lib.h>
48 #include <lustre_net.h>
49 #include <lustre_import.h>
50 #include <lustre_handles.h>
51 #include <interval_tree.h> /* for interval_node{}, ldlm_extent */
52 #include <lu_ref.h>
53
54 #include "lustre_dlm_flags.h"
55
56 struct obd_ops;
57 struct obd_device;
58
59 extern struct kset *ldlm_ns_kset;
60 extern struct kset *ldlm_svc_kset;
61
62 #define OBD_LDLM_DEVICENAME  "ldlm"
63
64 #define LDLM_DEFAULT_LRU_SIZE (100 * num_online_cpus())
65 #define LDLM_DEFAULT_MAX_ALIVE          3900    /* 3900 seconds ~65 min */
66 #define LDLM_CTIME_AGE_LIMIT (10)
67 /* if client lock is unused for that time it can be cancelled if any other
68  * client shows interest in that lock, e.g. glimpse is occured. */
69 #define LDLM_DIRTY_AGE_LIMIT (10)
70 #define LDLM_DEFAULT_PARALLEL_AST_LIMIT 1024
71 #define LDLM_DEFAULT_LRU_SHRINK_BATCH (16)
72
73 /**
74  * LDLM non-error return states
75  */
76 enum ldlm_error {
77         ELDLM_OK                = 0,
78         ELDLM_LOCK_MATCHED      = 1,
79
80         ELDLM_LOCK_CHANGED      = 300,
81         ELDLM_LOCK_ABORTED      = 301,
82         ELDLM_LOCK_REPLACED     = 302,
83         ELDLM_NO_LOCK_DATA      = 303,
84         ELDLM_LOCK_WOULDBLOCK   = 304,
85
86         ELDLM_NAMESPACE_EXISTS  = 400,
87         ELDLM_BAD_NAMESPACE     = 401,
88 };
89
90 /**
91  * LDLM namespace type.
92  * The "client" type is actually an indication that this is a narrow local view
93  * into complete namespace on the server. Such namespaces cannot make any
94  * decisions about lack of conflicts or do any autonomous lock granting without
95  * first speaking to a server.
96  */
97 enum ldlm_side {
98         LDLM_NAMESPACE_SERVER = 0x01,
99         LDLM_NAMESPACE_CLIENT = 0x02
100 };
101
102 /**
103  * The blocking callback is overloaded to perform two functions.  These flags
104  * indicate which operation should be performed.
105  */
106 #define LDLM_CB_BLOCKING    1
107 #define LDLM_CB_CANCELING   2
108
109 /**
110  * \name Lock Compatibility Matrix.
111  *
112  * A lock has both a type (extent, flock, inode bits, or plain) and a mode.
113  * Lock types are described in their respective implementation files:
114  * ldlm_{extent,flock,inodebits,plain}.c.
115  *
116  * There are six lock modes along with a compatibility matrix to indicate if
117  * two locks are compatible.
118  *
119  * - EX: Exclusive mode. Before a new file is created, MDS requests EX lock
120  *   on the parent.
121  * - PW: Protective Write (normal write) mode. When a client requests a write
122  *   lock from an OST, a lock with PW mode will be issued.
123  * - PR: Protective Read (normal read) mode. When a client requests a read from
124  *   an OST, a lock with PR mode will be issued. Also, if the client opens a
125  *   file for execution, it is granted a lock with PR mode.
126  * - CW: Concurrent Write mode. The type of lock that the MDS grants if a client
127  *   requests a write lock during a file open operation.
128  * - CR Concurrent Read mode. When a client performs a path lookup, MDS grants
129  *   an inodebit lock with the CR mode on the intermediate path component.
130  * - NL Null mode.
131  *
132  * <PRE>
133  *       NL  CR  CW  PR  PW  EX
134  *  NL    1   1   1   1   1   1
135  *  CR    1   1   1   1   1   0
136  *  CW    1   1   1   0   0   0
137  *  PR    1   1   0   1   0   0
138  *  PW    1   1   0   0   0   0
139  *  EX    1   0   0   0   0   0
140  * </PRE>
141  */
142 /** @{ */
143 #define LCK_COMPAT_EX  LCK_NL
144 #define LCK_COMPAT_PW  (LCK_COMPAT_EX | LCK_CR)
145 #define LCK_COMPAT_PR  (LCK_COMPAT_PW | LCK_PR)
146 #define LCK_COMPAT_CW  (LCK_COMPAT_PW | LCK_CW)
147 #define LCK_COMPAT_CR  (LCK_COMPAT_CW | LCK_PR | LCK_PW)
148 #define LCK_COMPAT_NL  (LCK_COMPAT_CR | LCK_EX | LCK_GROUP)
149 #define LCK_COMPAT_GROUP  (LCK_GROUP | LCK_NL)
150 #define LCK_COMPAT_COS (LCK_COS)
151 /** @} Lock Compatibility Matrix */
152
153 extern enum ldlm_mode lck_compat_array[];
154
155 static inline void lockmode_verify(enum ldlm_mode mode)
156 {
157         LASSERT(mode > LCK_MINMODE && mode < LCK_MAXMODE);
158 }
159
160 static inline int lockmode_compat(enum ldlm_mode exist_mode,
161                                   enum ldlm_mode new_mode)
162 {
163         return lck_compat_array[exist_mode] & new_mode;
164 }
165
166 /*
167  *
168  * cluster name spaces
169  *
170  */
171
172 #define DLM_OST_NAMESPACE 1
173 #define DLM_MDS_NAMESPACE 2
174
175 /* XXX
176    - do we just separate this by security domains and use a prefix for
177      multiple namespaces in the same domain?
178    -
179 */
180
181 /**
182  * Locking rules for LDLM:
183  *
184  * lr_lock
185  *
186  * lr_lock
187  *     waiting_locks_spinlock
188  *
189  * lr_lock
190  *     led_lock
191  *
192  * lr_lock
193  *     ns_lock
194  *
195  * lr_lvb_mutex
196  *     lr_lock
197  *
198  */
199
200 struct ldlm_pool;
201 struct ldlm_lock;
202 struct ldlm_resource;
203 struct ldlm_namespace;
204
205 /**
206  * Operations on LDLM pools.
207  * LDLM pool is a pool of locks in the namespace without any implicitly
208  * specified limits.
209  * Locks in the pool are organized in LRU.
210  * Local memory pressure or server instructions (e.g. mempressure on server)
211  * can trigger freeing of locks from the pool
212  */
213 struct ldlm_pool_ops {
214         /** Recalculate pool \a pl usage */
215         int (*po_recalc)(struct ldlm_pool *pl);
216         /** Cancel at least \a nr locks from pool \a pl */
217         int (*po_shrink)(struct ldlm_pool *pl, int nr, gfp_t gfp_mask);
218         int (*po_setup)(struct ldlm_pool *pl, int limit);
219 };
220
221 /** One second for pools thread check interval. Each pool has own period. */
222 #define LDLM_POOLS_THREAD_PERIOD (1)
223
224 /** ~6% margin for modest pools. See ldlm_pool.c for details. */
225 #define LDLM_POOLS_MODEST_MARGIN_SHIFT (4)
226
227 /** Default recalc period for server side pools in sec. */
228 #define LDLM_POOL_SRV_DEF_RECALC_PERIOD (1)
229
230 /** Default recalc period for client side pools in sec. */
231 #define LDLM_POOL_CLI_DEF_RECALC_PERIOD (10)
232
233 /**
234  * LDLM pool structure to track granted locks.
235  * For purposes of determining when to release locks on e.g. memory pressure.
236  * This feature is commonly referred to as lru_resize.
237  */
238 struct ldlm_pool {
239         /** Pool debugfs directory. */
240         struct dentry           *pl_debugfs_entry;
241         /** Pool name, must be long enough to hold compound proc entry name. */
242         char                    pl_name[100];
243         /** Lock for protecting SLV/CLV updates. */
244         spinlock_t              pl_lock;
245         /** Number of allowed locks in in pool, both, client and server side. */
246         atomic_t                pl_limit;
247         /** Number of granted locks in */
248         atomic_t                pl_granted;
249         /** Grant rate per T. */
250         atomic_t                pl_grant_rate;
251         /** Cancel rate per T. */
252         atomic_t                pl_cancel_rate;
253         /** Server lock volume (SLV). Protected by pl_lock. */
254         __u64                   pl_server_lock_volume;
255         /** Current biggest client lock volume. Protected by pl_lock. */
256         __u64                   pl_client_lock_volume;
257         /** Lock volume factor. SLV on client is calculated as following:
258          *  server_slv * lock_volume_factor. */
259         atomic_t                pl_lock_volume_factor;
260         /** Time when last SLV from server was obtained. */
261         time64_t                pl_recalc_time;
262         /** Recalculation period for pool. */
263         time64_t                pl_recalc_period;
264         /** Recalculation and shrink operations. */
265         struct ldlm_pool_ops    *pl_ops;
266         /** Number of planned locks for next period. */
267         int                     pl_grant_plan;
268         /** Pool statistics. */
269         struct lprocfs_stats    *pl_stats;
270
271         /* sysfs object */
272         struct kobject           pl_kobj;
273         struct completion        pl_kobj_unregister;
274 };
275
276 typedef int (*ldlm_res_policy)(const struct lu_env *env,
277                                struct ldlm_namespace *,
278                                struct ldlm_lock **, void *req_cookie,
279                                enum ldlm_mode mode, __u64 flags, void *data);
280
281 typedef int (*ldlm_cancel_cbt)(struct ldlm_lock *lock);
282
283 /**
284  * LVB operations.
285  * LVB is Lock Value Block. This is a special opaque (to LDLM) value that could
286  * be associated with an LDLM lock and transferred from client to server and
287  * back.
288  *
289  * Currently LVBs are used by:
290  *  - OSC-OST code to maintain current object size/times
291  *  - layout lock code to return the layout when the layout lock is granted
292  *
293  * To ensure delayed LVB initialization, it is highly recommended to use the set
294  * of ldlm_[res_]lvbo_[init,update,fill]() functions.
295  */
296 struct ldlm_valblock_ops {
297         int (*lvbo_init)(struct ldlm_resource *res);
298         int (*lvbo_update)(struct ldlm_resource *res, struct ldlm_lock *lock,
299                            struct ptlrpc_request *r, int increase);
300         int (*lvbo_free)(struct ldlm_resource *res);
301         /* Return size of lvb data appropriate RPC size can be reserved */
302         int (*lvbo_size)(struct ldlm_lock *lock);
303         /* Called to fill in lvb data to RPC buffer @buf */
304         int (*lvbo_fill)(struct ldlm_lock *lock, void *buf, int *buflen);
305 };
306
307 /**
308  * LDLM pools related, type of lock pool in the namespace.
309  * Greedy means release cached locks aggressively
310  */
311 enum ldlm_appetite {
312         LDLM_NAMESPACE_GREEDY = BIT(0),
313         LDLM_NAMESPACE_MODEST = BIT(1),
314 };
315
316 /**
317  * Default values for the "max_nolock_size", "contention_time" and
318  * "contended_locks" namespace tunables.
319  */
320 #define NS_DEFAULT_MAX_NOLOCK_BYTES 0
321 #define NS_DEFAULT_CONTENTION_SECONDS 2
322 #define NS_DEFAULT_CONTENDED_LOCKS 32
323
324 struct ldlm_ns_bucket {
325         /** back pointer to namespace */
326         struct ldlm_namespace      *nsb_namespace;
327         /**
328          * Estimated lock callback time.  Used by adaptive timeout code to
329          * avoid spurious client evictions due to unresponsiveness when in
330          * fact the network or overall system load is at fault
331          */
332         struct adaptive_timeout     nsb_at_estimate;
333         /**
334          * Which res in the bucket should we start with the reclaim.
335          */
336         int                         nsb_reclaim_start;
337         /* counter of entries in this bucket */
338         atomic_t                nsb_count;
339 };
340
341 enum {
342         /** LDLM namespace lock stats */
343         LDLM_NSS_LOCKS          = 0,
344         LDLM_NSS_LAST
345 };
346
347 enum ldlm_ns_type {
348         LDLM_NS_TYPE_UNKNOWN = 0,       /**< invalid type */
349         LDLM_NS_TYPE_MDC,               /**< MDC namespace */
350         LDLM_NS_TYPE_MDT,               /**< MDT namespace */
351         LDLM_NS_TYPE_OSC,               /**< OSC namespace */
352         LDLM_NS_TYPE_OST,               /**< OST namespace */
353         LDLM_NS_TYPE_MGC,               /**< MGC namespace */
354         LDLM_NS_TYPE_MGT,               /**< MGT namespace */
355 };
356
357 enum ldlm_namespace_flags {
358         /**
359          * Flag to indicate the LRU cancel is in progress.
360          * Used to limit the process by 1 thread only.
361          */
362         LDLM_LRU_CANCEL = 0
363 };
364
365 /**
366  * LDLM Namespace.
367  *
368  * Namespace serves to contain locks related to a particular service.
369  * There are two kinds of namespaces:
370  * - Server namespace has knowledge of all locks and is therefore authoritative
371  *   to make decisions like what locks could be granted and what conflicts
372  *   exist during new lock enqueue.
373  * - Client namespace only has limited knowledge about locks in the namespace,
374  *   only seeing locks held by the client.
375  *
376  * Every Lustre service has one server namespace present on the server serving
377  * that service. Every client connected to the service has a client namespace
378  * for it.
379  * Every lock obtained by client in that namespace is actually represented by
380  * two in-memory locks. One on the server and one on the client. The locks are
381  * linked by a special cookie by which one node can tell to the other which lock
382  * it actually means during communications. Such locks are called remote locks.
383  * The locks held by server only without any reference to a client are called
384  * local locks.
385  */
386 struct ldlm_namespace {
387         /** Backward link to OBD, required for LDLM pool to store new SLV. */
388         struct obd_device       *ns_obd;
389
390         /** Flag indicating if namespace is on client instead of server */
391         enum ldlm_side          ns_client;
392
393         /** name of this namespace */
394         char                    *ns_name;
395
396         /** Resource hash table for namespace. */
397         struct cfs_hash         *ns_rs_hash;
398         struct ldlm_ns_bucket   *ns_rs_buckets;
399         unsigned int            ns_bucket_bits;
400
401         /** serialize */
402         spinlock_t              ns_lock;
403
404         /** big refcount (by bucket) */
405         atomic_t                ns_bref;
406
407         /**
408          * Namespace connect flags supported by server (may be changed via
409          * /proc, LRU resize may be disabled/enabled).
410          */
411         __u64                   ns_connect_flags;
412
413         /** Client side original connect flags supported by server. */
414         __u64                   ns_orig_connect_flags;
415
416         /* namespace debugfs dir entry */
417         struct dentry           *ns_debugfs_entry;
418
419         /**
420          * Position in global namespace list linking all namespaces on
421          * the node.
422          */
423         struct list_head        ns_list_chain;
424
425         /**
426          * List of unused locks for this namespace. This list is also called
427          * LRU lock list.
428          * Unused locks are locks with zero reader/writer reference counts.
429          * This list is only used on clients for lock caching purposes.
430          * When we want to release some locks voluntarily or if server wants
431          * us to release some locks due to e.g. memory pressure, we take locks
432          * to release from the head of this list.
433          * Locks are linked via l_lru field in \see struct ldlm_lock.
434          */
435         struct list_head        ns_unused_list;
436         /** Number of locks in the LRU list above */
437         int                     ns_nr_unused;
438         struct list_head        *ns_last_pos;
439
440         /**
441          * Maximum number of locks permitted in the LRU. If 0, means locks
442          * are managed by pools and there is no preset limit, rather it is all
443          * controlled by available memory on this client and on server.
444          */
445         unsigned int            ns_max_unused;
446
447         /**
448          * Cancel batch, if unused lock count exceed lru_size
449          * Only be used if LRUR disable.
450          */
451         unsigned int            ns_cancel_batch;
452
453         /** Maximum allowed age (last used time) for locks in the LRU.  Set in
454          * seconds from userspace, but stored in ns to avoid repeat conversions.
455          */
456         ktime_t                 ns_max_age;
457
458         /**
459          * Server only: number of times we evicted clients due to lack of reply
460          * to ASTs.
461          */
462         unsigned int            ns_timeouts;
463         /**
464          * Number of seconds since the file change time after which
465          * the MDT will return an UPDATE lock along with a LOOKUP lock.
466          * This allows the client to start caching negative dentries
467          * for a directory and may save an RPC for a later stat.
468          */
469         timeout_t               ns_ctime_age_limit;
470         /**
471          * Number of (nano)seconds since the lock was last used. The client
472          * may cancel the lock older than this age and flush related data if
473          * another client shows interest in this lock by doing glimpse request.
474          * This allows to cache stat data locally for such files early. Set in
475          * seconds from userspace, but stored in ns to avoid repeat conversions.
476          */
477         ktime_t                 ns_dirty_age_limit;
478         /**
479          * Used to rate-limit ldlm_namespace_dump calls.
480          * \see ldlm_namespace_dump. Increased by 10 seconds every time
481          * it is called.
482          */
483         time64_t                ns_next_dump;
484
485         /** "policy" function that does actual lock conflict determination */
486         ldlm_res_policy         ns_policy;
487
488         /**
489          * LVB operations for this namespace.
490          * \see struct ldlm_valblock_ops
491          */
492         struct ldlm_valblock_ops *ns_lvbo;
493
494         /**
495          * Used by filter code to store pointer to OBD of the service.
496          * Should be dropped in favor of \a ns_obd
497          */
498         void                    *ns_lvbp;
499
500         /**
501          * Wait queue used by __ldlm_namespace_free. Gets woken up every time
502          * a resource is removed.
503          */
504         wait_queue_head_t       ns_waitq;
505         /** LDLM pool structure for this namespace */
506         struct ldlm_pool        ns_pool;
507         /** Definition of how eagerly unused locks will be released from LRU */
508         enum ldlm_appetite      ns_appetite;
509
510         /**
511          * If more than \a ns_contended_locks are found, the resource is
512          * considered to be contended. Lock enqueues might specify that no
513          * contended locks should be granted
514          */
515         unsigned                ns_contended_locks;
516
517         /**
518          * The resources in this namespace remember contended state during
519          * \a ns_contention_time, in seconds.
520          */
521         timeout_t               ns_contention_time;
522
523         /**
524          * Limit size of contended extent locks, in bytes.
525          * If extended lock is requested for more then this many bytes and
526          * caller instructs us not to grant contended locks, we would disregard
527          * such a request.
528          */
529         unsigned                ns_max_nolock_size;
530
531         /** Limit of parallel AST RPC count. */
532         unsigned                ns_max_parallel_ast;
533
534         /**
535          * Callback to check if a lock is good to be canceled by ELC or
536          * during recovery.
537          */
538         ldlm_cancel_cbt         ns_cancel;
539
540         /** LDLM lock stats */
541         struct lprocfs_stats    *ns_stats;
542
543         /**
544          * Flag to indicate namespace is being freed. Used to determine if
545          * recalculation of LDLM pool statistics should be skipped.
546          */
547         unsigned                ns_stopping:1;
548
549         /**
550          * Which bucket should we start with the lock reclaim.
551          */
552         int                     ns_reclaim_start;
553
554         struct kobject          ns_kobj; /* sysfs object */
555         struct completion       ns_kobj_unregister;
556
557         /**
558          * To avoid another ns_lock usage, a separate bitops field.
559          */
560         unsigned long           ns_flags;
561 };
562
563 /**
564  * Returns 1 if namespace \a ns is a client namespace.
565  */
566 static inline int ns_is_client(struct ldlm_namespace *ns)
567 {
568         LASSERT(ns != NULL);
569         LASSERT(ns->ns_client == LDLM_NAMESPACE_CLIENT ||
570                 ns->ns_client == LDLM_NAMESPACE_SERVER);
571         return ns->ns_client == LDLM_NAMESPACE_CLIENT;
572 }
573
574 /**
575  * Returns 1 if namespace \a ns is a server namespace.
576  */
577 static inline int ns_is_server(struct ldlm_namespace *ns)
578 {
579         LASSERT(ns != NULL);
580         LASSERT(ns->ns_client == LDLM_NAMESPACE_CLIENT ||
581                 ns->ns_client == LDLM_NAMESPACE_SERVER);
582         return ns->ns_client == LDLM_NAMESPACE_SERVER;
583 }
584
585 /**
586  * Returns 1 if namespace \a ns supports early lock cancel (ELC).
587  */
588 static inline int ns_connect_cancelset(struct ldlm_namespace *ns)
589 {
590         LASSERT(ns != NULL);
591         return !!(ns->ns_connect_flags & OBD_CONNECT_CANCELSET);
592 }
593
594 /**
595  * Returns 1 if this namespace supports lru_resize.
596  */
597 static inline int ns_connect_lru_resize(struct ldlm_namespace *ns)
598 {
599         LASSERT(ns != NULL);
600         return !!(ns->ns_connect_flags & OBD_CONNECT_LRU_RESIZE);
601 }
602
603 static inline void ns_register_cancel(struct ldlm_namespace *ns,
604                                       ldlm_cancel_cbt arg)
605 {
606         LASSERT(ns != NULL);
607         ns->ns_cancel = arg;
608 }
609
610 struct ldlm_lock;
611
612 /** Type for blocking callback function of a lock. */
613 typedef int (*ldlm_blocking_callback)(struct ldlm_lock *lock,
614                                       struct ldlm_lock_desc *new, void *data,
615                                       int flag);
616 /** Type for completion callback function of a lock. */
617 typedef int (*ldlm_completion_callback)(struct ldlm_lock *lock, __u64 flags,
618                                         void *data);
619 /** Type for glimpse callback function of a lock. */
620 typedef int (*ldlm_glimpse_callback)(struct ldlm_lock *lock, void *data);
621
622 /** Type for created callback function of a lock. */
623 typedef void (*ldlm_created_callback)(struct ldlm_lock *lock);
624
625 /** Work list for sending GL ASTs to multiple locks. */
626 struct ldlm_glimpse_work {
627         struct ldlm_lock        *gl_lock; /* lock to glimpse */
628         struct list_head         gl_list; /* linkage to other gl work structs */
629         __u32                    gl_flags;/* see LDLM_GL_WORK_* below */
630         union ldlm_gl_desc      *gl_desc; /* glimpse descriptor to be packed in
631                                            * glimpse callback request */
632         ptlrpc_interpterer_t     gl_interpret_reply;
633         void                    *gl_interpret_data;
634 };
635
636 struct ldlm_bl_desc {
637         unsigned int bl_same_client:1,
638                      bl_cos_incompat:1;
639 };
640
641 struct ldlm_cb_set_arg {
642         struct ptlrpc_request_set       *set;
643         int                              type; /* LDLM_{CP,BL,GL}_CALLBACK */
644         atomic_t                         restart;
645         struct list_head                *list;
646         union ldlm_gl_desc              *gl_desc; /* glimpse AST descriptor */
647         ptlrpc_interpterer_t             gl_interpret_reply;
648         void                            *gl_interpret_data;
649         struct ldlm_bl_desc             *bl_desc;
650 };
651
652 struct ldlm_cb_async_args {
653         struct ldlm_cb_set_arg  *ca_set_arg;
654         struct ldlm_lock        *ca_lock;
655 };
656
657 /** The ldlm_glimpse_work was slab allocated & must be freed accordingly.*/
658 #define LDLM_GL_WORK_SLAB_ALLOCATED 0x1
659
660 /** Interval node data for each LDLM_EXTENT lock. */
661 struct ldlm_interval {
662         struct interval_node    li_node;  /* node for tree management */
663         struct list_head        li_group; /* the locks which have the same
664                                            * policy - group of the policy */
665 };
666 #define to_ldlm_interval(n) container_of(n, struct ldlm_interval, li_node)
667
668 /**
669  * Interval tree for extent locks.
670  * The interval tree must be accessed under the resource lock.
671  * Interval trees are used for granted extent locks to speed up conflicts
672  * lookup. See ldlm/interval_tree.c for more details.
673  */
674 struct ldlm_interval_tree {
675         /** Tree size. */
676         int                     lit_size;
677         enum ldlm_mode          lit_mode;  /* lock mode */
678         struct interval_node    *lit_root; /* actual ldlm_interval */
679 };
680
681 /**
682  * Lists of waiting locks for each inodebit type.
683  * A lock can be in several liq_waiting lists and it remains in lr_waiting.
684  */
685 struct ldlm_ibits_queues {
686         struct list_head        liq_waiting[MDS_INODELOCK_NUMBITS];
687 };
688
689 struct ldlm_ibits_node {
690         struct list_head        lin_link[MDS_INODELOCK_NUMBITS];
691         struct ldlm_lock        *lock;
692 };
693
694 /** Whether to track references to exports by LDLM locks. */
695 #define LUSTRE_TRACKS_LOCK_EXP_REFS (0)
696
697 /** Cancel flags. */
698 enum ldlm_cancel_flags {
699         LCF_ASYNC       = 0x1, /* Cancel locks asynchronously. */
700         LCF_LOCAL       = 0x2, /* Cancel locks locally, not notifing server */
701         LCF_BL_AST      = 0x4, /* Cancel LDLM_FL_BL_AST locks in the same RPC */
702 };
703
704 struct ldlm_flock {
705         __u64 start;
706         __u64 end;
707         __u64 owner;
708         __u64 blocking_owner;
709         struct obd_export *blocking_export;
710         atomic_t blocking_refs;
711         __u32 pid;
712 };
713
714 union ldlm_policy_data {
715         struct ldlm_extent l_extent;
716         struct ldlm_flock l_flock;
717         struct ldlm_inodebits l_inodebits;
718 };
719
720 void ldlm_convert_policy_to_wire(enum ldlm_type type,
721                                  const union ldlm_policy_data *lpolicy,
722                                  union ldlm_wire_policy_data *wpolicy);
723 void ldlm_convert_policy_to_local(struct obd_export *exp, enum ldlm_type type,
724                                   const union ldlm_wire_policy_data *wpolicy,
725                                   union ldlm_policy_data *lpolicy);
726
727 enum lvb_type {
728         LVB_T_NONE      = 0,
729         LVB_T_OST       = 1,
730         LVB_T_LQUOTA    = 2,
731         LVB_T_LAYOUT    = 3,
732 };
733
734 /**
735  * LDLM_GID_ANY is used to match any group id in ldlm_lock_match().
736  */
737 #define LDLM_GID_ANY  ((__u64)-1)
738
739 /**
740  * LDLM lock structure
741  *
742  * Represents a single LDLM lock and its state in memory. Each lock is
743  * associated with a single ldlm_resource, the object which is being
744  * locked. There may be multiple ldlm_locks on a single resource,
745  * depending on the lock type and whether the locks are conflicting or
746  * not.
747  */
748 struct ldlm_lock {
749         /**
750          * Local lock handle.
751          * When remote side wants to tell us about a lock, they address
752          * it by this opaque handle.  The handle does not hold a
753          * reference on the ldlm_lock, so it can be safely passed to
754          * other threads or nodes. When the lock needs to be accessed
755          * from the handle, it is looked up again in the lock table, and
756          * may no longer exist.
757          *
758          * Must be first in the structure.
759          */
760         struct portals_handle   l_handle;
761         /**
762          * Internal spinlock protects l_resource.  We should hold this lock
763          * first before taking res_lock.
764          */
765         spinlock_t              l_lock;
766         /**
767          * Pointer to actual resource this lock is in.
768          * ldlm_lock_change_resource() can change this.
769          */
770         struct ldlm_resource    *l_resource;
771         /**
772          * List item for client side LRU list.
773          * Protected by ns_lock in struct ldlm_namespace.
774          */
775         struct list_head        l_lru;
776         /**
777          * Linkage to resource's lock queues according to current lock state.
778          * (could be granted or waiting)
779          * Protected by lr_lock in struct ldlm_resource.
780          */
781         struct list_head        l_res_link;
782         /**
783          * Internal structures per lock type..
784          */
785         union {
786                 struct ldlm_interval    *l_tree_node;
787                 struct ldlm_ibits_node  *l_ibits_node;
788         };
789         /**
790          * Per export hash of locks.
791          * Protected by per-bucket exp->exp_lock_hash locks.
792          */
793         struct hlist_node       l_exp_hash;
794         /**
795          * Per export hash of flock locks.
796          * Protected by per-bucket exp->exp_flock_hash locks.
797          */
798         struct hlist_node       l_exp_flock_hash;
799         /**
800          * Requested mode.
801          * Protected by lr_lock.
802          */
803         enum ldlm_mode          l_req_mode;
804         /**
805          * Granted mode, also protected by lr_lock.
806          */
807         enum ldlm_mode          l_granted_mode;
808         /** Lock completion handler pointer. Called when lock is granted. */
809         ldlm_completion_callback l_completion_ast;
810         /**
811          * Lock blocking AST handler pointer.
812          * It plays two roles:
813          * - as a notification of an attempt to queue a conflicting lock (once)
814          * - as a notification when the lock is being cancelled.
815          *
816          * As such it's typically called twice: once for the initial conflict
817          * and then once more when the last user went away and the lock is
818          * cancelled (could happen recursively).
819          */
820         ldlm_blocking_callback  l_blocking_ast;
821         /**
822          * Lock glimpse handler.
823          * Glimpse handler is used to obtain LVB updates from a client by
824          * server
825          */
826         ldlm_glimpse_callback   l_glimpse_ast;
827
828         /**
829          * Lock export.
830          * This is a pointer to actual client export for locks that were granted
831          * to clients. Used server-side.
832          */
833         struct obd_export       *l_export;
834         /**
835          * Lock connection export.
836          * Pointer to server export on a client.
837          */
838         struct obd_export       *l_conn_export;
839
840         /**
841          * Remote lock handle.
842          * If the lock is remote, this is the handle of the other side lock
843          * (l_handle)
844          */
845         struct lustre_handle    l_remote_handle;
846
847         /**
848          * Representation of private data specific for a lock type.
849          * Examples are: extent range for extent lock or bitmask for ibits locks
850          */
851         union ldlm_policy_data  l_policy_data;
852
853         /**
854          * Lock state flags. Protected by lr_lock.
855          * \see lustre_dlm_flags.h where the bits are defined.
856          */
857         __u64                   l_flags;
858
859         /**
860          * Lock r/w usage counters.
861          * Protected by lr_lock.
862          */
863         __u32                   l_readers;
864         __u32                   l_writers;
865         /**
866          * If the lock is granted, a process sleeps on this waitq to learn when
867          * it's no longer in use.  If the lock is not granted, a process sleeps
868          * on this waitq to learn when it becomes granted.
869          */
870         wait_queue_head_t       l_waitq;
871
872         /**
873          * Time, in nanoseconds, last used by e.g. being matched by lock match.
874          */
875         ktime_t                 l_last_used;
876
877         /** Originally requested extent for the extent lock. */
878         struct ldlm_extent      l_req_extent;
879
880         /*
881          * Client-side-only members.
882          */
883
884         enum lvb_type         l_lvb_type;
885
886         /**
887          * Temporary storage for a LVB received during an enqueue operation.
888          * May be vmalloc'd, so needs to be freed with OBD_FREE_LARGE().
889          */
890         __u32                   l_lvb_len;
891         void                    *l_lvb_data;
892
893         /** Private storage for lock user. Opaque to LDLM. */
894         void                    *l_ast_data;
895
896         union {
897         /**
898          * Seconds. It will be updated if there is any activity related to
899          * the lock at client, e.g. enqueue the lock. For server it is the
900          * time when blocking ast was sent.
901          */
902                 time64_t        l_activity;
903                 time64_t        l_blast_sent;
904         };
905
906         /* separate ost_lvb used mostly by Data-on-MDT for now.
907          * It is introduced to don't mix with layout lock data. */
908         struct ost_lvb           l_ost_lvb;
909         /*
910          * Server-side-only members.
911          */
912
913         /**
914          * Connection cookie for the client originating the operation.
915          * Used by Commit on Share (COS) code. Currently only used for
916          * inodebits locks on MDS.
917          */
918         __u64                   l_client_cookie;
919
920         /**
921          * List item for locks waiting for cancellation from clients.
922          * The lists this could be linked into are:
923          * waiting_locks_list (protected by waiting_locks_spinlock),
924          * then if the lock timed out, it is moved to
925          * expired_lock_list for further processing.
926          */
927         struct list_head        l_pending_chain;
928
929         /**
930          * Set when lock is sent a blocking AST. Time in seconds when timeout
931          * is reached and client holding this lock could be evicted.
932          * This timeout could be further extended by e.g. certain IO activity
933          * under this lock.
934          * \see ost_rw_prolong_locks
935          */
936         time64_t                l_callback_timestamp;
937
938         /** Local PID of process which created this lock. */
939         __u32                   l_pid;
940
941         /**
942          * Number of times blocking AST was sent for this lock.
943          * This is for debugging. Valid values are 0 and 1, if there is an
944          * attempt to send blocking AST more than once, an assertion would be
945          * hit. \see ldlm_work_bl_ast_lock
946          */
947         int                     l_bl_ast_run;
948         /** List item ldlm_add_ast_work_item() for case of blocking ASTs. */
949         struct list_head        l_bl_ast;
950         /** List item ldlm_add_ast_work_item() for case of completion ASTs. */
951         struct list_head        l_cp_ast;
952         /** For ldlm_add_ast_work_item() for "revoke" AST used in COS. */
953         struct list_head        l_rk_ast;
954
955         /**
956          * Pointer to a conflicting lock that caused blocking AST to be sent
957          * for this lock
958          */
959         struct ldlm_lock        *l_blocking_lock;
960
961         /**
962          * Protected by lr_lock, linkages to "skip lists".
963          * For more explanations of skip lists see ldlm/ldlm_inodebits.c
964          */
965         struct list_head        l_sl_mode;
966         struct list_head        l_sl_policy;
967
968         /** Reference tracking structure to debug leaked locks. */
969         struct lu_ref           l_reference;
970 #if LUSTRE_TRACKS_LOCK_EXP_REFS
971         /* Debugging stuff for bug 20498, for tracking export references. */
972         /** number of export references taken */
973         int                     l_exp_refs_nr;
974         /** link all locks referencing one export */
975         struct list_head        l_exp_refs_link;
976         /** referenced export object */
977         struct obd_export       *l_exp_refs_target;
978 #endif
979         /**
980          * export blocking dlm lock list, protected by
981          * l_export->exp_bl_list_lock.
982          * Lock order of waiting_lists_spinlock, exp_bl_list_lock and res lock
983          * is: res lock -> exp_bl_list_lock -> wanting_lists_spinlock.
984          */
985         struct list_head        l_exp_list;
986 };
987
988 enum ldlm_match_flags {
989         LDLM_MATCH_UNREF   = BIT(0),
990         LDLM_MATCH_AST     = BIT(1),
991         LDLM_MATCH_AST_ANY = BIT(2),
992 };
993
994 /**
995  * Describe the overlap between two locks.  itree_overlap_cb data.
996  */
997 struct ldlm_match_data {
998         struct ldlm_lock        *lmd_old;
999         struct ldlm_lock        *lmd_lock;
1000         enum ldlm_mode          *lmd_mode;
1001         union ldlm_policy_data  *lmd_policy;
1002         __u64                    lmd_flags;
1003         __u64                    lmd_skip_flags;
1004         enum ldlm_match_flags    lmd_match;
1005 };
1006
1007 /** For uncommitted cross-MDT lock, store transno this lock belongs to */
1008 #define l_transno l_client_cookie
1009
1010 /** For uncommitted cross-MDT lock, which is client lock, share with l_rk_ast
1011  *  which is for server. */
1012 #define l_slc_link l_rk_ast
1013
1014 #define HANDLE_MAP_SIZE  ((LMV_MAX_STRIPE_COUNT + 7) >> 3)
1015
1016 struct lustre_handle_array {
1017         unsigned int            ha_count;
1018         /* ha_map is used as bit flag to indicate handle is remote or local */
1019         char                    ha_map[HANDLE_MAP_SIZE];
1020         struct lustre_handle    ha_handles[0];
1021 };
1022
1023 /**
1024  * LDLM resource description.
1025  * Basically, resource is a representation for a single object.
1026  * Object has a name which is currently 4 64-bit integers. LDLM user is
1027  * responsible for creation of a mapping between objects it wants to be
1028  * protected and resource names.
1029  *
1030  * A resource can only hold locks of a single lock type, though there may be
1031  * multiple ldlm_locks on a single resource, depending on the lock type and
1032  * whether the locks are conflicting or not.
1033  */
1034 struct ldlm_resource {
1035         struct ldlm_ns_bucket   *lr_ns_bucket;
1036
1037         /**
1038          * List item for list in namespace hash.
1039          * protected by ns_lock
1040          */
1041         struct hlist_node       lr_hash;
1042
1043         /** Reference count for this resource */
1044         atomic_t                lr_refcount;
1045
1046         /** Spinlock to protect locks under this resource. */
1047         spinlock_t              lr_lock;
1048
1049         /**
1050          * protected by lr_lock
1051          * @{ */
1052         /** List of locks in granted state */
1053         struct list_head        lr_granted;
1054         /**
1055          * List of locks that could not be granted due to conflicts and
1056          * that are waiting for conflicts to go away */
1057         struct list_head        lr_waiting;
1058         /** @} */
1059
1060         /** Resource name */
1061         struct ldlm_res_id      lr_name;
1062
1063         union {
1064                 /**
1065                  * Interval trees (only for extent locks) for all modes of
1066                  * this resource
1067                  */
1068                 struct ldlm_interval_tree *lr_itree;
1069                 struct ldlm_ibits_queues *lr_ibits_queues;
1070         };
1071
1072         union {
1073                 /**
1074                  * When the resource was considered as contended,
1075                  * used only on server side.
1076                  */
1077                 time64_t        lr_contention_time;
1078                 /**
1079                  * Associated inode, used only on client side.
1080                  */
1081                 struct inode    *lr_lvb_inode;
1082         };
1083
1084         /** Type of locks this resource can hold. Only one type per resource. */
1085         enum ldlm_type          lr_type; /* LDLM_{PLAIN,EXTENT,FLOCK,IBITS} */
1086
1087         /**
1088          * Server-side-only lock value block elements.
1089          * To serialize lvbo_init.
1090          */
1091         int                     lr_lvb_len;
1092         struct mutex            lr_lvb_mutex;
1093         /** protected by lr_lock */
1094         void                    *lr_lvb_data;
1095         /** is lvb initialized ? */
1096         bool                    lr_lvb_initialized;
1097
1098         /** List of references to this resource. For debugging. */
1099         struct lu_ref           lr_reference;
1100 };
1101
1102 static inline int ldlm_is_granted(struct ldlm_lock *lock)
1103 {
1104         return lock->l_req_mode == lock->l_granted_mode;
1105 }
1106
1107 static inline bool ldlm_has_layout(struct ldlm_lock *lock)
1108 {
1109         return lock->l_resource->lr_type == LDLM_IBITS &&
1110                 lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_LAYOUT;
1111 }
1112
1113 static inline bool ldlm_has_dom(struct ldlm_lock *lock)
1114 {
1115         return lock->l_resource->lr_type == LDLM_IBITS &&
1116                 lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_DOM;
1117 }
1118
1119 static inline char *
1120 ldlm_ns_name(struct ldlm_namespace *ns)
1121 {
1122         return ns->ns_name;
1123 }
1124
1125 static inline struct ldlm_namespace *
1126 ldlm_res_to_ns(struct ldlm_resource *res)
1127 {
1128         return res->lr_ns_bucket->nsb_namespace;
1129 }
1130
1131 static inline struct ldlm_namespace *
1132 ldlm_lock_to_ns(struct ldlm_lock *lock)
1133 {
1134         return ldlm_res_to_ns(lock->l_resource);
1135 }
1136
1137 static inline char *
1138 ldlm_lock_to_ns_name(struct ldlm_lock *lock)
1139 {
1140         return ldlm_ns_name(ldlm_lock_to_ns(lock));
1141 }
1142
1143 static inline struct adaptive_timeout *
1144 ldlm_lock_to_ns_at(struct ldlm_lock *lock)
1145 {
1146         return &lock->l_resource->lr_ns_bucket->nsb_at_estimate;
1147 }
1148
1149 static inline int ldlm_lvbo_init(struct ldlm_resource *res)
1150 {
1151         struct ldlm_namespace *ns = ldlm_res_to_ns(res);
1152         int rc = 0;
1153
1154         if (ns->ns_lvbo == NULL || ns->ns_lvbo->lvbo_init == NULL ||
1155             res->lr_lvb_initialized)
1156                 return 0;
1157
1158         mutex_lock(&res->lr_lvb_mutex);
1159         /* Did we lose the race? */
1160         if (res->lr_lvb_initialized) {
1161                 mutex_unlock(&res->lr_lvb_mutex);
1162                 return 0;
1163         }
1164         rc = ns->ns_lvbo->lvbo_init(res);
1165         if (rc < 0) {
1166                 CDEBUG(D_DLMTRACE, "lvbo_init failed for resource : rc = %d\n",
1167                        rc);
1168                 if (res->lr_lvb_data != NULL) {
1169                         OBD_FREE(res->lr_lvb_data, res->lr_lvb_len);
1170                         res->lr_lvb_data = NULL;
1171                 }
1172                 res->lr_lvb_len = rc;
1173         } else {
1174                 res->lr_lvb_initialized = true;
1175         }
1176         mutex_unlock(&res->lr_lvb_mutex);
1177         return rc;
1178 }
1179
1180 static inline int ldlm_lvbo_size(struct ldlm_lock *lock)
1181 {
1182         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
1183
1184         if (ns->ns_lvbo != NULL && ns->ns_lvbo->lvbo_size != NULL)
1185                 return ns->ns_lvbo->lvbo_size(lock);
1186
1187         return 0;
1188 }
1189
1190 static inline int ldlm_lvbo_fill(struct ldlm_lock *lock, void *buf, int *len)
1191 {
1192         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
1193         int rc;
1194
1195         if (ns->ns_lvbo != NULL) {
1196                 LASSERT(ns->ns_lvbo->lvbo_fill != NULL);
1197                 /* init lvb now if not already */
1198                 rc = ldlm_lvbo_init(lock->l_resource);
1199                 if (rc < 0) {
1200                         CERROR("lock %p: delayed lvb init failed (rc %d)",
1201                                lock, rc);
1202                         return rc;
1203                 }
1204                 return ns->ns_lvbo->lvbo_fill(lock, buf, len);
1205         }
1206         return 0;
1207 }
1208
1209 struct ldlm_ast_work {
1210         struct ldlm_lock       *w_lock;
1211         int                     w_blocking;
1212         struct ldlm_lock_desc   w_desc;
1213         struct list_head        w_list;
1214         int                     w_flags;
1215         void                   *w_data;
1216         int                     w_datalen;
1217 };
1218
1219 /**
1220  * Common ldlm_enqueue parameters
1221  */
1222 struct ldlm_enqueue_info {
1223         enum ldlm_type  ei_type;        /** Type of the lock being enqueued. */
1224         enum ldlm_mode  ei_mode;        /** Mode of the lock being enqueued. */
1225         void            *ei_cb_bl;      /** blocking lock callback */
1226         void            *ei_cb_local_bl; /** blocking local lock callback */
1227         void            *ei_cb_cp;      /** lock completion callback */
1228         void            *ei_cb_gl;      /** lock glimpse callback */
1229         ldlm_created_callback ei_cb_created;    /** lock created callback */
1230         void            *ei_cbdata;     /** Data to be passed into callbacks. */
1231         void            *ei_namespace;  /** lock namespace **/
1232         u64             ei_inodebits;   /** lock inode bits **/
1233         unsigned int    ei_enq_slave:1; /** whether enqueue slave stripes */
1234         unsigned int    ei_enq_slot:1;  /** whether acquire rpc slot */
1235 };
1236
1237 #define ei_res_id       ei_cb_gl
1238
1239 extern char *ldlm_lockname[];
1240 extern char *ldlm_typename[];
1241 extern const char *ldlm_it2str(enum ldlm_intent_flags it);
1242
1243 /**
1244  * Just a fancy CDEBUG call with log level preset to LDLM_DEBUG.
1245  * For the cases where we do not have actual lock to print along
1246  * with a debugging message that is ldlm-related
1247  */
1248 #define LDLM_DEBUG_NOLOCK(format, a...)                 \
1249         CDEBUG(D_DLMTRACE, "### " format "\n" , ##a)
1250
1251 /**
1252  * Support function for lock information printing into debug logs.
1253  * \see LDLM_DEBUG
1254  */
1255 #ifdef LIBCFS_DEBUG
1256 #define ldlm_lock_debug(msgdata, mask, cdls, lock, fmt, a...) do {      \
1257         CFS_CHECK_STACK(msgdata, mask, cdls);                           \
1258                                                                         \
1259         if (((mask) & D_CANTMASK) != 0 ||                               \
1260             ((libcfs_debug & (mask)) != 0 &&                            \
1261              (libcfs_subsystem_debug & DEBUG_SUBSYSTEM) != 0))          \
1262                 _ldlm_lock_debug(lock, msgdata, fmt, ##a);              \
1263 } while(0)
1264
1265 void _ldlm_lock_debug(struct ldlm_lock *lock,
1266                       struct libcfs_debug_msg_data *data,
1267                       const char *fmt, ...)
1268         __attribute__ ((format (printf, 3, 4)));
1269
1270 /**
1271  * Rate-limited version of lock printing function.
1272  */
1273 #define LDLM_DEBUG_LIMIT(mask, lock, fmt, a...) do {                         \
1274         static struct cfs_debug_limit_state _ldlm_cdls;                      \
1275         LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, &_ldlm_cdls);              \
1276         ldlm_lock_debug(&msgdata, mask, &_ldlm_cdls, lock, "### " fmt , ##a);\
1277 } while (0)
1278
1279 #define LDLM_ERROR(lock, fmt, a...) LDLM_DEBUG_LIMIT(D_ERROR, lock, fmt, ## a)
1280 #define LDLM_WARN(lock, fmt, a...)  LDLM_DEBUG_LIMIT(D_WARNING, lock, fmt, ## a)
1281
1282 /** Non-rate-limited lock printing function for debugging purposes. */
1283 #define LDLM_DEBUG(lock, fmt, a...)   do {                                  \
1284         if (likely(lock != NULL)) {                                         \
1285                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_DLMTRACE, NULL);      \
1286                 ldlm_lock_debug(&msgdata, D_DLMTRACE, NULL, lock,           \
1287                                 "### " fmt , ##a);                          \
1288         } else {                                                            \
1289                 LDLM_DEBUG_NOLOCK("no dlm lock: " fmt, ##a);                \
1290         }                                                                   \
1291 } while (0)
1292 #else /* !LIBCFS_DEBUG */
1293 # define LDLM_DEBUG_LIMIT(mask, lock, fmt, a...) ((void)0)
1294 # define LDLM_DEBUG(lock, fmt, a...) ((void)0)
1295 # define LDLM_ERROR(lock, fmt, a...) ((void)0)
1296 #endif
1297
1298 /*
1299  * Three intentions can be used for the policy functions in
1300  * ldlm_processing_policy.
1301  *
1302  * LDLM_PROCESS_RESCAN:
1303  *
1304  * It's used when policy functions are called from ldlm_reprocess_queue() to
1305  * reprocess the wait list and try to grant locks, blocking ASTs
1306  * have already been sent in this situation, completion ASTs need be sent for
1307  * the locks being granted.
1308  *
1309  * LDLM_PROCESS_ENQUEUE:
1310  *
1311  * It's used when policy functions are called from ldlm_lock_enqueue() to
1312  * process the wait list for handling an enqueue request, blocking
1313  * ASTs have not been sent yet, so list of conflicting locks would be
1314  * collected and ASTs sent.
1315  *
1316  * LDLM_PROCESS_RECOVERY:
1317  *
1318  * It's used when policy functions are called from ldlm_reprocess_queue() to
1319  * reprocess the wait list when recovery done. In case of blocking
1320  * ASTs are lost before recovery, it needs not only to grant locks if
1321  * available, but also send blocking ASTs to the locks doesn't have AST sent
1322  * flag. Completion ASTs need be sent for the locks being granted.
1323  */
1324 enum ldlm_process_intention {
1325         LDLM_PROCESS_RESCAN = 0,
1326         LDLM_PROCESS_ENQUEUE = 1,
1327         LDLM_PROCESS_RECOVERY = 2,
1328 };
1329
1330 typedef int (*ldlm_processing_policy)(struct ldlm_lock *lock, __u64 *flags,
1331                                       enum ldlm_process_intention intention,
1332                                       enum ldlm_error *err,
1333                                       struct list_head *work_list);
1334
1335 typedef int (*ldlm_reprocessing_policy)(struct ldlm_resource *res,
1336                                         struct list_head *queue,
1337                                         struct list_head *work_list,
1338                                         enum ldlm_process_intention intention,
1339                                         struct ldlm_lock *hint);
1340
1341 /**
1342  * Return values for lock iterators.
1343  * Also used during deciding of lock grants and cancellations.
1344  */
1345 #define LDLM_ITER_CONTINUE 1 /* keep iterating */
1346 #define LDLM_ITER_STOP     2 /* stop iterating */
1347
1348 typedef int (*ldlm_iterator_t)(struct ldlm_lock *, void *);
1349 typedef int (*ldlm_res_iterator_t)(struct ldlm_resource *, void *);
1350
1351 /** \defgroup ldlm_iterator Lock iterators
1352  *
1353  * LDLM provides for a way to iterate through every lock on a resource or
1354  * namespace or every resource in a namespace.
1355  * @{ */
1356 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
1357                           void *closure);
1358 void ldlm_namespace_foreach(struct ldlm_namespace *ns, ldlm_iterator_t iter,
1359                             void *closure);
1360 int ldlm_resource_iterate(struct ldlm_namespace *, const struct ldlm_res_id *,
1361                           ldlm_iterator_t iter, void *data);
1362 /** @} ldlm_iterator */
1363
1364 int ldlm_replay_locks(struct obd_import *imp);
1365
1366 /* ldlm_flock.c */
1367 int ldlm_flock_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data);
1368
1369 /* ldlm_extent.c */
1370 __u64 ldlm_extent_shift_kms(struct ldlm_lock *lock, __u64 old_kms);
1371
1372 struct ldlm_prolong_args {
1373         struct obd_export       *lpa_export;
1374         struct ldlm_res_id      lpa_resid;
1375         struct ldlm_extent      lpa_extent;
1376         enum ldlm_mode          lpa_mode;
1377         timeout_t               lpa_timeout;
1378         int                     lpa_locks_cnt;
1379         int                     lpa_blocks_cnt;
1380 };
1381 void ldlm_lock_prolong_one(struct ldlm_lock *lock,
1382                            struct ldlm_prolong_args *arg);
1383 void ldlm_resource_prolong(struct ldlm_prolong_args *arg);
1384
1385 struct ldlm_callback_suite {
1386         ldlm_completion_callback lcs_completion;
1387         ldlm_blocking_callback   lcs_blocking;
1388         ldlm_glimpse_callback    lcs_glimpse;
1389 };
1390
1391 /* ldlm_lockd.c */
1392 #ifdef HAVE_SERVER_SUPPORT
1393 /** \defgroup ldlm_srv_ast Server AST handlers
1394  * These are AST handlers used by server code.
1395  * Their property is that they are just preparing RPCs to be sent to clients.
1396  * @{
1397  */
1398 int ldlm_server_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
1399                              void *data, int flag);
1400 int ldlm_server_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data);
1401 int ldlm_server_glimpse_ast(struct ldlm_lock *lock, void *data);
1402 int ldlm_glimpse_locks(struct ldlm_resource *res,
1403                        struct list_head *gl_work_list);
1404 /** @} ldlm_srv_ast */
1405
1406 /** \defgroup ldlm_handlers Server LDLM handlers
1407  * These are handler functions that should be called by "frontends" such as
1408  * MDT or OST to pass through LDLM requests to LDLM for handling
1409  * @{
1410  */
1411 int ldlm_handle_enqueue0(struct ldlm_namespace *ns, struct ptlrpc_request *req,
1412                          const struct ldlm_request *dlm_req,
1413                          const struct ldlm_callback_suite *cbs);
1414 int ldlm_handle_convert0(struct ptlrpc_request *req,
1415                          const struct ldlm_request *dlm_req);
1416 int ldlm_handle_cancel(struct ptlrpc_request *req);
1417 int ldlm_request_cancel(struct ptlrpc_request *req,
1418                         const struct ldlm_request *dlm_req,
1419                         int first, enum lustre_at_flags flags);
1420 /** @} ldlm_handlers */
1421
1422 void ldlm_revoke_export_locks(struct obd_export *exp);
1423 timeout_t ldlm_bl_timeout(struct ldlm_lock *lock);
1424 #endif
1425 int ldlm_del_waiting_lock(struct ldlm_lock *lock);
1426 int ldlm_refresh_waiting_lock(struct ldlm_lock *lock, timeout_t timeout);
1427 int ldlm_get_ref(void);
1428 void ldlm_put_ref(void);
1429 int ldlm_init_export(struct obd_export *exp);
1430 void ldlm_destroy_export(struct obd_export *exp);
1431 struct ldlm_lock *ldlm_request_lock(struct ptlrpc_request *req);
1432
1433 /* ldlm_lock.c */
1434 #ifdef HAVE_SERVER_SUPPORT
1435 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res);
1436 ldlm_reprocessing_policy
1437 ldlm_get_reprocessing_policy(struct ldlm_resource *res);
1438 #endif
1439 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg);
1440 void ldlm_lock2handle(const struct ldlm_lock *lock,
1441                       struct lustre_handle *lockh);
1442 struct ldlm_lock *__ldlm_handle2lock(const struct lustre_handle *, __u64 flags);
1443 void ldlm_cancel_callback(struct ldlm_lock *);
1444 int ldlm_lock_remove_from_lru(struct ldlm_lock *);
1445 int ldlm_lock_set_data(const struct lustre_handle *lockh, void *data);
1446
1447 /**
1448  * Obtain a lock reference by its handle.
1449  */
1450 static inline struct ldlm_lock *ldlm_handle2lock(const struct lustre_handle *h)
1451 {
1452         return __ldlm_handle2lock(h, 0);
1453 }
1454
1455 #define LDLM_LOCK_REF_DEL(lock) \
1456         lu_ref_del(&lock->l_reference, "handle", lock)
1457
1458 static inline struct ldlm_lock *
1459 ldlm_handle2lock_long(const struct lustre_handle *h, __u64 flags)
1460 {
1461         struct ldlm_lock *lock;
1462
1463         lock = __ldlm_handle2lock(h, flags);
1464         if (lock != NULL)
1465                 LDLM_LOCK_REF_DEL(lock);
1466         return lock;
1467 }
1468
1469 /**
1470  * Update Lock Value Block Operations (LVBO) on a resource taking into account
1471  * data from request \a r
1472  */
1473 static inline int ldlm_lvbo_update(struct ldlm_resource *res,
1474                                    struct ldlm_lock *lock,
1475                                    struct ptlrpc_request *req, int increase)
1476 {
1477         struct ldlm_namespace *ns = ldlm_res_to_ns(res);
1478         int rc;
1479
1480         /* delayed lvb init may be required */
1481         rc = ldlm_lvbo_init(res);
1482         if (rc < 0) {
1483                 CERROR("delayed lvb init failed (rc %d)\n", rc);
1484                 return rc;
1485         }
1486
1487         if (ns->ns_lvbo && ns->ns_lvbo->lvbo_update)
1488                 return ns->ns_lvbo->lvbo_update(res, lock, req, increase);
1489
1490         return 0;
1491 }
1492
1493 static inline int ldlm_res_lvbo_update(struct ldlm_resource *res,
1494                                        struct ptlrpc_request *req,
1495                                        int increase)
1496 {
1497         return ldlm_lvbo_update(res, NULL, req, increase);
1498 }
1499
1500 int is_granted_or_cancelled_nolock(struct ldlm_lock *lock);
1501
1502 int ldlm_error2errno(enum ldlm_error error);
1503 enum ldlm_error ldlm_errno2error(int err_no); /* don't call it `errno': this
1504                                                * confuses user-space. */
1505 #if LUSTRE_TRACKS_LOCK_EXP_REFS
1506 void ldlm_dump_export_locks(struct obd_export *exp);
1507 #endif
1508
1509 /**
1510  * Release a temporary lock reference obtained by ldlm_handle2lock() or
1511  * __ldlm_handle2lock().
1512  */
1513 #define LDLM_LOCK_PUT(lock)                     \
1514 do {                                            \
1515         LDLM_LOCK_REF_DEL(lock);                \
1516         /*LDLM_DEBUG((lock), "put");*/          \
1517         ldlm_lock_put(lock);                    \
1518 } while (0)
1519
1520 /**
1521  * Release a lock reference obtained by some other means (see
1522  * LDLM_LOCK_PUT()).
1523  */
1524 #define LDLM_LOCK_RELEASE(lock)                 \
1525 do {                                            \
1526         /*LDLM_DEBUG((lock), "put");*/          \
1527         ldlm_lock_put(lock);                    \
1528 } while (0)
1529
1530 #define LDLM_LOCK_GET(lock)                     \
1531 ({                                              \
1532         ldlm_lock_get(lock);                    \
1533         /*LDLM_DEBUG((lock), "get");*/          \
1534         lock;                                   \
1535 })
1536
1537 #define ldlm_lock_list_put(head, member, count)                 \
1538 ({                                                              \
1539         struct ldlm_lock *_lock, *_next;                        \
1540         int c = count;                                          \
1541         list_for_each_entry_safe(_lock, _next, head, member) {  \
1542                 if (c-- == 0)                                   \
1543                         break;                                  \
1544                 list_del_init(&_lock->member);                  \
1545                 LDLM_LOCK_RELEASE(_lock);                       \
1546         }                                                       \
1547         LASSERT(c <= 0);                                        \
1548 })
1549
1550 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock);
1551 void ldlm_lock_put(struct ldlm_lock *lock);
1552 void ldlm_lock_destroy(struct ldlm_lock *lock);
1553 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc);
1554 void ldlm_lock_addref(const struct lustre_handle *lockh, enum ldlm_mode mode);
1555 int  ldlm_lock_addref_try(const struct lustre_handle *lockh,
1556                           enum ldlm_mode mode);
1557 void ldlm_lock_decref(const struct lustre_handle *lockh, enum ldlm_mode mode);
1558 void ldlm_lock_decref_and_cancel(const struct lustre_handle *lockh,
1559                                  enum ldlm_mode mode);
1560 void ldlm_lock_fail_match_locked(struct ldlm_lock *lock);
1561 void ldlm_lock_fail_match(struct ldlm_lock *lock);
1562 void ldlm_lock_allow_match(struct ldlm_lock *lock);
1563 void ldlm_lock_allow_match_locked(struct ldlm_lock *lock);
1564
1565 enum ldlm_mode ldlm_lock_match_with_skip(struct ldlm_namespace *ns,
1566                                          __u64 flags, __u64 skip_flags,
1567                                          const struct ldlm_res_id *res_id,
1568                                          enum ldlm_type type,
1569                                          union ldlm_policy_data *policy,
1570                                          enum ldlm_mode mode,
1571                                          struct lustre_handle *lh,
1572                                          enum ldlm_match_flags match_flags);
1573 static inline enum ldlm_mode ldlm_lock_match(struct ldlm_namespace *ns,
1574                                              __u64 flags,
1575                                              const struct ldlm_res_id *res_id,
1576                                              enum ldlm_type type,
1577                                              union ldlm_policy_data *policy,
1578                                              enum ldlm_mode mode,
1579                                              struct lustre_handle *lh)
1580 {
1581         return ldlm_lock_match_with_skip(ns, flags, 0, res_id, type, policy,
1582                                          mode, lh, 0);
1583 }
1584 struct ldlm_lock *search_itree(struct ldlm_resource *res,
1585                                struct ldlm_match_data *data);
1586 enum ldlm_mode ldlm_revalidate_lock_handle(const struct lustre_handle *lockh,
1587                                            __u64 *bits);
1588 void ldlm_lock_mode_downgrade(struct ldlm_lock *lock, enum ldlm_mode new_mode);
1589 void ldlm_lock_cancel(struct ldlm_lock *lock);
1590 void ldlm_reprocess_all(struct ldlm_resource *res, struct ldlm_lock *hint);
1591 void ldlm_reprocess_recovery_done(struct ldlm_namespace *ns);
1592 void ldlm_lock_dump_handle(int level, const struct lustre_handle *lockh);
1593 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req);
1594
1595 /* resource.c */
1596 struct ldlm_namespace *ldlm_namespace_new(struct obd_device *obd, char *name,
1597                                           enum ldlm_side client,
1598                                           enum ldlm_appetite apt,
1599                                           enum ldlm_ns_type ns_type);
1600 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, __u64 flags);
1601 void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
1602                                struct obd_import *imp,
1603                                int force);
1604 void ldlm_namespace_free_post(struct ldlm_namespace *ns);
1605 void ldlm_namespace_free(struct ldlm_namespace *ns,
1606                          struct obd_import *imp, int force);
1607 void ldlm_namespace_register(struct ldlm_namespace *ns, enum ldlm_side client);
1608 void ldlm_namespace_unregister(struct ldlm_namespace *ns,
1609                                enum ldlm_side client);
1610 void ldlm_namespace_get(struct ldlm_namespace *ns);
1611 void ldlm_namespace_put(struct ldlm_namespace *ns);
1612
1613 int ldlm_debugfs_setup(void);
1614 void ldlm_debugfs_cleanup(void);
1615
1616 static inline void ldlm_svc_get_eopc(const struct ldlm_request *dlm_req,
1617                                      struct lprocfs_stats *srv_stats)
1618 {
1619         int lock_type = 0, op = 0;
1620
1621         lock_type = dlm_req->lock_desc.l_resource.lr_type;
1622
1623         switch (lock_type) {
1624         case LDLM_PLAIN:
1625                 op = PTLRPC_LAST_CNTR + LDLM_PLAIN_ENQUEUE;
1626                 break;
1627         case LDLM_EXTENT:
1628                 op = PTLRPC_LAST_CNTR + LDLM_EXTENT_ENQUEUE;
1629                 break;
1630         case LDLM_FLOCK:
1631                 op = PTLRPC_LAST_CNTR + LDLM_FLOCK_ENQUEUE;
1632                 break;
1633         case LDLM_IBITS:
1634                 op = PTLRPC_LAST_CNTR + LDLM_IBITS_ENQUEUE;
1635                 break;
1636         default:
1637                 op = 0;
1638                 break;
1639         }
1640
1641         if (op != 0)
1642                 lprocfs_counter_incr(srv_stats, op);
1643 }
1644
1645 /* resource.c - internal */
1646 struct ldlm_resource *ldlm_resource_get(struct ldlm_namespace *ns,
1647                                         struct ldlm_resource *parent,
1648                                         const struct ldlm_res_id *,
1649                                         enum ldlm_type type, int create);
1650 struct ldlm_resource *ldlm_resource_getref(struct ldlm_resource *res);
1651 int ldlm_resource_putref(struct ldlm_resource *res);
1652 void ldlm_resource_add_lock(struct ldlm_resource *res,
1653                             struct list_head *head,
1654                             struct ldlm_lock *lock);
1655 void ldlm_resource_unlink_lock(struct ldlm_lock *lock);
1656 void ldlm_res2desc(struct ldlm_resource *res, struct ldlm_resource_desc *desc);
1657 void ldlm_dump_all_namespaces(enum ldlm_side client, int level);
1658 void ldlm_namespace_dump(int level, struct ldlm_namespace *);
1659 void ldlm_resource_dump(int level, struct ldlm_resource *);
1660 int ldlm_lock_change_resource(struct ldlm_namespace *, struct ldlm_lock *,
1661                               const struct ldlm_res_id *);
1662
1663 #define LDLM_RESOURCE_ADDREF(res) do {                                  \
1664         lu_ref_add_atomic(&(res)->lr_reference, __FUNCTION__, current);  \
1665 } while (0)
1666
1667 #define LDLM_RESOURCE_DELREF(res) do {                                  \
1668         lu_ref_del(&(res)->lr_reference, __FUNCTION__, current);  \
1669 } while (0)
1670
1671 /* ldlm_request.c */
1672 /** \defgroup ldlm_local_ast Default AST handlers for local locks
1673  * These AST handlers are typically used for server-side local locks and are
1674  * also used by client-side lock handlers to perform minimum level base
1675  * processing.
1676  * @{ */
1677 int ldlm_blocking_ast_nocheck(struct ldlm_lock *lock);
1678 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
1679                       void *data, int flag);
1680 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp);
1681 int ldlm_completion_ast_async(struct ldlm_lock *lock, __u64 flags, void *data);
1682 int ldlm_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data);
1683 /** @} ldlm_local_ast */
1684
1685 /** \defgroup ldlm_cli_api API to operate on locks from actual LDLM users.
1686  * These are typically used by client and server (*_local versions)
1687  * to obtain and release locks.
1688  * @{ */
1689 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
1690                      struct ldlm_enqueue_info *einfo,
1691                      const struct ldlm_res_id *res_id,
1692                      union ldlm_policy_data const *policy, __u64 *flags,
1693                      void *lvb, __u32 lvb_len, enum lvb_type lvb_type,
1694                      struct lustre_handle *lockh, int async);
1695 int ldlm_prep_enqueue_req(struct obd_export *exp,
1696                           struct ptlrpc_request *req,
1697                           struct list_head *cancels,
1698                           int count);
1699 int ldlm_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
1700                       int version, int opc, int canceloff,
1701                       struct list_head *cancels, int count);
1702
1703 struct ptlrpc_request *ldlm_enqueue_pack(struct obd_export *exp, int lvb_len);
1704 int ldlm_handle_enqueue0(struct ldlm_namespace *ns, struct ptlrpc_request *req,
1705                          const struct ldlm_request *dlm_req,
1706                          const struct ldlm_callback_suite *cbs);
1707 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
1708                           enum ldlm_type type, __u8 with_policy,
1709                           enum ldlm_mode mode, __u64 *flags, void *lvb,
1710                           __u32 lvb_len,
1711                           const struct lustre_handle *lockh, int rc);
1712 int ldlm_cli_enqueue_local(const struct lu_env *env,
1713                            struct ldlm_namespace *ns,
1714                            const struct ldlm_res_id *res_id,
1715                            enum ldlm_type type, union ldlm_policy_data *policy,
1716                            enum ldlm_mode mode, __u64 *flags,
1717                            ldlm_blocking_callback blocking,
1718                            ldlm_completion_callback completion,
1719                            ldlm_glimpse_callback glimpse,
1720                            void *data, __u32 lvb_len, enum lvb_type lvb_type,
1721                            const __u64 *client_cookie,
1722                            struct lustre_handle *lockh);
1723 int ldlm_cli_convert_req(struct ldlm_lock *lock, __u32 *flags, __u64 new_bits);
1724 int ldlm_cli_convert(struct ldlm_lock *lock,
1725                      enum ldlm_cancel_flags cancel_flags);
1726 int ldlm_cli_update_pool(struct ptlrpc_request *req);
1727 int ldlm_cli_cancel(const struct lustre_handle *lockh,
1728                     enum ldlm_cancel_flags cancel_flags);
1729 int ldlm_cli_cancel_unused(struct ldlm_namespace *, const struct ldlm_res_id *,
1730                            enum ldlm_cancel_flags flags, void *opaque);
1731 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
1732                                     const struct ldlm_res_id *res_id,
1733                                     union ldlm_policy_data *policy,
1734                                     enum ldlm_mode mode,
1735                                     enum ldlm_cancel_flags flags, void *opaque);
1736 int ldlm_cli_cancel_req(struct obd_export *exp, struct list_head *head,
1737                         int count, enum ldlm_cancel_flags flags);
1738 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1739                                struct list_head *cancels,
1740                                union ldlm_policy_data *policy,
1741                                enum ldlm_mode mode, __u64 lock_flags,
1742                                enum ldlm_cancel_flags cancel_flags,
1743                                void *opaque);
1744 int ldlm_cli_cancel_list_local(struct list_head *cancels, int count,
1745                                enum ldlm_cancel_flags flags);
1746 int ldlm_cli_cancel_list(struct list_head *head, int count,
1747                          struct ptlrpc_request *req,
1748                          enum ldlm_cancel_flags flags);
1749
1750 int ldlm_inodebits_drop(struct ldlm_lock *lock, __u64 to_drop);
1751 int ldlm_cli_inodebits_convert(struct ldlm_lock *lock,
1752                                enum ldlm_cancel_flags cancel_flags);
1753
1754 /** @} ldlm_cli_api */
1755
1756 extern unsigned int ldlm_enqueue_min;
1757
1758 /* mds/handler.c */
1759 /* This has to be here because recursive inclusion sucks. */
1760 int intent_disposition(struct ldlm_reply *rep, int flag);
1761 void intent_set_disposition(struct ldlm_reply *rep, int flag);
1762
1763 /**
1764  * "Modes" of acquiring lock_res, necessary to tell lockdep that taking more
1765  * than one lock_res is dead-lock safe.
1766  */
1767 enum lock_res_type {
1768         LRT_NORMAL,
1769         LRT_NEW
1770 };
1771
1772 /** Lock resource. */
1773 static inline void lock_res(struct ldlm_resource *res)
1774 {
1775         spin_lock(&res->lr_lock);
1776 }
1777
1778 /** Lock resource with a way to instruct lockdep code about nestedness-safe. */
1779 static inline void lock_res_nested(struct ldlm_resource *res,
1780                                    enum lock_res_type mode)
1781 {
1782         spin_lock_nested(&res->lr_lock, mode);
1783 }
1784
1785 /** Unlock resource. */
1786 static inline void unlock_res(struct ldlm_resource *res)
1787 {
1788         spin_unlock(&res->lr_lock);
1789 }
1790
1791 /** Check if resource is already locked, assert if not. */
1792 static inline void check_res_locked(struct ldlm_resource *res)
1793 {
1794         assert_spin_locked(&res->lr_lock);
1795 }
1796
1797 struct ldlm_resource * lock_res_and_lock(struct ldlm_lock *lock);
1798 void unlock_res_and_lock(struct ldlm_lock *lock);
1799
1800 /* ldlm_pool.c */
1801 /** \defgroup ldlm_pools Various LDLM pool related functions
1802  * There are not used outside of ldlm.
1803  * @{
1804  */
1805 int ldlm_pools_init(void);
1806 void ldlm_pools_fini(void);
1807
1808 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1809                    int idx, enum ldlm_side client);
1810 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr, gfp_t gfp_mask);
1811 void ldlm_pool_fini(struct ldlm_pool *pl);
1812 int ldlm_pool_setup(struct ldlm_pool *pl, int limit);
1813 time64_t ldlm_pool_recalc(struct ldlm_pool *pl);
1814 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl);
1815 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl);
1816 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl);
1817 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl);
1818 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv);
1819 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv);
1820 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit);
1821 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock);
1822 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock);
1823 /** @} */
1824
1825 static inline int ldlm_extent_overlap(const struct ldlm_extent *ex1,
1826                                       const struct ldlm_extent *ex2)
1827 {
1828         return ex1->start <= ex2->end && ex2->start <= ex1->end;
1829 }
1830
1831 /* check if @ex1 contains @ex2 */
1832 static inline int ldlm_extent_contain(const struct ldlm_extent *ex1,
1833                                       const struct ldlm_extent *ex2)
1834 {
1835         return ex1->start <= ex2->start && ex1->end >= ex2->end;
1836 }
1837
1838 int ldlm_inodebits_drop(struct ldlm_lock *lock,  __u64 to_drop);
1839
1840 #endif
1841 /** @} LDLM */