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