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