Whamcloud - gitweb
LU-2743 ptlrpc: Translate between host and network errnos
[fs/lustre-release.git] / lustre / ldlm / ldlm_lock.c
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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ldlm/ldlm_lock.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_LDLM
43
44 #ifdef __KERNEL__
45 # include <libcfs/libcfs.h>
46 # include <linux/lustre_intent.h>
47 #else
48 # include <liblustre.h>
49 #endif
50
51 #include <obd_class.h>
52 #include "ldlm_internal.h"
53
54 /* lock types */
55 char *ldlm_lockname[] = {
56         [0] "--",
57         [LCK_EX] "EX",
58         [LCK_PW] "PW",
59         [LCK_PR] "PR",
60         [LCK_CW] "CW",
61         [LCK_CR] "CR",
62         [LCK_NL] "NL",
63         [LCK_GROUP] "GROUP",
64         [LCK_COS] "COS"
65 };
66 EXPORT_SYMBOL(ldlm_lockname);
67
68 char *ldlm_typename[] = {
69         [LDLM_PLAIN] "PLN",
70         [LDLM_EXTENT] "EXT",
71         [LDLM_FLOCK] "FLK",
72         [LDLM_IBITS] "IBT",
73 };
74 EXPORT_SYMBOL(ldlm_typename);
75
76 static ldlm_policy_wire_to_local_t ldlm_policy_wire18_to_local[] = {
77         [LDLM_PLAIN - LDLM_MIN_TYPE] ldlm_plain_policy_wire_to_local,
78         [LDLM_EXTENT - LDLM_MIN_TYPE] ldlm_extent_policy_wire_to_local,
79         [LDLM_FLOCK - LDLM_MIN_TYPE] ldlm_flock_policy_wire18_to_local,
80         [LDLM_IBITS - LDLM_MIN_TYPE] ldlm_ibits_policy_wire_to_local,
81 };
82
83 static ldlm_policy_wire_to_local_t ldlm_policy_wire21_to_local[] = {
84         [LDLM_PLAIN - LDLM_MIN_TYPE] ldlm_plain_policy_wire_to_local,
85         [LDLM_EXTENT - LDLM_MIN_TYPE] ldlm_extent_policy_wire_to_local,
86         [LDLM_FLOCK - LDLM_MIN_TYPE] ldlm_flock_policy_wire21_to_local,
87         [LDLM_IBITS - LDLM_MIN_TYPE] ldlm_ibits_policy_wire_to_local,
88 };
89
90 static ldlm_policy_local_to_wire_t ldlm_policy_local_to_wire[] = {
91         [LDLM_PLAIN - LDLM_MIN_TYPE] ldlm_plain_policy_local_to_wire,
92         [LDLM_EXTENT - LDLM_MIN_TYPE] ldlm_extent_policy_local_to_wire,
93         [LDLM_FLOCK - LDLM_MIN_TYPE] ldlm_flock_policy_local_to_wire,
94         [LDLM_IBITS - LDLM_MIN_TYPE] ldlm_ibits_policy_local_to_wire,
95 };
96
97 /**
98  * Converts lock policy from local format to on the wire lock_desc format
99  */
100 void ldlm_convert_policy_to_wire(ldlm_type_t type,
101                                  const ldlm_policy_data_t *lpolicy,
102                                  ldlm_wire_policy_data_t *wpolicy)
103 {
104         ldlm_policy_local_to_wire_t convert;
105
106         convert = ldlm_policy_local_to_wire[type - LDLM_MIN_TYPE];
107
108         convert(lpolicy, wpolicy);
109 }
110
111 /**
112  * Converts lock policy from on the wire lock_desc format to local format
113  */
114 void ldlm_convert_policy_to_local(struct obd_export *exp, ldlm_type_t type,
115                                   const ldlm_wire_policy_data_t *wpolicy,
116                                   ldlm_policy_data_t *lpolicy)
117 {
118         ldlm_policy_wire_to_local_t convert;
119         int new_client;
120
121         /** some badness for 2.0.0 clients, but 2.0.0 isn't supported */
122         new_client = (exp_connect_flags(exp) & OBD_CONNECT_FULL20) != 0;
123         if (new_client)
124                 convert = ldlm_policy_wire21_to_local[type - LDLM_MIN_TYPE];
125         else
126                 convert = ldlm_policy_wire18_to_local[type - LDLM_MIN_TYPE];
127
128         convert(wpolicy, lpolicy);
129 }
130
131 char *ldlm_it2str(int it)
132 {
133         switch (it) {
134         case IT_OPEN:
135                 return "open";
136         case IT_CREAT:
137                 return "creat";
138         case (IT_OPEN | IT_CREAT):
139                 return "open|creat";
140         case IT_READDIR:
141                 return "readdir";
142         case IT_GETATTR:
143                 return "getattr";
144         case IT_LOOKUP:
145                 return "lookup";
146         case IT_UNLINK:
147                 return "unlink";
148         case IT_GETXATTR:
149                 return "getxattr";
150         case IT_LAYOUT:
151                 return "layout";
152         default:
153                 CERROR("Unknown intent %d\n", it);
154                 return "UNKNOWN";
155         }
156 }
157 EXPORT_SYMBOL(ldlm_it2str);
158
159 extern cfs_mem_cache_t *ldlm_lock_slab;
160
161 #ifdef HAVE_SERVER_SUPPORT
162 static ldlm_processing_policy ldlm_processing_policy_table[] = {
163         [LDLM_PLAIN] ldlm_process_plain_lock,
164         [LDLM_EXTENT] ldlm_process_extent_lock,
165 # ifdef __KERNEL__
166         [LDLM_FLOCK] ldlm_process_flock_lock,
167 # endif
168         [LDLM_IBITS] ldlm_process_inodebits_lock,
169 };
170
171 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res)
172 {
173         return ldlm_processing_policy_table[res->lr_type];
174 }
175 EXPORT_SYMBOL(ldlm_get_processing_policy);
176 #endif /* HAVE_SERVER_SUPPORT */
177
178 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg)
179 {
180         ns->ns_policy = arg;
181 }
182 EXPORT_SYMBOL(ldlm_register_intent);
183
184 /*
185  * REFCOUNTED LOCK OBJECTS
186  */
187
188
189 /**
190  * Get a reference on a lock.
191  *
192  * Lock refcounts, during creation:
193  *   - one special one for allocation, dec'd only once in destroy
194  *   - one for being a lock that's in-use
195  *   - one for the addref associated with a new lock
196  */
197 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock)
198 {
199         cfs_atomic_inc(&lock->l_refc);
200         return lock;
201 }
202 EXPORT_SYMBOL(ldlm_lock_get);
203
204 /**
205  * Release lock reference.
206  *
207  * Also frees the lock if it was last reference.
208  */
209 void ldlm_lock_put(struct ldlm_lock *lock)
210 {
211         ENTRY;
212
213         LASSERT(lock->l_resource != LP_POISON);
214         LASSERT(cfs_atomic_read(&lock->l_refc) > 0);
215         if (cfs_atomic_dec_and_test(&lock->l_refc)) {
216                 struct ldlm_resource *res;
217
218                 LDLM_DEBUG(lock,
219                            "final lock_put on destroyed lock, freeing it.");
220
221                 res = lock->l_resource;
222                 LASSERT(lock->l_destroyed);
223                 LASSERT(cfs_list_empty(&lock->l_res_link));
224                 LASSERT(cfs_list_empty(&lock->l_pending_chain));
225
226                 lprocfs_counter_decr(ldlm_res_to_ns(res)->ns_stats,
227                                      LDLM_NSS_LOCKS);
228                 lu_ref_del(&res->lr_reference, "lock", lock);
229                 ldlm_resource_putref(res);
230                 lock->l_resource = NULL;
231                 if (lock->l_export) {
232                         class_export_lock_put(lock->l_export, lock);
233                         lock->l_export = NULL;
234                 }
235
236                 if (lock->l_lvb_data != NULL)
237                         OBD_FREE(lock->l_lvb_data, lock->l_lvb_len);
238
239                 ldlm_interval_free(ldlm_interval_detach(lock));
240                 lu_ref_fini(&lock->l_reference);
241                 OBD_FREE_RCU(lock, sizeof(*lock), &lock->l_handle);
242         }
243
244         EXIT;
245 }
246 EXPORT_SYMBOL(ldlm_lock_put);
247
248 /**
249  * Removes LDLM lock \a lock from LRU. Assumes LRU is already locked.
250  */
251 int ldlm_lock_remove_from_lru_nolock(struct ldlm_lock *lock)
252 {
253         int rc = 0;
254         if (!cfs_list_empty(&lock->l_lru)) {
255                 struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
256
257                 LASSERT(lock->l_resource->lr_type != LDLM_FLOCK);
258                 cfs_list_del_init(&lock->l_lru);
259                 if (lock->l_flags & LDLM_FL_SKIPPED)
260                         lock->l_flags &= ~LDLM_FL_SKIPPED;
261                 LASSERT(ns->ns_nr_unused > 0);
262                 ns->ns_nr_unused--;
263                 rc = 1;
264         }
265         return rc;
266 }
267
268 /**
269  * Removes LDLM lock \a lock from LRU. Obtains the LRU lock first.
270  */
271 int ldlm_lock_remove_from_lru(struct ldlm_lock *lock)
272 {
273         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
274         int rc;
275
276         ENTRY;
277         if (lock->l_ns_srv) {
278                 LASSERT(cfs_list_empty(&lock->l_lru));
279                 RETURN(0);
280         }
281
282         spin_lock(&ns->ns_lock);
283         rc = ldlm_lock_remove_from_lru_nolock(lock);
284         spin_unlock(&ns->ns_lock);
285         EXIT;
286         return rc;
287 }
288
289 /**
290  * Adds LDLM lock \a lock to namespace LRU. Assumes LRU is already locked.
291  */
292 void ldlm_lock_add_to_lru_nolock(struct ldlm_lock *lock)
293 {
294         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
295
296         lock->l_last_used = cfs_time_current();
297         LASSERT(cfs_list_empty(&lock->l_lru));
298         LASSERT(lock->l_resource->lr_type != LDLM_FLOCK);
299         cfs_list_add_tail(&lock->l_lru, &ns->ns_unused_list);
300         LASSERT(ns->ns_nr_unused >= 0);
301         ns->ns_nr_unused++;
302 }
303
304 /**
305  * Adds LDLM lock \a lock to namespace LRU. Obtains necessary LRU locks
306  * first.
307  */
308 void ldlm_lock_add_to_lru(struct ldlm_lock *lock)
309 {
310         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
311
312         ENTRY;
313         spin_lock(&ns->ns_lock);
314         ldlm_lock_add_to_lru_nolock(lock);
315         spin_unlock(&ns->ns_lock);
316         EXIT;
317 }
318
319 /**
320  * Moves LDLM lock \a lock that is already in namespace LRU to the tail of
321  * the LRU. Performs necessary LRU locking
322  */
323 void ldlm_lock_touch_in_lru(struct ldlm_lock *lock)
324 {
325         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
326
327         ENTRY;
328         if (lock->l_ns_srv) {
329                 LASSERT(cfs_list_empty(&lock->l_lru));
330                 EXIT;
331                 return;
332         }
333
334         spin_lock(&ns->ns_lock);
335         if (!cfs_list_empty(&lock->l_lru)) {
336                 ldlm_lock_remove_from_lru_nolock(lock);
337                 ldlm_lock_add_to_lru_nolock(lock);
338         }
339         spin_unlock(&ns->ns_lock);
340         EXIT;
341 }
342
343 /**
344  * Helper to destroy a locked lock.
345  *
346  * Used by ldlm_lock_destroy and ldlm_lock_destroy_nolock
347  * Must be called with l_lock and lr_lock held.
348  *
349  * Does not actually free the lock data, but rather marks the lock as
350  * destroyed by setting l_destroyed field in the lock to 1.  Destroys a
351  * handle->lock association too, so that the lock can no longer be found
352  * and removes the lock from LRU list.  Actual lock freeing occurs when
353  * last lock reference goes away.
354  *
355  * Original comment (of some historical value):
356  * This used to have a 'strict' flag, which recovery would use to mark an
357  * in-use lock as needing-to-die.  Lest I am ever tempted to put it back, I
358  * shall explain why it's gone: with the new hash table scheme, once you call
359  * ldlm_lock_destroy, you can never drop your final references on this lock.
360  * Because it's not in the hash table anymore.  -phil
361  */
362 int ldlm_lock_destroy_internal(struct ldlm_lock *lock)
363 {
364         ENTRY;
365
366         if (lock->l_readers || lock->l_writers) {
367                 LDLM_ERROR(lock, "lock still has references");
368                 LBUG();
369         }
370
371         if (!cfs_list_empty(&lock->l_res_link)) {
372                 LDLM_ERROR(lock, "lock still on resource");
373                 LBUG();
374         }
375
376         if (lock->l_destroyed) {
377                 LASSERT(cfs_list_empty(&lock->l_lru));
378                 EXIT;
379                 return 0;
380         }
381         lock->l_destroyed = 1;
382
383         if (lock->l_export && lock->l_export->exp_lock_hash) {
384                 /* NB: it's safe to call cfs_hash_del() even lock isn't
385                  * in exp_lock_hash. */
386                 /* In the function below, .hs_keycmp resolves to
387                  * ldlm_export_lock_keycmp() */
388                 /* coverity[overrun-buffer-val] */
389                 cfs_hash_del(lock->l_export->exp_lock_hash,
390                              &lock->l_remote_handle, &lock->l_exp_hash);
391         }
392
393         ldlm_lock_remove_from_lru(lock);
394         class_handle_unhash(&lock->l_handle);
395
396 #if 0
397         /* Wake anyone waiting for this lock */
398         /* FIXME: I should probably add yet another flag, instead of using
399          * l_export to only call this on clients */
400         if (lock->l_export)
401                 class_export_put(lock->l_export);
402         lock->l_export = NULL;
403         if (lock->l_export && lock->l_completion_ast)
404                 lock->l_completion_ast(lock, 0);
405 #endif
406         EXIT;
407         return 1;
408 }
409
410 /**
411  * Destroys a LDLM lock \a lock. Performs necessary locking first.
412  */
413 void ldlm_lock_destroy(struct ldlm_lock *lock)
414 {
415         int first;
416         ENTRY;
417         lock_res_and_lock(lock);
418         first = ldlm_lock_destroy_internal(lock);
419         unlock_res_and_lock(lock);
420
421         /* drop reference from hashtable only for first destroy */
422         if (first) {
423                 lu_ref_del(&lock->l_reference, "hash", lock);
424                 LDLM_LOCK_RELEASE(lock);
425         }
426         EXIT;
427 }
428
429 /**
430  * Destroys a LDLM lock \a lock that is already locked.
431  */
432 void ldlm_lock_destroy_nolock(struct ldlm_lock *lock)
433 {
434         int first;
435         ENTRY;
436         first = ldlm_lock_destroy_internal(lock);
437         /* drop reference from hashtable only for first destroy */
438         if (first) {
439                 lu_ref_del(&lock->l_reference, "hash", lock);
440                 LDLM_LOCK_RELEASE(lock);
441         }
442         EXIT;
443 }
444
445 /* this is called by portals_handle2object with the handle lock taken */
446 static void lock_handle_addref(void *lock)
447 {
448         LDLM_LOCK_GET((struct ldlm_lock *)lock);
449 }
450
451 static void lock_handle_free(void *lock, int size)
452 {
453         LASSERT(size == sizeof(struct ldlm_lock));
454         OBD_SLAB_FREE(lock, ldlm_lock_slab, size);
455 }
456
457 struct portals_handle_ops lock_handle_ops = {
458         .hop_addref = lock_handle_addref,
459         .hop_free   = lock_handle_free,
460 };
461
462 /**
463  *
464  * Allocate and initialize new lock structure.
465  *
466  * usage: pass in a resource on which you have done ldlm_resource_get
467  *        new lock will take over the refcount.
468  * returns: lock with refcount 2 - one for current caller and one for remote
469  */
470 static struct ldlm_lock *ldlm_lock_new(struct ldlm_resource *resource)
471 {
472         struct ldlm_lock *lock;
473         ENTRY;
474
475         if (resource == NULL)
476                 LBUG();
477
478         OBD_SLAB_ALLOC_PTR_GFP(lock, ldlm_lock_slab, CFS_ALLOC_IO);
479         if (lock == NULL)
480                 RETURN(NULL);
481
482         spin_lock_init(&lock->l_lock);
483         lock->l_resource = resource;
484         lu_ref_add(&resource->lr_reference, "lock", lock);
485
486         cfs_atomic_set(&lock->l_refc, 2);
487         CFS_INIT_LIST_HEAD(&lock->l_res_link);
488         CFS_INIT_LIST_HEAD(&lock->l_lru);
489         CFS_INIT_LIST_HEAD(&lock->l_pending_chain);
490         CFS_INIT_LIST_HEAD(&lock->l_bl_ast);
491         CFS_INIT_LIST_HEAD(&lock->l_cp_ast);
492         CFS_INIT_LIST_HEAD(&lock->l_rk_ast);
493         cfs_waitq_init(&lock->l_waitq);
494         lock->l_blocking_lock = NULL;
495         CFS_INIT_LIST_HEAD(&lock->l_sl_mode);
496         CFS_INIT_LIST_HEAD(&lock->l_sl_policy);
497         CFS_INIT_HLIST_NODE(&lock->l_exp_hash);
498         CFS_INIT_HLIST_NODE(&lock->l_exp_flock_hash);
499
500         lprocfs_counter_incr(ldlm_res_to_ns(resource)->ns_stats,
501                              LDLM_NSS_LOCKS);
502         CFS_INIT_LIST_HEAD(&lock->l_handle.h_link);
503         class_handle_hash(&lock->l_handle, &lock_handle_ops);
504
505         lu_ref_init(&lock->l_reference);
506         lu_ref_add(&lock->l_reference, "hash", lock);
507         lock->l_callback_timeout = 0;
508
509 #if LUSTRE_TRACKS_LOCK_EXP_REFS
510         CFS_INIT_LIST_HEAD(&lock->l_exp_refs_link);
511         lock->l_exp_refs_nr = 0;
512         lock->l_exp_refs_target = NULL;
513 #endif
514         CFS_INIT_LIST_HEAD(&lock->l_exp_list);
515
516         RETURN(lock);
517 }
518
519 /**
520  * Moves LDLM lock \a lock to another resource.
521  * This is used on client when server returns some other lock than requested
522  * (typically as a result of intent operation)
523  */
524 int ldlm_lock_change_resource(struct ldlm_namespace *ns, struct ldlm_lock *lock,
525                               const struct ldlm_res_id *new_resid)
526 {
527         struct ldlm_resource *oldres = lock->l_resource;
528         struct ldlm_resource *newres;
529         int type;
530         ENTRY;
531
532         LASSERT(ns_is_client(ns));
533
534         lock_res_and_lock(lock);
535         if (memcmp(new_resid, &lock->l_resource->lr_name,
536                    sizeof(lock->l_resource->lr_name)) == 0) {
537                 /* Nothing to do */
538                 unlock_res_and_lock(lock);
539                 RETURN(0);
540         }
541
542         LASSERT(new_resid->name[0] != 0);
543
544         /* This function assumes that the lock isn't on any lists */
545         LASSERT(cfs_list_empty(&lock->l_res_link));
546
547         type = oldres->lr_type;
548         unlock_res_and_lock(lock);
549
550         newres = ldlm_resource_get(ns, NULL, new_resid, type, 1);
551         if (newres == NULL)
552                 RETURN(-ENOMEM);
553
554         lu_ref_add(&newres->lr_reference, "lock", lock);
555         /*
556          * To flip the lock from the old to the new resource, lock, oldres and
557          * newres have to be locked. Resource spin-locks are nested within
558          * lock->l_lock, and are taken in the memory address order to avoid
559          * dead-locks.
560          */
561         spin_lock(&lock->l_lock);
562         oldres = lock->l_resource;
563         if (oldres < newres) {
564                 lock_res(oldres);
565                 lock_res_nested(newres, LRT_NEW);
566         } else {
567                 lock_res(newres);
568                 lock_res_nested(oldres, LRT_NEW);
569         }
570         LASSERT(memcmp(new_resid, &oldres->lr_name,
571                        sizeof oldres->lr_name) != 0);
572         lock->l_resource = newres;
573         unlock_res(oldres);
574         unlock_res_and_lock(lock);
575
576         /* ...and the flowers are still standing! */
577         lu_ref_del(&oldres->lr_reference, "lock", lock);
578         ldlm_resource_putref(oldres);
579
580         RETURN(0);
581 }
582 EXPORT_SYMBOL(ldlm_lock_change_resource);
583
584 /** \defgroup ldlm_handles LDLM HANDLES
585  * Ways to get hold of locks without any addresses.
586  * @{
587  */
588
589 /**
590  * Fills in handle for LDLM lock \a lock into supplied \a lockh
591  * Does not take any references.
592  */
593 void ldlm_lock2handle(const struct ldlm_lock *lock, struct lustre_handle *lockh)
594 {
595         lockh->cookie = lock->l_handle.h_cookie;
596 }
597 EXPORT_SYMBOL(ldlm_lock2handle);
598
599 /**
600  * Obtain a lock reference by handle.
601  *
602  * if \a flags: atomically get the lock and set the flags.
603  *              Return NULL if flag already set
604  */
605 struct ldlm_lock *__ldlm_handle2lock(const struct lustre_handle *handle,
606                                      __u64 flags)
607 {
608         struct ldlm_lock *lock;
609         ENTRY;
610
611         LASSERT(handle);
612
613         lock = class_handle2object(handle->cookie);
614         if (lock == NULL)
615                 RETURN(NULL);
616
617         /* It's unlikely but possible that someone marked the lock as
618          * destroyed after we did handle2object on it */
619         if (flags == 0 && !lock->l_destroyed) {
620                 lu_ref_add(&lock->l_reference, "handle", cfs_current());
621                 RETURN(lock);
622         }
623
624         lock_res_and_lock(lock);
625
626         LASSERT(lock->l_resource != NULL);
627
628         lu_ref_add_atomic(&lock->l_reference, "handle", cfs_current());
629         if (unlikely(lock->l_destroyed)) {
630                 unlock_res_and_lock(lock);
631                 CDEBUG(D_INFO, "lock already destroyed: lock %p\n", lock);
632                 LDLM_LOCK_PUT(lock);
633                 RETURN(NULL);
634         }
635
636         if (flags && (lock->l_flags & flags)) {
637                 unlock_res_and_lock(lock);
638                 LDLM_LOCK_PUT(lock);
639                 RETURN(NULL);
640         }
641
642         if (flags)
643                 lock->l_flags |= flags;
644
645         unlock_res_and_lock(lock);
646         RETURN(lock);
647 }
648 EXPORT_SYMBOL(__ldlm_handle2lock);
649 /** @} ldlm_handles */
650
651 /**
652  * Fill in "on the wire" representation for given LDLM lock into supplied
653  * lock descriptor \a desc structure.
654  */
655 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc)
656 {
657         struct obd_export *exp = lock->l_export ?: lock->l_conn_export;
658
659         /* INODEBITS_INTEROP: If the other side does not support
660          * inodebits, reply with a plain lock descriptor. */
661         if ((lock->l_resource->lr_type == LDLM_IBITS) &&
662             (exp && !(exp_connect_flags(exp) & OBD_CONNECT_IBITS))) {
663                 /* Make sure all the right bits are set in this lock we
664                    are going to pass to client */
665                 LASSERTF(lock->l_policy_data.l_inodebits.bits ==
666                          (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
667                           MDS_INODELOCK_LAYOUT),
668                          "Inappropriate inode lock bits during "
669                          "conversion " LPU64 "\n",
670                          lock->l_policy_data.l_inodebits.bits);
671
672                 ldlm_res2desc(lock->l_resource, &desc->l_resource);
673                 desc->l_resource.lr_type = LDLM_PLAIN;
674
675                 /* Convert "new" lock mode to something old client can
676                    understand */
677                 if ((lock->l_req_mode == LCK_CR) ||
678                     (lock->l_req_mode == LCK_CW))
679                         desc->l_req_mode = LCK_PR;
680                 else
681                         desc->l_req_mode = lock->l_req_mode;
682                 if ((lock->l_granted_mode == LCK_CR) ||
683                     (lock->l_granted_mode == LCK_CW)) {
684                         desc->l_granted_mode = LCK_PR;
685                 } else {
686                         /* We never grant PW/EX locks to clients */
687                         LASSERT((lock->l_granted_mode != LCK_PW) &&
688                                 (lock->l_granted_mode != LCK_EX));
689                         desc->l_granted_mode = lock->l_granted_mode;
690                 }
691
692                 /* We do not copy policy here, because there is no
693                    policy for plain locks */
694         } else {
695                 ldlm_res2desc(lock->l_resource, &desc->l_resource);
696                 desc->l_req_mode = lock->l_req_mode;
697                 desc->l_granted_mode = lock->l_granted_mode;
698                 ldlm_convert_policy_to_wire(lock->l_resource->lr_type,
699                                             &lock->l_policy_data,
700                                             &desc->l_policy_data);
701         }
702 }
703 EXPORT_SYMBOL(ldlm_lock2desc);
704
705 /**
706  * Add a lock to list of conflicting locks to send AST to.
707  *
708  * Only add if we have not sent a blocking AST to the lock yet.
709  */
710 void ldlm_add_bl_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
711                            cfs_list_t *work_list)
712 {
713         if ((lock->l_flags & LDLM_FL_AST_SENT) == 0) {
714                 LDLM_DEBUG(lock, "lock incompatible; sending blocking AST.");
715                 lock->l_flags |= LDLM_FL_AST_SENT;
716                 /* If the enqueuing client said so, tell the AST recipient to
717                  * discard dirty data, rather than writing back. */
718                 if (new->l_flags & LDLM_AST_DISCARD_DATA)
719                         lock->l_flags |= LDLM_FL_DISCARD_DATA;
720                 LASSERT(cfs_list_empty(&lock->l_bl_ast));
721                 cfs_list_add(&lock->l_bl_ast, work_list);
722                 LDLM_LOCK_GET(lock);
723                 LASSERT(lock->l_blocking_lock == NULL);
724                 lock->l_blocking_lock = LDLM_LOCK_GET(new);
725         }
726 }
727
728 /**
729  * Add a lock to list of just granted locks to send completion AST to.
730  */
731 void ldlm_add_cp_work_item(struct ldlm_lock *lock, cfs_list_t *work_list)
732 {
733         if ((lock->l_flags & LDLM_FL_CP_REQD) == 0) {
734                 lock->l_flags |= LDLM_FL_CP_REQD;
735                 LDLM_DEBUG(lock, "lock granted; sending completion AST.");
736                 LASSERT(cfs_list_empty(&lock->l_cp_ast));
737                 cfs_list_add(&lock->l_cp_ast, work_list);
738                 LDLM_LOCK_GET(lock);
739         }
740 }
741
742 /**
743  * Aggregator function to add AST work items into a list. Determines
744  * what sort of an AST work needs to be done and calls the proper
745  * adding function.
746  * Must be called with lr_lock held.
747  */
748 void ldlm_add_ast_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
749                             cfs_list_t *work_list)
750 {
751         ENTRY;
752         check_res_locked(lock->l_resource);
753         if (new)
754                 ldlm_add_bl_work_item(lock, new, work_list);
755         else
756                 ldlm_add_cp_work_item(lock, work_list);
757         EXIT;
758 }
759
760 /**
761  * Add specified reader/writer reference to LDLM lock with handle \a lockh.
762  * r/w reference type is determined by \a mode
763  * Calls ldlm_lock_addref_internal.
764  */
765 void ldlm_lock_addref(struct lustre_handle *lockh, __u32 mode)
766 {
767         struct ldlm_lock *lock;
768
769         lock = ldlm_handle2lock(lockh);
770         LASSERT(lock != NULL);
771         ldlm_lock_addref_internal(lock, mode);
772         LDLM_LOCK_PUT(lock);
773 }
774 EXPORT_SYMBOL(ldlm_lock_addref);
775
776 /**
777  * Helper function.
778  * Add specified reader/writer reference to LDLM lock \a lock.
779  * r/w reference type is determined by \a mode
780  * Removes lock from LRU if it is there.
781  * Assumes the LDLM lock is already locked.
782  */
783 void ldlm_lock_addref_internal_nolock(struct ldlm_lock *lock, __u32 mode)
784 {
785         ldlm_lock_remove_from_lru(lock);
786         if (mode & (LCK_NL | LCK_CR | LCK_PR)) {
787                 lock->l_readers++;
788                 lu_ref_add_atomic(&lock->l_reference, "reader", lock);
789         }
790         if (mode & (LCK_EX | LCK_CW | LCK_PW | LCK_GROUP | LCK_COS)) {
791                 lock->l_writers++;
792                 lu_ref_add_atomic(&lock->l_reference, "writer", lock);
793         }
794         LDLM_LOCK_GET(lock);
795         lu_ref_add_atomic(&lock->l_reference, "user", lock);
796         LDLM_DEBUG(lock, "ldlm_lock_addref(%s)", ldlm_lockname[mode]);
797 }
798
799 /**
800  * Attempts to add reader/writer reference to a lock with handle \a lockh, and
801  * fails if lock is already LDLM_FL_CBPENDING or destroyed.
802  *
803  * \retval 0 success, lock was addref-ed
804  *
805  * \retval -EAGAIN lock is being canceled.
806  */
807 int ldlm_lock_addref_try(struct lustre_handle *lockh, __u32 mode)
808 {
809         struct ldlm_lock *lock;
810         int               result;
811
812         result = -EAGAIN;
813         lock = ldlm_handle2lock(lockh);
814         if (lock != NULL) {
815                 lock_res_and_lock(lock);
816                 if (lock->l_readers != 0 || lock->l_writers != 0 ||
817                     !(lock->l_flags & LDLM_FL_CBPENDING)) {
818                         ldlm_lock_addref_internal_nolock(lock, mode);
819                         result = 0;
820                 }
821                 unlock_res_and_lock(lock);
822                 LDLM_LOCK_PUT(lock);
823         }
824         return result;
825 }
826 EXPORT_SYMBOL(ldlm_lock_addref_try);
827
828 /**
829  * Add specified reader/writer reference to LDLM lock \a lock.
830  * Locks LDLM lock and calls ldlm_lock_addref_internal_nolock to do the work.
831  * Only called for local locks.
832  */
833 void ldlm_lock_addref_internal(struct ldlm_lock *lock, __u32 mode)
834 {
835         lock_res_and_lock(lock);
836         ldlm_lock_addref_internal_nolock(lock, mode);
837         unlock_res_and_lock(lock);
838 }
839
840 /**
841  * Removes reader/writer reference for LDLM lock \a lock.
842  * Assumes LDLM lock is already locked.
843  * only called in ldlm_flock_destroy and for local locks.
844  * Does NOT add lock to LRU if no r/w references left to accomodate flock locks
845  * that cannot be placed in LRU.
846  */
847 void ldlm_lock_decref_internal_nolock(struct ldlm_lock *lock, __u32 mode)
848 {
849         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
850         if (mode & (LCK_NL | LCK_CR | LCK_PR)) {
851                 LASSERT(lock->l_readers > 0);
852                 lu_ref_del(&lock->l_reference, "reader", lock);
853                 lock->l_readers--;
854         }
855         if (mode & (LCK_EX | LCK_CW | LCK_PW | LCK_GROUP | LCK_COS)) {
856                 LASSERT(lock->l_writers > 0);
857                 lu_ref_del(&lock->l_reference, "writer", lock);
858                 lock->l_writers--;
859         }
860
861         lu_ref_del(&lock->l_reference, "user", lock);
862         LDLM_LOCK_RELEASE(lock);    /* matches the LDLM_LOCK_GET() in addref */
863 }
864
865 /**
866  * Removes reader/writer reference for LDLM lock \a lock.
867  * Locks LDLM lock first.
868  * If the lock is determined to be client lock on a client and r/w refcount
869  * drops to zero and the lock is not blocked, the lock is added to LRU lock
870  * on the namespace.
871  * For blocked LDLM locks if r/w count drops to zero, blocking_ast is called.
872  */
873 void ldlm_lock_decref_internal(struct ldlm_lock *lock, __u32 mode)
874 {
875         struct ldlm_namespace *ns;
876         ENTRY;
877
878         lock_res_and_lock(lock);
879
880         ns = ldlm_lock_to_ns(lock);
881
882         ldlm_lock_decref_internal_nolock(lock, mode);
883
884         if (lock->l_flags & LDLM_FL_LOCAL &&
885             !lock->l_readers && !lock->l_writers) {
886                 /* If this is a local lock on a server namespace and this was
887                  * the last reference, cancel the lock. */
888                 CDEBUG(D_INFO, "forcing cancel of local lock\n");
889                 lock->l_flags |= LDLM_FL_CBPENDING;
890         }
891
892         if (!lock->l_readers && !lock->l_writers &&
893             (lock->l_flags & LDLM_FL_CBPENDING)) {
894                 /* If we received a blocked AST and this was the last reference,
895                  * run the callback. */
896                 if (lock->l_ns_srv && lock->l_export)
897                         CERROR("FL_CBPENDING set on non-local lock--just a "
898                                "warning\n");
899
900                 LDLM_DEBUG(lock, "final decref done on cbpending lock");
901
902                 LDLM_LOCK_GET(lock); /* dropped by bl thread */
903                 ldlm_lock_remove_from_lru(lock);
904                 unlock_res_and_lock(lock);
905
906                 if (lock->l_flags & LDLM_FL_FAIL_LOC)
907                         OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
908
909                 if ((lock->l_flags & LDLM_FL_ATOMIC_CB) ||
910                     ldlm_bl_to_thread_lock(ns, NULL, lock) != 0)
911                         ldlm_handle_bl_callback(ns, NULL, lock);
912         } else if (ns_is_client(ns) &&
913                    !lock->l_readers && !lock->l_writers &&
914                    !(lock->l_flags & LDLM_FL_NO_LRU) &&
915                    !(lock->l_flags & LDLM_FL_BL_AST)) {
916
917                 LDLM_DEBUG(lock, "add lock into lru list");
918
919                 /* If this is a client-side namespace and this was the last
920                  * reference, put it on the LRU. */
921                 ldlm_lock_add_to_lru(lock);
922                 unlock_res_and_lock(lock);
923
924                 if (lock->l_flags & LDLM_FL_FAIL_LOC)
925                         OBD_RACE(OBD_FAIL_LDLM_CP_BL_RACE);
926
927                 /* Call ldlm_cancel_lru() only if EARLY_CANCEL and LRU RESIZE
928                  * are not supported by the server, otherwise, it is done on
929                  * enqueue. */
930                 if (!exp_connect_cancelset(lock->l_conn_export) &&
931                     !ns_connect_lru_resize(ns))
932                         ldlm_cancel_lru(ns, 0, LCF_ASYNC, 0);
933         } else {
934                 LDLM_DEBUG(lock, "do not add lock into lru list");
935                 unlock_res_and_lock(lock);
936         }
937
938         EXIT;
939 }
940
941 /**
942  * Decrease reader/writer refcount for LDLM lock with handle \a lockh
943  */
944 void ldlm_lock_decref(struct lustre_handle *lockh, __u32 mode)
945 {
946         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
947         LASSERTF(lock != NULL, "Non-existing lock: "LPX64"\n", lockh->cookie);
948         ldlm_lock_decref_internal(lock, mode);
949         LDLM_LOCK_PUT(lock);
950 }
951 EXPORT_SYMBOL(ldlm_lock_decref);
952
953 /**
954  * Decrease reader/writer refcount for LDLM lock with handle
955  * \a lockh and mark it for subsequent cancellation once r/w refcount
956  * drops to zero instead of putting into LRU.
957  *
958  * Typical usage is for GROUP locks which we cannot allow to be cached.
959  */
960 void ldlm_lock_decref_and_cancel(struct lustre_handle *lockh, __u32 mode)
961 {
962         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
963         ENTRY;
964
965         LASSERT(lock != NULL);
966
967         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
968         lock_res_and_lock(lock);
969         lock->l_flags |= LDLM_FL_CBPENDING;
970         unlock_res_and_lock(lock);
971         ldlm_lock_decref_internal(lock, mode);
972         LDLM_LOCK_PUT(lock);
973 }
974 EXPORT_SYMBOL(ldlm_lock_decref_and_cancel);
975
976 struct sl_insert_point {
977         cfs_list_t *res_link;
978         cfs_list_t *mode_link;
979         cfs_list_t *policy_link;
980 };
981
982 /**
983  * Finds a position to insert the new lock into granted lock list.
984  *
985  * Used for locks eligible for skiplist optimization.
986  *
987  * Parameters:
988  *      queue [input]:  the granted list where search acts on;
989  *      req [input]:    the lock whose position to be located;
990  *      prev [output]:  positions within 3 lists to insert @req to
991  * Return Value:
992  *      filled @prev
993  * NOTE: called by
994  *  - ldlm_grant_lock_with_skiplist
995  */
996 static void search_granted_lock(cfs_list_t *queue,
997                                 struct ldlm_lock *req,
998                                 struct sl_insert_point *prev)
999 {
1000         cfs_list_t *tmp;
1001         struct ldlm_lock *lock, *mode_end, *policy_end;
1002         ENTRY;
1003
1004         cfs_list_for_each(tmp, queue) {
1005                 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
1006
1007                 mode_end = cfs_list_entry(lock->l_sl_mode.prev,
1008                                           struct ldlm_lock, l_sl_mode);
1009
1010                 if (lock->l_req_mode != req->l_req_mode) {
1011                         /* jump to last lock of mode group */
1012                         tmp = &mode_end->l_res_link;
1013                         continue;
1014                 }
1015
1016                 /* suitable mode group is found */
1017                 if (lock->l_resource->lr_type == LDLM_PLAIN) {
1018                         /* insert point is last lock of the mode group */
1019                         prev->res_link = &mode_end->l_res_link;
1020                         prev->mode_link = &mode_end->l_sl_mode;
1021                         prev->policy_link = &req->l_sl_policy;
1022                         EXIT;
1023                         return;
1024                 } else if (lock->l_resource->lr_type == LDLM_IBITS) {
1025                         for (;;) {
1026                                 policy_end =
1027                                         cfs_list_entry(lock->l_sl_policy.prev,
1028                                                        struct ldlm_lock,
1029                                                        l_sl_policy);
1030
1031                                 if (lock->l_policy_data.l_inodebits.bits ==
1032                                     req->l_policy_data.l_inodebits.bits) {
1033                                         /* insert point is last lock of
1034                                          * the policy group */
1035                                         prev->res_link =
1036                                                 &policy_end->l_res_link;
1037                                         prev->mode_link =
1038                                                 &policy_end->l_sl_mode;
1039                                         prev->policy_link =
1040                                                 &policy_end->l_sl_policy;
1041                                         EXIT;
1042                                         return;
1043                                 }
1044
1045                                 if (policy_end == mode_end)
1046                                         /* done with mode group */
1047                                         break;
1048
1049                                 /* go to next policy group within mode group */
1050                                 tmp = policy_end->l_res_link.next;
1051                                 lock = cfs_list_entry(tmp, struct ldlm_lock,
1052                                                       l_res_link);
1053                         }  /* loop over policy groups within the mode group */
1054
1055                         /* insert point is last lock of the mode group,
1056                          * new policy group is started */
1057                         prev->res_link = &mode_end->l_res_link;
1058                         prev->mode_link = &mode_end->l_sl_mode;
1059                         prev->policy_link = &req->l_sl_policy;
1060                         EXIT;
1061                         return;
1062                 } else {
1063                         LDLM_ERROR(lock,"is not LDLM_PLAIN or LDLM_IBITS lock");
1064                         LBUG();
1065                 }
1066         }
1067
1068         /* insert point is last lock on the queue,
1069          * new mode group and new policy group are started */
1070         prev->res_link = queue->prev;
1071         prev->mode_link = &req->l_sl_mode;
1072         prev->policy_link = &req->l_sl_policy;
1073         EXIT;
1074         return;
1075 }
1076
1077 /**
1078  * Add a lock into resource granted list after a position described by
1079  * \a prev.
1080  */
1081 static void ldlm_granted_list_add_lock(struct ldlm_lock *lock,
1082                                        struct sl_insert_point *prev)
1083 {
1084         struct ldlm_resource *res = lock->l_resource;
1085         ENTRY;
1086
1087         check_res_locked(res);
1088
1089         ldlm_resource_dump(D_INFO, res);
1090         LDLM_DEBUG(lock, "About to add lock:");
1091
1092         if (lock->l_destroyed) {
1093                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
1094                 return;
1095         }
1096
1097         LASSERT(cfs_list_empty(&lock->l_res_link));
1098         LASSERT(cfs_list_empty(&lock->l_sl_mode));
1099         LASSERT(cfs_list_empty(&lock->l_sl_policy));
1100
1101         /*
1102          * lock->link == prev->link means lock is first starting the group.
1103          * Don't re-add to itself to suppress kernel warnings.
1104          */
1105         if (&lock->l_res_link != prev->res_link)
1106                 cfs_list_add(&lock->l_res_link, prev->res_link);
1107         if (&lock->l_sl_mode != prev->mode_link)
1108                 cfs_list_add(&lock->l_sl_mode, prev->mode_link);
1109         if (&lock->l_sl_policy != prev->policy_link)
1110                 cfs_list_add(&lock->l_sl_policy, prev->policy_link);
1111
1112         EXIT;
1113 }
1114
1115 /**
1116  * Add a lock to granted list on a resource maintaining skiplist
1117  * correctness.
1118  */
1119 static void ldlm_grant_lock_with_skiplist(struct ldlm_lock *lock)
1120 {
1121         struct sl_insert_point prev;
1122         ENTRY;
1123
1124         LASSERT(lock->l_req_mode == lock->l_granted_mode);
1125
1126         search_granted_lock(&lock->l_resource->lr_granted, lock, &prev);
1127         ldlm_granted_list_add_lock(lock, &prev);
1128         EXIT;
1129 }
1130
1131 /**
1132  * Perform lock granting bookkeeping.
1133  *
1134  * Includes putting the lock into granted list and updating lock mode.
1135  * NOTE: called by
1136  *  - ldlm_lock_enqueue
1137  *  - ldlm_reprocess_queue
1138  *  - ldlm_lock_convert
1139  *
1140  * must be called with lr_lock held
1141  */
1142 void ldlm_grant_lock(struct ldlm_lock *lock, cfs_list_t *work_list)
1143 {
1144         struct ldlm_resource *res = lock->l_resource;
1145         ENTRY;
1146
1147         check_res_locked(res);
1148
1149         lock->l_granted_mode = lock->l_req_mode;
1150         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS)
1151                 ldlm_grant_lock_with_skiplist(lock);
1152         else if (res->lr_type == LDLM_EXTENT)
1153                 ldlm_extent_add_lock(res, lock);
1154         else
1155                 ldlm_resource_add_lock(res, &res->lr_granted, lock);
1156
1157         if (lock->l_granted_mode < res->lr_most_restr)
1158                 res->lr_most_restr = lock->l_granted_mode;
1159
1160         if (work_list && lock->l_completion_ast != NULL)
1161                 ldlm_add_ast_work_item(lock, NULL, work_list);
1162
1163         ldlm_pool_add(&ldlm_res_to_ns(res)->ns_pool, lock);
1164         EXIT;
1165 }
1166
1167 /**
1168  * Search for a lock with given properties in a queue.
1169  *
1170  * \retval a referenced lock or NULL.  See the flag descriptions below, in the
1171  * comment above ldlm_lock_match
1172  */
1173 static struct ldlm_lock *search_queue(cfs_list_t *queue,
1174                                       ldlm_mode_t *mode,
1175                                       ldlm_policy_data_t *policy,
1176                                       struct ldlm_lock *old_lock,
1177                                       __u64 flags, int unref)
1178 {
1179         struct ldlm_lock *lock;
1180         cfs_list_t       *tmp;
1181
1182         cfs_list_for_each(tmp, queue) {
1183                 ldlm_mode_t match;
1184
1185                 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
1186
1187                 if (lock == old_lock)
1188                         break;
1189
1190                 /* llite sometimes wants to match locks that will be
1191                  * canceled when their users drop, but we allow it to match
1192                  * if it passes in CBPENDING and the lock still has users.
1193                  * this is generally only going to be used by children
1194                  * whose parents already hold a lock so forward progress
1195                  * can still happen. */
1196                 if (lock->l_flags & LDLM_FL_CBPENDING &&
1197                     !(flags & LDLM_FL_CBPENDING))
1198                         continue;
1199                 if (!unref && lock->l_flags & LDLM_FL_CBPENDING &&
1200                     lock->l_readers == 0 && lock->l_writers == 0)
1201                         continue;
1202
1203                 if (!(lock->l_req_mode & *mode))
1204                         continue;
1205                 match = lock->l_req_mode;
1206
1207                 if (lock->l_resource->lr_type == LDLM_EXTENT &&
1208                     (lock->l_policy_data.l_extent.start >
1209                      policy->l_extent.start ||
1210                      lock->l_policy_data.l_extent.end < policy->l_extent.end))
1211                         continue;
1212
1213                 if (unlikely(match == LCK_GROUP) &&
1214                     lock->l_resource->lr_type == LDLM_EXTENT &&
1215                     lock->l_policy_data.l_extent.gid != policy->l_extent.gid)
1216                         continue;
1217
1218                 /* We match if we have existing lock with same or wider set
1219                    of bits. */
1220                 if (lock->l_resource->lr_type == LDLM_IBITS &&
1221                      ((lock->l_policy_data.l_inodebits.bits &
1222                       policy->l_inodebits.bits) !=
1223                       policy->l_inodebits.bits))
1224                         continue;
1225
1226                 if (!unref &&
1227                     (lock->l_destroyed || lock->l_flags & LDLM_FL_FAILED ||
1228                      lock->l_failed))
1229                         continue;
1230
1231                 if ((flags & LDLM_FL_LOCAL_ONLY) &&
1232                     !(lock->l_flags & LDLM_FL_LOCAL))
1233                         continue;
1234
1235                 if (flags & LDLM_FL_TEST_LOCK) {
1236                         LDLM_LOCK_GET(lock);
1237                         ldlm_lock_touch_in_lru(lock);
1238                 } else {
1239                         ldlm_lock_addref_internal_nolock(lock, match);
1240                 }
1241                 *mode = match;
1242                 return lock;
1243         }
1244
1245         return NULL;
1246 }
1247
1248 void ldlm_lock_fail_match_locked(struct ldlm_lock *lock)
1249 {
1250         if (!lock->l_failed) {
1251                 lock->l_failed = 1;
1252                 cfs_waitq_broadcast(&lock->l_waitq);
1253         }
1254 }
1255 EXPORT_SYMBOL(ldlm_lock_fail_match_locked);
1256
1257 void ldlm_lock_fail_match(struct ldlm_lock *lock)
1258 {
1259         lock_res_and_lock(lock);
1260         ldlm_lock_fail_match_locked(lock);
1261         unlock_res_and_lock(lock);
1262 }
1263 EXPORT_SYMBOL(ldlm_lock_fail_match);
1264
1265 /**
1266  * Mark lock as "matchable" by OST.
1267  *
1268  * Used to prevent certain races in LOV/OSC where the lock is granted, but LVB
1269  * is not yet valid.
1270  * Assumes LDLM lock is already locked.
1271  */
1272 void ldlm_lock_allow_match_locked(struct ldlm_lock *lock)
1273 {
1274         lock->l_flags |= LDLM_FL_LVB_READY;
1275         cfs_waitq_broadcast(&lock->l_waitq);
1276 }
1277 EXPORT_SYMBOL(ldlm_lock_allow_match_locked);
1278
1279 /**
1280  * Mark lock as "matchable" by OST.
1281  * Locks the lock and then \see ldlm_lock_allow_match_locked
1282  */
1283 void ldlm_lock_allow_match(struct ldlm_lock *lock)
1284 {
1285         lock_res_and_lock(lock);
1286         ldlm_lock_allow_match_locked(lock);
1287         unlock_res_and_lock(lock);
1288 }
1289 EXPORT_SYMBOL(ldlm_lock_allow_match);
1290
1291 /**
1292  * Attempt to find a lock with specified properties.
1293  *
1294  * Typically returns a reference to matched lock unless LDLM_FL_TEST_LOCK is
1295  * set in \a flags
1296  *
1297  * Can be called in two ways:
1298  *
1299  * If 'ns' is NULL, then lockh describes an existing lock that we want to look
1300  * for a duplicate of.
1301  *
1302  * Otherwise, all of the fields must be filled in, to match against.
1303  *
1304  * If 'flags' contains LDLM_FL_LOCAL_ONLY, then only match local locks on the
1305  *     server (ie, connh is NULL)
1306  * If 'flags' contains LDLM_FL_BLOCK_GRANTED, then only locks on the granted
1307  *     list will be considered
1308  * If 'flags' contains LDLM_FL_CBPENDING, then locks that have been marked
1309  *     to be canceled can still be matched as long as they still have reader
1310  *     or writer refernces
1311  * If 'flags' contains LDLM_FL_TEST_LOCK, then don't actually reference a lock,
1312  *     just tell us if we would have matched.
1313  *
1314  * \retval 1 if it finds an already-existing lock that is compatible; in this
1315  * case, lockh is filled in with a addref()ed lock
1316  *
1317  * We also check security context, and if that fails we simply return 0 (to
1318  * keep caller code unchanged), the context failure will be discovered by
1319  * caller sometime later.
1320  */
1321 ldlm_mode_t ldlm_lock_match(struct ldlm_namespace *ns, __u64 flags,
1322                             const struct ldlm_res_id *res_id, ldlm_type_t type,
1323                             ldlm_policy_data_t *policy, ldlm_mode_t mode,
1324                             struct lustre_handle *lockh, int unref)
1325 {
1326         struct ldlm_resource *res;
1327         struct ldlm_lock *lock, *old_lock = NULL;
1328         int rc = 0;
1329         ENTRY;
1330
1331         if (ns == NULL) {
1332                 old_lock = ldlm_handle2lock(lockh);
1333                 LASSERT(old_lock);
1334
1335                 ns = ldlm_lock_to_ns(old_lock);
1336                 res_id = &old_lock->l_resource->lr_name;
1337                 type = old_lock->l_resource->lr_type;
1338                 mode = old_lock->l_req_mode;
1339         }
1340
1341         res = ldlm_resource_get(ns, NULL, res_id, type, 0);
1342         if (res == NULL) {
1343                 LASSERT(old_lock == NULL);
1344                 RETURN(0);
1345         }
1346
1347         LDLM_RESOURCE_ADDREF(res);
1348         lock_res(res);
1349
1350         lock = search_queue(&res->lr_granted, &mode, policy, old_lock,
1351                             flags, unref);
1352         if (lock != NULL)
1353                 GOTO(out, rc = 1);
1354         if (flags & LDLM_FL_BLOCK_GRANTED)
1355                 GOTO(out, rc = 0);
1356         lock = search_queue(&res->lr_converting, &mode, policy, old_lock,
1357                             flags, unref);
1358         if (lock != NULL)
1359                 GOTO(out, rc = 1);
1360         lock = search_queue(&res->lr_waiting, &mode, policy, old_lock,
1361                             flags, unref);
1362         if (lock != NULL)
1363                 GOTO(out, rc = 1);
1364
1365         EXIT;
1366  out:
1367         unlock_res(res);
1368         LDLM_RESOURCE_DELREF(res);
1369         ldlm_resource_putref(res);
1370
1371         if (lock) {
1372                 ldlm_lock2handle(lock, lockh);
1373                 if ((flags & LDLM_FL_LVB_READY) &&
1374                     (!(lock->l_flags & LDLM_FL_LVB_READY))) {
1375                         struct l_wait_info lwi;
1376                         if (lock->l_completion_ast) {
1377                                 int err = lock->l_completion_ast(lock,
1378                                                           LDLM_FL_WAIT_NOREPROC,
1379                                                                  NULL);
1380                                 if (err) {
1381                                         if (flags & LDLM_FL_TEST_LOCK)
1382                                                 LDLM_LOCK_RELEASE(lock);
1383                                         else
1384                                                 ldlm_lock_decref_internal(lock,
1385                                                                           mode);
1386                                         rc = 0;
1387                                         goto out2;
1388                                 }
1389                         }
1390
1391                         lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(obd_timeout),
1392                                                NULL, LWI_ON_SIGNAL_NOOP, NULL);
1393
1394                         /* XXX FIXME see comment on CAN_MATCH in lustre_dlm.h */
1395                         l_wait_event(lock->l_waitq,
1396                                      lock->l_flags & LDLM_FL_LVB_READY ||
1397                                      lock->l_destroyed || lock->l_failed,
1398                                      &lwi);
1399                         if (!(lock->l_flags & LDLM_FL_LVB_READY)) {
1400                                 if (flags & LDLM_FL_TEST_LOCK)
1401                                         LDLM_LOCK_RELEASE(lock);
1402                                 else
1403                                         ldlm_lock_decref_internal(lock, mode);
1404                                 rc = 0;
1405                         }
1406                 }
1407         }
1408  out2:
1409         if (rc) {
1410                 LDLM_DEBUG(lock, "matched ("LPU64" "LPU64")",
1411                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1412                                 res_id->name[2] : policy->l_extent.start,
1413                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1414                                 res_id->name[3] : policy->l_extent.end);
1415
1416                 /* check user's security context */
1417                 if (lock->l_conn_export &&
1418                     sptlrpc_import_check_ctx(
1419                                 class_exp2cliimp(lock->l_conn_export))) {
1420                         if (!(flags & LDLM_FL_TEST_LOCK))
1421                                 ldlm_lock_decref_internal(lock, mode);
1422                         rc = 0;
1423                 }
1424
1425                 if (flags & LDLM_FL_TEST_LOCK)
1426                         LDLM_LOCK_RELEASE(lock);
1427
1428         } else if (!(flags & LDLM_FL_TEST_LOCK)) {/*less verbose for test-only*/
1429                 LDLM_DEBUG_NOLOCK("not matched ns %p type %u mode %u res "
1430                                   LPU64"/"LPU64" ("LPU64" "LPU64")", ns,
1431                                   type, mode, res_id->name[0], res_id->name[1],
1432                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1433                                         res_id->name[2] :policy->l_extent.start,
1434                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1435                                         res_id->name[3] : policy->l_extent.end);
1436         }
1437         if (old_lock)
1438                 LDLM_LOCK_PUT(old_lock);
1439
1440         return rc ? mode : 0;
1441 }
1442 EXPORT_SYMBOL(ldlm_lock_match);
1443
1444 ldlm_mode_t ldlm_revalidate_lock_handle(struct lustre_handle *lockh,
1445                                         __u64 *bits)
1446 {
1447         struct ldlm_lock *lock;
1448         ldlm_mode_t mode = 0;
1449         ENTRY;
1450
1451         lock = ldlm_handle2lock(lockh);
1452         if (lock != NULL) {
1453                 lock_res_and_lock(lock);
1454                 if (lock->l_destroyed || lock->l_flags & LDLM_FL_FAILED ||
1455                     lock->l_failed)
1456                         GOTO(out, mode);
1457
1458                 if (lock->l_flags & LDLM_FL_CBPENDING &&
1459                     lock->l_readers == 0 && lock->l_writers == 0)
1460                         GOTO(out, mode);
1461
1462                 if (bits)
1463                         *bits = lock->l_policy_data.l_inodebits.bits;
1464                 mode = lock->l_granted_mode;
1465                 ldlm_lock_addref_internal_nolock(lock, mode);
1466         }
1467
1468         EXIT;
1469
1470 out:
1471         if (lock != NULL) {
1472                 unlock_res_and_lock(lock);
1473                 LDLM_LOCK_PUT(lock);
1474         }
1475         return mode;
1476 }
1477 EXPORT_SYMBOL(ldlm_revalidate_lock_handle);
1478
1479 /** The caller must guarantee that the buffer is large enough. */
1480 int ldlm_fill_lvb(struct ldlm_lock *lock, struct req_capsule *pill,
1481                   enum req_location loc, void *data, int size)
1482 {
1483         void *lvb;
1484         ENTRY;
1485
1486         LASSERT(data != NULL);
1487         LASSERT(size >= 0);
1488
1489         switch (lock->l_lvb_type) {
1490         case LVB_T_OST:
1491                 if (size == sizeof(struct ost_lvb)) {
1492                         if (loc == RCL_CLIENT)
1493                                 lvb = req_capsule_client_swab_get(pill,
1494                                                 &RMF_DLM_LVB,
1495                                                 lustre_swab_ost_lvb);
1496                         else
1497                                 lvb = req_capsule_server_swab_get(pill,
1498                                                 &RMF_DLM_LVB,
1499                                                 lustre_swab_ost_lvb);
1500                         if (unlikely(lvb == NULL)) {
1501                                 LDLM_ERROR(lock, "no LVB");
1502                                 RETURN(-EPROTO);
1503                         }
1504
1505                         memcpy(data, lvb, size);
1506                 } else if (size == sizeof(struct ost_lvb_v1)) {
1507                         struct ost_lvb *olvb = data;
1508
1509                         if (loc == RCL_CLIENT)
1510                                 lvb = req_capsule_client_swab_get(pill,
1511                                                 &RMF_DLM_LVB,
1512                                                 lustre_swab_ost_lvb_v1);
1513                         else
1514                                 lvb = req_capsule_server_sized_swab_get(pill,
1515                                                 &RMF_DLM_LVB, size,
1516                                                 lustre_swab_ost_lvb_v1);
1517                         if (unlikely(lvb == NULL)) {
1518                                 LDLM_ERROR(lock, "no LVB");
1519                                 RETURN(-EPROTO);
1520                         }
1521
1522                         memcpy(data, lvb, size);
1523                         olvb->lvb_mtime_ns = 0;
1524                         olvb->lvb_atime_ns = 0;
1525                         olvb->lvb_ctime_ns = 0;
1526                 } else {
1527                         LDLM_ERROR(lock, "Replied unexpected ost LVB size %d",
1528                                    size);
1529                         RETURN(-EINVAL);
1530                 }
1531                 break;
1532         case LVB_T_LQUOTA:
1533                 if (size == sizeof(struct lquota_lvb)) {
1534                         if (loc == RCL_CLIENT)
1535                                 lvb = req_capsule_client_swab_get(pill,
1536                                                 &RMF_DLM_LVB,
1537                                                 lustre_swab_lquota_lvb);
1538                         else
1539                                 lvb = req_capsule_server_swab_get(pill,
1540                                                 &RMF_DLM_LVB,
1541                                                 lustre_swab_lquota_lvb);
1542                         if (unlikely(lvb == NULL)) {
1543                                 LDLM_ERROR(lock, "no LVB");
1544                                 RETURN(-EPROTO);
1545                         }
1546
1547                         memcpy(data, lvb, size);
1548                 } else {
1549                         LDLM_ERROR(lock, "Replied unexpected lquota LVB size %d",
1550                                    size);
1551                         RETURN(-EINVAL);
1552                 }
1553                 break;
1554         case LVB_T_LAYOUT:
1555                 if (size == 0)
1556                         break;
1557
1558                 if (loc == RCL_CLIENT)
1559                         lvb = req_capsule_client_get(pill, &RMF_DLM_LVB);
1560                 else
1561                         lvb = req_capsule_server_get(pill, &RMF_DLM_LVB);
1562                 if (unlikely(lvb == NULL)) {
1563                         LDLM_ERROR(lock, "no LVB");
1564                         RETURN(-EPROTO);
1565                 }
1566
1567                 memcpy(data, lvb, size);
1568                 break;
1569         default:
1570                 LDLM_ERROR(lock, "Unknown LVB type: %d\n", lock->l_lvb_type);
1571                 libcfs_debug_dumpstack(NULL);
1572                 RETURN(-EINVAL);
1573         }
1574
1575         RETURN(0);
1576 }
1577
1578 /**
1579  * Create and fill in new LDLM lock with specified properties.
1580  * Returns a referenced lock
1581  */
1582 struct ldlm_lock *ldlm_lock_create(struct ldlm_namespace *ns,
1583                                    const struct ldlm_res_id *res_id,
1584                                    ldlm_type_t type,
1585                                    ldlm_mode_t mode,
1586                                    const struct ldlm_callback_suite *cbs,
1587                                    void *data, __u32 lvb_len,
1588                                    enum lvb_type lvb_type)
1589 {
1590         struct ldlm_lock *lock;
1591         struct ldlm_resource *res;
1592         ENTRY;
1593
1594         res = ldlm_resource_get(ns, NULL, res_id, type, 1);
1595         if (res == NULL)
1596                 RETURN(NULL);
1597
1598         lock = ldlm_lock_new(res);
1599
1600         if (lock == NULL)
1601                 RETURN(NULL);
1602
1603         lock->l_req_mode = mode;
1604         lock->l_ast_data = data;
1605         lock->l_pid = cfs_curproc_pid();
1606         lock->l_ns_srv = !!ns_is_server(ns);
1607         if (cbs) {
1608                 lock->l_blocking_ast = cbs->lcs_blocking;
1609                 lock->l_completion_ast = cbs->lcs_completion;
1610                 lock->l_glimpse_ast = cbs->lcs_glimpse;
1611                 lock->l_weigh_ast = cbs->lcs_weigh;
1612         }
1613
1614         lock->l_tree_node = NULL;
1615         /* if this is the extent lock, allocate the interval tree node */
1616         if (type == LDLM_EXTENT) {
1617                 if (ldlm_interval_alloc(lock) == NULL)
1618                         GOTO(out, 0);
1619         }
1620
1621         if (lvb_len) {
1622                 lock->l_lvb_len = lvb_len;
1623                 OBD_ALLOC(lock->l_lvb_data, lvb_len);
1624                 if (lock->l_lvb_data == NULL)
1625                         GOTO(out, 0);
1626         }
1627
1628         lock->l_lvb_type = lvb_type;
1629         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_NEW_LOCK))
1630                 GOTO(out, 0);
1631
1632         RETURN(lock);
1633
1634 out:
1635         ldlm_lock_destroy(lock);
1636         LDLM_LOCK_RELEASE(lock);
1637         return NULL;
1638 }
1639
1640 /**
1641  * Enqueue (request) a lock.
1642  *
1643  * Does not block. As a result of enqueue the lock would be put
1644  * into granted or waiting list.
1645  *
1646  * If namespace has intent policy sent and the lock has LDLM_FL_HAS_INTENT flag
1647  * set, skip all the enqueueing and delegate lock processing to intent policy
1648  * function.
1649  */
1650 ldlm_error_t ldlm_lock_enqueue(struct ldlm_namespace *ns,
1651                                struct ldlm_lock **lockp,
1652                                void *cookie, __u64 *flags)
1653 {
1654         struct ldlm_lock *lock = *lockp;
1655         struct ldlm_resource *res = lock->l_resource;
1656         int local = ns_is_client(ldlm_res_to_ns(res));
1657 #ifdef HAVE_SERVER_SUPPORT
1658         ldlm_processing_policy policy;
1659 #endif
1660         ldlm_error_t rc = ELDLM_OK;
1661         struct ldlm_interval *node = NULL;
1662         ENTRY;
1663
1664         lock->l_last_activity = cfs_time_current_sec();
1665         /* policies are not executed on the client or during replay */
1666         if ((*flags & (LDLM_FL_HAS_INTENT|LDLM_FL_REPLAY)) == LDLM_FL_HAS_INTENT
1667             && !local && ns->ns_policy) {
1668                 rc = ns->ns_policy(ns, lockp, cookie, lock->l_req_mode, *flags,
1669                                    NULL);
1670                 if (rc == ELDLM_LOCK_REPLACED) {
1671                         /* The lock that was returned has already been granted,
1672                          * and placed into lockp.  If it's not the same as the
1673                          * one we passed in, then destroy the old one and our
1674                          * work here is done. */
1675                         if (lock != *lockp) {
1676                                 ldlm_lock_destroy(lock);
1677                                 LDLM_LOCK_RELEASE(lock);
1678                         }
1679                         *flags |= LDLM_FL_LOCK_CHANGED;
1680                         RETURN(0);
1681                 } else if (rc != ELDLM_OK ||
1682                            (rc == ELDLM_OK && (*flags & LDLM_FL_INTENT_ONLY))) {
1683                         ldlm_lock_destroy(lock);
1684                         RETURN(rc);
1685                 }
1686         }
1687
1688         /* For a replaying lock, it might be already in granted list. So
1689          * unlinking the lock will cause the interval node to be freed, we
1690          * have to allocate the interval node early otherwise we can't regrant
1691          * this lock in the future. - jay */
1692         if (!local && (*flags & LDLM_FL_REPLAY) && res->lr_type == LDLM_EXTENT)
1693                 OBD_SLAB_ALLOC_PTR_GFP(node, ldlm_interval_slab, CFS_ALLOC_IO);
1694
1695         lock_res_and_lock(lock);
1696         if (local && lock->l_req_mode == lock->l_granted_mode) {
1697                 /* The server returned a blocked lock, but it was granted
1698                  * before we got a chance to actually enqueue it.  We don't
1699                  * need to do anything else. */
1700                 *flags &= ~(LDLM_FL_BLOCK_GRANTED |
1701                             LDLM_FL_BLOCK_CONV | LDLM_FL_BLOCK_WAIT);
1702                 GOTO(out, ELDLM_OK);
1703         }
1704
1705         ldlm_resource_unlink_lock(lock);
1706         if (res->lr_type == LDLM_EXTENT && lock->l_tree_node == NULL) {
1707                 if (node == NULL) {
1708                         ldlm_lock_destroy_nolock(lock);
1709                         GOTO(out, rc = -ENOMEM);
1710                 }
1711
1712                 CFS_INIT_LIST_HEAD(&node->li_group);
1713                 ldlm_interval_attach(node, lock);
1714                 node = NULL;
1715         }
1716
1717         /* Some flags from the enqueue want to make it into the AST, via the
1718          * lock's l_flags. */
1719         lock->l_flags |= *flags & LDLM_AST_DISCARD_DATA;
1720
1721         /* This distinction between local lock trees is very important; a client
1722          * namespace only has information about locks taken by that client, and
1723          * thus doesn't have enough information to decide for itself if it can
1724          * be granted (below).  In this case, we do exactly what the server
1725          * tells us to do, as dictated by the 'flags'.
1726          *
1727          * We do exactly the same thing during recovery, when the server is
1728          * more or less trusting the clients not to lie.
1729          *
1730          * FIXME (bug 268): Detect obvious lies by checking compatibility in
1731          * granted/converting queues. */
1732         if (local) {
1733                 if (*flags & LDLM_FL_BLOCK_CONV)
1734                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1735                 else if (*flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED))
1736                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1737                 else
1738                         ldlm_grant_lock(lock, NULL);
1739                 GOTO(out, ELDLM_OK);
1740 #ifdef HAVE_SERVER_SUPPORT
1741         } else if (*flags & LDLM_FL_REPLAY) {
1742                 if (*flags & LDLM_FL_BLOCK_CONV) {
1743                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1744                         GOTO(out, ELDLM_OK);
1745                 } else if (*flags & LDLM_FL_BLOCK_WAIT) {
1746                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1747                         GOTO(out, ELDLM_OK);
1748                 } else if (*flags & LDLM_FL_BLOCK_GRANTED) {
1749                         ldlm_grant_lock(lock, NULL);
1750                         GOTO(out, ELDLM_OK);
1751                 }
1752                 /* If no flags, fall through to normal enqueue path. */
1753         }
1754
1755         policy = ldlm_processing_policy_table[res->lr_type];
1756         policy(lock, flags, 1, &rc, NULL);
1757         GOTO(out, rc);
1758 #else
1759         } else {
1760                 CERROR("This is client-side-only module, cannot handle "
1761                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
1762                 LBUG();
1763         }
1764 #endif
1765
1766 out:
1767         unlock_res_and_lock(lock);
1768         if (node)
1769                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
1770         return rc;
1771 }
1772
1773 #ifdef HAVE_SERVER_SUPPORT
1774 /**
1775  * Iterate through all waiting locks on a given resource queue and attempt to
1776  * grant them.
1777  *
1778  * Must be called with resource lock held.
1779  */
1780 int ldlm_reprocess_queue(struct ldlm_resource *res, cfs_list_t *queue,
1781                          cfs_list_t *work_list)
1782 {
1783         cfs_list_t *tmp, *pos;
1784         ldlm_processing_policy policy;
1785         __u64 flags;
1786         int rc = LDLM_ITER_CONTINUE;
1787         ldlm_error_t err;
1788         ENTRY;
1789
1790         check_res_locked(res);
1791
1792         policy = ldlm_processing_policy_table[res->lr_type];
1793         LASSERT(policy);
1794
1795         cfs_list_for_each_safe(tmp, pos, queue) {
1796                 struct ldlm_lock *pending;
1797                 pending = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
1798
1799                 CDEBUG(D_INFO, "Reprocessing lock %p\n", pending);
1800
1801                 flags = 0;
1802                 rc = policy(pending, &flags, 0, &err, work_list);
1803                 if (rc != LDLM_ITER_CONTINUE)
1804                         break;
1805         }
1806
1807         RETURN(rc);
1808 }
1809 #endif
1810
1811 /**
1812  * Process a call to blocking AST callback for a lock in ast_work list
1813  */
1814 static int
1815 ldlm_work_bl_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1816 {
1817         struct ldlm_cb_set_arg *arg = opaq;
1818         struct ldlm_lock_desc   d;
1819         int                     rc;
1820         struct ldlm_lock       *lock;
1821         ENTRY;
1822
1823         if (cfs_list_empty(arg->list))
1824                 RETURN(-ENOENT);
1825
1826         lock = cfs_list_entry(arg->list->next, struct ldlm_lock, l_bl_ast);
1827
1828         /* nobody should touch l_bl_ast */
1829         lock_res_and_lock(lock);
1830         cfs_list_del_init(&lock->l_bl_ast);
1831
1832         LASSERT(lock->l_flags & LDLM_FL_AST_SENT);
1833         LASSERT(lock->l_bl_ast_run == 0);
1834         LASSERT(lock->l_blocking_lock);
1835         lock->l_bl_ast_run++;
1836         unlock_res_and_lock(lock);
1837
1838         ldlm_lock2desc(lock->l_blocking_lock, &d);
1839
1840         rc = lock->l_blocking_ast(lock, &d, (void *)arg, LDLM_CB_BLOCKING);
1841         LDLM_LOCK_RELEASE(lock->l_blocking_lock);
1842         lock->l_blocking_lock = NULL;
1843         LDLM_LOCK_RELEASE(lock);
1844
1845         RETURN(rc);
1846 }
1847
1848 /**
1849  * Process a call to completion AST callback for a lock in ast_work list
1850  */
1851 static int
1852 ldlm_work_cp_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1853 {
1854         struct ldlm_cb_set_arg  *arg = opaq;
1855         int                      rc = 0;
1856         struct ldlm_lock        *lock;
1857         ldlm_completion_callback completion_callback;
1858         ENTRY;
1859
1860         if (cfs_list_empty(arg->list))
1861                 RETURN(-ENOENT);
1862
1863         lock = cfs_list_entry(arg->list->next, struct ldlm_lock, l_cp_ast);
1864
1865         /* It's possible to receive a completion AST before we've set
1866          * the l_completion_ast pointer: either because the AST arrived
1867          * before the reply, or simply because there's a small race
1868          * window between receiving the reply and finishing the local
1869          * enqueue. (bug 842)
1870          *
1871          * This can't happen with the blocking_ast, however, because we
1872          * will never call the local blocking_ast until we drop our
1873          * reader/writer reference, which we won't do until we get the
1874          * reply and finish enqueueing. */
1875
1876         /* nobody should touch l_cp_ast */
1877         lock_res_and_lock(lock);
1878         cfs_list_del_init(&lock->l_cp_ast);
1879         LASSERT(lock->l_flags & LDLM_FL_CP_REQD);
1880         /* save l_completion_ast since it can be changed by
1881          * mds_intent_policy(), see bug 14225 */
1882         completion_callback = lock->l_completion_ast;
1883         lock->l_flags &= ~LDLM_FL_CP_REQD;
1884         unlock_res_and_lock(lock);
1885
1886         if (completion_callback != NULL)
1887                 rc = completion_callback(lock, 0, (void *)arg);
1888         LDLM_LOCK_RELEASE(lock);
1889
1890         RETURN(rc);
1891 }
1892
1893 /**
1894  * Process a call to revocation AST callback for a lock in ast_work list
1895  */
1896 static int
1897 ldlm_work_revoke_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1898 {
1899         struct ldlm_cb_set_arg *arg = opaq;
1900         struct ldlm_lock_desc   desc;
1901         int                     rc;
1902         struct ldlm_lock       *lock;
1903         ENTRY;
1904
1905         if (cfs_list_empty(arg->list))
1906                 RETURN(-ENOENT);
1907
1908         lock = cfs_list_entry(arg->list->next, struct ldlm_lock, l_rk_ast);
1909         cfs_list_del_init(&lock->l_rk_ast);
1910
1911         /* the desc just pretend to exclusive */
1912         ldlm_lock2desc(lock, &desc);
1913         desc.l_req_mode = LCK_EX;
1914         desc.l_granted_mode = 0;
1915
1916         rc = lock->l_blocking_ast(lock, &desc, (void*)arg, LDLM_CB_BLOCKING);
1917         LDLM_LOCK_RELEASE(lock);
1918
1919         RETURN(rc);
1920 }
1921
1922 /**
1923  * Process a call to glimpse AST callback for a lock in ast_work list
1924  */
1925 int ldlm_work_gl_ast_lock(struct ptlrpc_request_set *rqset, void *opaq)
1926 {
1927         struct ldlm_cb_set_arg          *arg = opaq;
1928         struct ldlm_glimpse_work        *gl_work;
1929         struct ldlm_lock                *lock;
1930         int                              rc = 0;
1931         ENTRY;
1932
1933         if (cfs_list_empty(arg->list))
1934                 RETURN(-ENOENT);
1935
1936         gl_work = cfs_list_entry(arg->list->next, struct ldlm_glimpse_work,
1937                                  gl_list);
1938         cfs_list_del_init(&gl_work->gl_list);
1939
1940         lock = gl_work->gl_lock;
1941
1942         /* transfer the glimpse descriptor to ldlm_cb_set_arg */
1943         arg->gl_desc = gl_work->gl_desc;
1944
1945         /* invoke the actual glimpse callback */
1946         if (lock->l_glimpse_ast(lock, (void*)arg) == 0)
1947                 rc = 1;
1948
1949         LDLM_LOCK_RELEASE(lock);
1950
1951         if ((gl_work->gl_flags & LDLM_GL_WORK_NOFREE) == 0)
1952                 OBD_FREE_PTR(gl_work);
1953
1954         RETURN(rc);
1955 }
1956
1957 /**
1958  * Process list of locks in need of ASTs being sent.
1959  *
1960  * Used on server to send multiple ASTs together instead of sending one by
1961  * one.
1962  */
1963 int ldlm_run_ast_work(struct ldlm_namespace *ns, cfs_list_t *rpc_list,
1964                       ldlm_desc_ast_t ast_type)
1965 {
1966         struct ldlm_cb_set_arg *arg;
1967         set_producer_func       work_ast_lock;
1968         int                     rc;
1969
1970         if (cfs_list_empty(rpc_list))
1971                 RETURN(0);
1972
1973         OBD_ALLOC_PTR(arg);
1974         if (arg == NULL)
1975                 RETURN(-ENOMEM);
1976
1977         cfs_atomic_set(&arg->restart, 0);
1978         arg->list = rpc_list;
1979
1980         switch (ast_type) {
1981                 case LDLM_WORK_BL_AST:
1982                         arg->type = LDLM_BL_CALLBACK;
1983                         work_ast_lock = ldlm_work_bl_ast_lock;
1984                         break;
1985                 case LDLM_WORK_CP_AST:
1986                         arg->type = LDLM_CP_CALLBACK;
1987                         work_ast_lock = ldlm_work_cp_ast_lock;
1988                         break;
1989                 case LDLM_WORK_REVOKE_AST:
1990                         arg->type = LDLM_BL_CALLBACK;
1991                         work_ast_lock = ldlm_work_revoke_ast_lock;
1992                         break;
1993                 case LDLM_WORK_GL_AST:
1994                         arg->type = LDLM_GL_CALLBACK;
1995                         work_ast_lock = ldlm_work_gl_ast_lock;
1996                         break;
1997                 default:
1998                         LBUG();
1999         }
2000
2001         /* We create a ptlrpc request set with flow control extension.
2002          * This request set will use the work_ast_lock function to produce new
2003          * requests and will send a new request each time one completes in order
2004          * to keep the number of requests in flight to ns_max_parallel_ast */
2005         arg->set = ptlrpc_prep_fcset(ns->ns_max_parallel_ast ? : UINT_MAX,
2006                                      work_ast_lock, arg);
2007         if (arg->set == NULL)
2008                 GOTO(out, rc = -ENOMEM);
2009
2010         ptlrpc_set_wait(arg->set);
2011         ptlrpc_set_destroy(arg->set);
2012
2013         rc = cfs_atomic_read(&arg->restart) ? -ERESTART : 0;
2014         GOTO(out, rc);
2015 out:
2016         OBD_FREE_PTR(arg);
2017         return rc;
2018 }
2019
2020 static int reprocess_one_queue(struct ldlm_resource *res, void *closure)
2021 {
2022         ldlm_reprocess_all(res);
2023         return LDLM_ITER_CONTINUE;
2024 }
2025
2026 static int ldlm_reprocess_res(cfs_hash_t *hs, cfs_hash_bd_t *bd,
2027                               cfs_hlist_node_t *hnode, void *arg)
2028 {
2029         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2030         int    rc;
2031
2032         rc = reprocess_one_queue(res, arg);
2033
2034         return rc == LDLM_ITER_STOP;
2035 }
2036
2037 /**
2038  * Iterate through all resources on a namespace attempting to grant waiting
2039  * locks.
2040  */
2041 void ldlm_reprocess_all_ns(struct ldlm_namespace *ns)
2042 {
2043         ENTRY;
2044
2045         if (ns != NULL) {
2046                 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2047                                          ldlm_reprocess_res, NULL);
2048         }
2049         EXIT;
2050 }
2051 EXPORT_SYMBOL(ldlm_reprocess_all_ns);
2052
2053 /**
2054  * Try to grant all waiting locks on a resource.
2055  *
2056  * Calls ldlm_reprocess_queue on converting and waiting queues.
2057  *
2058  * Typically called after some resource locks are cancelled to see
2059  * if anything could be granted as a result of the cancellation.
2060  */
2061 void ldlm_reprocess_all(struct ldlm_resource *res)
2062 {
2063         CFS_LIST_HEAD(rpc_list);
2064
2065 #ifdef HAVE_SERVER_SUPPORT
2066         int rc;
2067         ENTRY;
2068         /* Local lock trees don't get reprocessed. */
2069         if (ns_is_client(ldlm_res_to_ns(res))) {
2070                 EXIT;
2071                 return;
2072         }
2073
2074 restart:
2075         lock_res(res);
2076         rc = ldlm_reprocess_queue(res, &res->lr_converting, &rpc_list);
2077         if (rc == LDLM_ITER_CONTINUE)
2078                 ldlm_reprocess_queue(res, &res->lr_waiting, &rpc_list);
2079         unlock_res(res);
2080
2081         rc = ldlm_run_ast_work(ldlm_res_to_ns(res), &rpc_list,
2082                                LDLM_WORK_CP_AST);
2083         if (rc == -ERESTART) {
2084                 LASSERT(cfs_list_empty(&rpc_list));
2085                 goto restart;
2086         }
2087 #else
2088         ENTRY;
2089         if (!ns_is_client(ldlm_res_to_ns(res))) {
2090                 CERROR("This is client-side-only module, cannot handle "
2091                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
2092                 LBUG();
2093         }
2094 #endif
2095         EXIT;
2096 }
2097
2098 /**
2099  * Helper function to call blocking AST for LDLM lock \a lock in a
2100  * "cancelling" mode.
2101  */
2102 void ldlm_cancel_callback(struct ldlm_lock *lock)
2103 {
2104         check_res_locked(lock->l_resource);
2105         if (!(lock->l_flags & LDLM_FL_CANCEL)) {
2106                 lock->l_flags |= LDLM_FL_CANCEL;
2107                 if (lock->l_blocking_ast) {
2108                         unlock_res_and_lock(lock);
2109                         lock->l_blocking_ast(lock, NULL, lock->l_ast_data,
2110                                              LDLM_CB_CANCELING);
2111                         lock_res_and_lock(lock);
2112                 } else {
2113                         LDLM_DEBUG(lock, "no blocking ast");
2114                 }
2115         }
2116         lock->l_flags |= LDLM_FL_BL_DONE;
2117 }
2118
2119 /**
2120  * Remove skiplist-enabled LDLM lock \a req from granted list
2121  */
2122 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req)
2123 {
2124         if (req->l_resource->lr_type != LDLM_PLAIN &&
2125             req->l_resource->lr_type != LDLM_IBITS)
2126                 return;
2127
2128         cfs_list_del_init(&req->l_sl_policy);
2129         cfs_list_del_init(&req->l_sl_mode);
2130 }
2131
2132 /**
2133  * Attempts to cancel LDLM lock \a lock that has no reader/writer references.
2134  */
2135 void ldlm_lock_cancel(struct ldlm_lock *lock)
2136 {
2137         struct ldlm_resource *res;
2138         struct ldlm_namespace *ns;
2139         ENTRY;
2140
2141         lock_res_and_lock(lock);
2142
2143         res = lock->l_resource;
2144         ns  = ldlm_res_to_ns(res);
2145
2146         /* Please do not, no matter how tempting, remove this LBUG without
2147          * talking to me first. -phik */
2148         if (lock->l_readers || lock->l_writers) {
2149                 LDLM_ERROR(lock, "lock still has references");
2150                 LBUG();
2151         }
2152
2153         if (lock->l_waited)
2154                 ldlm_del_waiting_lock(lock);
2155
2156         /* Releases cancel callback. */
2157         ldlm_cancel_callback(lock);
2158
2159         /* Yes, second time, just in case it was added again while we were
2160            running with no res lock in ldlm_cancel_callback */
2161         if (lock->l_waited)
2162                 ldlm_del_waiting_lock(lock);
2163
2164         ldlm_resource_unlink_lock(lock);
2165         ldlm_lock_destroy_nolock(lock);
2166
2167         if (lock->l_granted_mode == lock->l_req_mode)
2168                 ldlm_pool_del(&ns->ns_pool, lock);
2169
2170         /* Make sure we will not be called again for same lock what is possible
2171          * if not to zero out lock->l_granted_mode */
2172         lock->l_granted_mode = LCK_MINMODE;
2173         unlock_res_and_lock(lock);
2174
2175         EXIT;
2176 }
2177 EXPORT_SYMBOL(ldlm_lock_cancel);
2178
2179 /**
2180  * Set opaque data into the lock that only makes sense to upper layer.
2181  */
2182 int ldlm_lock_set_data(struct lustre_handle *lockh, void *data)
2183 {
2184         struct ldlm_lock *lock = ldlm_handle2lock(lockh);
2185         int rc = -EINVAL;
2186         ENTRY;
2187
2188         if (lock) {
2189                 if (lock->l_ast_data == NULL)
2190                         lock->l_ast_data = data;
2191                 if (lock->l_ast_data == data)
2192                         rc = 0;
2193                 LDLM_LOCK_PUT(lock);
2194         }
2195         RETURN(rc);
2196 }
2197 EXPORT_SYMBOL(ldlm_lock_set_data);
2198
2199 struct export_cl_data {
2200         struct obd_export       *ecl_exp;
2201         int                     ecl_loop;
2202 };
2203
2204 /**
2205  * Iterator function for ldlm_cancel_locks_for_export.
2206  * Cancels passed locks.
2207  */
2208 int ldlm_cancel_locks_for_export_cb(cfs_hash_t *hs, cfs_hash_bd_t *bd,
2209                                     cfs_hlist_node_t *hnode, void *data)
2210
2211 {
2212         struct export_cl_data   *ecl = (struct export_cl_data *)data;
2213         struct obd_export       *exp  = ecl->ecl_exp;
2214         struct ldlm_lock     *lock = cfs_hash_object(hs, hnode);
2215         struct ldlm_resource *res;
2216
2217         res = ldlm_resource_getref(lock->l_resource);
2218         LDLM_LOCK_GET(lock);
2219
2220         LDLM_DEBUG(lock, "export %p", exp);
2221         ldlm_res_lvbo_update(res, NULL, 1);
2222         ldlm_lock_cancel(lock);
2223         ldlm_reprocess_all(res);
2224         ldlm_resource_putref(res);
2225         LDLM_LOCK_RELEASE(lock);
2226
2227         ecl->ecl_loop++;
2228         if ((ecl->ecl_loop & -ecl->ecl_loop) == ecl->ecl_loop) {
2229                 CDEBUG(D_INFO,
2230                        "Cancel lock %p for export %p (loop %d), still have "
2231                        "%d locks left on hash table.\n",
2232                        lock, exp, ecl->ecl_loop,
2233                        cfs_atomic_read(&hs->hs_count));
2234         }
2235
2236         return 0;
2237 }
2238
2239 /**
2240  * Cancel all locks for given export.
2241  *
2242  * Typically called on client disconnection/eviction
2243  */
2244 void ldlm_cancel_locks_for_export(struct obd_export *exp)
2245 {
2246         struct export_cl_data   ecl = {
2247                 .ecl_exp        = exp,
2248                 .ecl_loop       = 0,
2249         };
2250
2251         cfs_hash_for_each_empty(exp->exp_lock_hash,
2252                                 ldlm_cancel_locks_for_export_cb, &ecl);
2253 }
2254
2255 /**
2256  * Downgrade an exclusive lock.
2257  *
2258  * A fast variant of ldlm_lock_convert for convertion of exclusive
2259  * locks. The convertion is always successful.
2260  * Used by Commit on Sharing (COS) code.
2261  *
2262  * \param lock A lock to convert
2263  * \param new_mode new lock mode
2264  */
2265 void ldlm_lock_downgrade(struct ldlm_lock *lock, int new_mode)
2266 {
2267         ENTRY;
2268
2269         LASSERT(lock->l_granted_mode & (LCK_PW | LCK_EX));
2270         LASSERT(new_mode == LCK_COS);
2271
2272         lock_res_and_lock(lock);
2273         ldlm_resource_unlink_lock(lock);
2274         /*
2275          * Remove the lock from pool as it will be added again in
2276          * ldlm_grant_lock() called below.
2277          */
2278         ldlm_pool_del(&ldlm_lock_to_ns(lock)->ns_pool, lock);
2279
2280         lock->l_req_mode = new_mode;
2281         ldlm_grant_lock(lock, NULL);
2282         unlock_res_and_lock(lock);
2283         ldlm_reprocess_all(lock->l_resource);
2284
2285         EXIT;
2286 }
2287 EXPORT_SYMBOL(ldlm_lock_downgrade);
2288
2289 /**
2290  * Attempt to convert already granted lock to a different mode.
2291  *
2292  * While lock conversion is not currently used, future client-side
2293  * optimizations could take advantage of it to avoid discarding cached
2294  * pages on a file.
2295  */
2296 struct ldlm_resource *ldlm_lock_convert(struct ldlm_lock *lock, int new_mode,
2297                                         __u32 *flags)
2298 {
2299         CFS_LIST_HEAD(rpc_list);
2300         struct ldlm_resource *res;
2301         struct ldlm_namespace *ns;
2302         int granted = 0;
2303 #ifdef HAVE_SERVER_SUPPORT
2304         int old_mode;
2305         struct sl_insert_point prev;
2306 #endif
2307         struct ldlm_interval *node;
2308         ENTRY;
2309
2310         /* Just return if mode is unchanged. */
2311         if (new_mode == lock->l_granted_mode) {
2312                 *flags |= LDLM_FL_BLOCK_GRANTED;
2313                 RETURN(lock->l_resource);
2314         }
2315
2316         /* I can't check the type of lock here because the bitlock of lock
2317          * is not held here, so do the allocation blindly. -jay */
2318         OBD_SLAB_ALLOC_PTR_GFP(node, ldlm_interval_slab, CFS_ALLOC_IO);
2319         if (node == NULL)
2320                 /* Actually, this causes LUSTRE_EDEADLK to be returned */
2321                 RETURN(NULL);
2322
2323         LASSERTF((new_mode == LCK_PW && lock->l_granted_mode == LCK_PR),
2324                  "new_mode %u, granted %u\n", new_mode, lock->l_granted_mode);
2325
2326         lock_res_and_lock(lock);
2327
2328         res = lock->l_resource;
2329         ns  = ldlm_res_to_ns(res);
2330
2331 #ifdef HAVE_SERVER_SUPPORT
2332         old_mode = lock->l_req_mode;
2333 #endif
2334         lock->l_req_mode = new_mode;
2335         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS) {
2336 #ifdef HAVE_SERVER_SUPPORT
2337                 /* remember the lock position where the lock might be
2338                  * added back to the granted list later and also
2339                  * remember the join mode for skiplist fixing. */
2340                 prev.res_link = lock->l_res_link.prev;
2341                 prev.mode_link = lock->l_sl_mode.prev;
2342                 prev.policy_link = lock->l_sl_policy.prev;
2343 #endif
2344                 ldlm_resource_unlink_lock(lock);
2345         } else {
2346                 ldlm_resource_unlink_lock(lock);
2347                 if (res->lr_type == LDLM_EXTENT) {
2348                         /* FIXME: ugly code, I have to attach the lock to a
2349                          * interval node again since perhaps it will be granted
2350                          * soon */
2351                         CFS_INIT_LIST_HEAD(&node->li_group);
2352                         ldlm_interval_attach(node, lock);
2353                         node = NULL;
2354                 }
2355         }
2356
2357         /*
2358          * Remove old lock from the pool before adding the lock with new
2359          * mode below in ->policy()
2360          */
2361         ldlm_pool_del(&ns->ns_pool, lock);
2362
2363         /* If this is a local resource, put it on the appropriate list. */
2364         if (ns_is_client(ldlm_res_to_ns(res))) {
2365                 if (*flags & (LDLM_FL_BLOCK_CONV | LDLM_FL_BLOCK_GRANTED)) {
2366                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
2367                 } else {
2368                         /* This should never happen, because of the way the
2369                          * server handles conversions. */
2370                         LDLM_ERROR(lock, "Erroneous flags %x on local lock\n",
2371                                    *flags);
2372                         LBUG();
2373
2374                         ldlm_grant_lock(lock, &rpc_list);
2375                         granted = 1;
2376                         /* FIXME: completion handling not with lr_lock held ! */
2377                         if (lock->l_completion_ast)
2378                                 lock->l_completion_ast(lock, 0, NULL);
2379                 }
2380 #ifdef HAVE_SERVER_SUPPORT
2381         } else {
2382                 int rc;
2383                 ldlm_error_t err;
2384                 __u64 pflags = 0;
2385                 ldlm_processing_policy policy;
2386                 policy = ldlm_processing_policy_table[res->lr_type];
2387                 rc = policy(lock, &pflags, 0, &err, &rpc_list);
2388                 if (rc == LDLM_ITER_STOP) {
2389                         lock->l_req_mode = old_mode;
2390                         if (res->lr_type == LDLM_EXTENT)
2391                                 ldlm_extent_add_lock(res, lock);
2392                         else
2393                                 ldlm_granted_list_add_lock(lock, &prev);
2394
2395                         res = NULL;
2396                 } else {
2397                         *flags |= LDLM_FL_BLOCK_GRANTED;
2398                         granted = 1;
2399                 }
2400         }
2401 #else
2402         } else {
2403                 CERROR("This is client-side-only module, cannot handle "
2404                        "LDLM_NAMESPACE_SERVER resource type lock.\n");
2405                 LBUG();
2406         }
2407 #endif
2408         unlock_res_and_lock(lock);
2409
2410         if (granted)
2411                 ldlm_run_ast_work(ns, &rpc_list, LDLM_WORK_CP_AST);
2412         if (node)
2413                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
2414         RETURN(res);
2415 }
2416 EXPORT_SYMBOL(ldlm_lock_convert);
2417
2418 /**
2419  * Print lock with lock handle \a lockh description into debug log.
2420  *
2421  * Used when printing all locks on a resource for debug purposes.
2422  */
2423 void ldlm_lock_dump_handle(int level, struct lustre_handle *lockh)
2424 {
2425         struct ldlm_lock *lock;
2426
2427         if (!((libcfs_debug | D_ERROR) & level))
2428                 return;
2429
2430         lock = ldlm_handle2lock(lockh);
2431         if (lock == NULL)
2432                 return;
2433
2434         LDLM_DEBUG_LIMIT(level, lock, "###");
2435
2436         LDLM_LOCK_PUT(lock);
2437 }
2438 EXPORT_SYMBOL(ldlm_lock_dump_handle);
2439
2440 /**
2441  * Print lock information with custom message into debug log.
2442  * Helper function.
2443  */
2444 void _ldlm_lock_debug(struct ldlm_lock *lock,
2445                       struct libcfs_debug_msg_data *msgdata,
2446                       const char *fmt, ...)
2447 {
2448         va_list args;
2449         struct obd_export *exp = lock->l_export;
2450         struct ldlm_resource *resource = lock->l_resource;
2451         char *nid = "local";
2452
2453         va_start(args, fmt);
2454
2455         if (exp && exp->exp_connection) {
2456                 nid = libcfs_nid2str(exp->exp_connection->c_peer.nid);
2457         } else if (exp && exp->exp_obd != NULL) {
2458                 struct obd_import *imp = exp->exp_obd->u.cli.cl_import;
2459                 nid = libcfs_nid2str(imp->imp_connection->c_peer.nid);
2460         }
2461
2462         if (resource == NULL) {
2463                 libcfs_debug_vmsg2(msgdata, fmt, args,
2464                        " ns: \?\? lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2465                        "res: \?\? rrc=\?\? type: \?\?\? flags: "LPX64" nid: %s "
2466                        "remote: "LPX64" expref: %d pid: %u timeout: %lu "
2467                        "lvb_type: %d\n",
2468                        lock,
2469                        lock->l_handle.h_cookie, cfs_atomic_read(&lock->l_refc),
2470                        lock->l_readers, lock->l_writers,
2471                        ldlm_lockname[lock->l_granted_mode],
2472                        ldlm_lockname[lock->l_req_mode],
2473                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2474                        exp ? cfs_atomic_read(&exp->exp_refcount) : -99,
2475                        lock->l_pid, lock->l_callback_timeout, lock->l_lvb_type);
2476                 va_end(args);
2477                 return;
2478         }
2479
2480         switch (resource->lr_type) {
2481         case LDLM_EXTENT:
2482                 libcfs_debug_vmsg2(msgdata, fmt, args,
2483                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2484                        "res: "LPU64"/"LPU64" rrc: %d type: %s ["LPU64"->"LPU64
2485                        "] (req "LPU64"->"LPU64") flags: "LPX64" nid: %s remote:"
2486                        " "LPX64" expref: %d pid: %u timeout: %lu lvb_type: %d\n",
2487                        ldlm_lock_to_ns_name(lock), lock,
2488                        lock->l_handle.h_cookie, cfs_atomic_read(&lock->l_refc),
2489                        lock->l_readers, lock->l_writers,
2490                        ldlm_lockname[lock->l_granted_mode],
2491                        ldlm_lockname[lock->l_req_mode],
2492                        resource->lr_name.name[0],
2493                        resource->lr_name.name[1],
2494                        cfs_atomic_read(&resource->lr_refcount),
2495                        ldlm_typename[resource->lr_type],
2496                        lock->l_policy_data.l_extent.start,
2497                        lock->l_policy_data.l_extent.end,
2498                        lock->l_req_extent.start, lock->l_req_extent.end,
2499                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2500                        exp ? cfs_atomic_read(&exp->exp_refcount) : -99,
2501                        lock->l_pid, lock->l_callback_timeout, lock->l_lvb_type);
2502                 break;
2503
2504         case LDLM_FLOCK:
2505                 libcfs_debug_vmsg2(msgdata, fmt, args,
2506                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2507                        "res: "LPU64"/"LPU64" rrc: %d type: %s pid: %d "
2508                        "["LPU64"->"LPU64"] flags: "LPX64" nid: %s remote: "LPX64
2509                        " expref: %d pid: %u timeout: %lu\n",
2510                        ldlm_lock_to_ns_name(lock), lock,
2511                        lock->l_handle.h_cookie, cfs_atomic_read(&lock->l_refc),
2512                        lock->l_readers, lock->l_writers,
2513                        ldlm_lockname[lock->l_granted_mode],
2514                        ldlm_lockname[lock->l_req_mode],
2515                        resource->lr_name.name[0],
2516                        resource->lr_name.name[1],
2517                        cfs_atomic_read(&resource->lr_refcount),
2518                        ldlm_typename[resource->lr_type],
2519                        lock->l_policy_data.l_flock.pid,
2520                        lock->l_policy_data.l_flock.start,
2521                        lock->l_policy_data.l_flock.end,
2522                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2523                        exp ? cfs_atomic_read(&exp->exp_refcount) : -99,
2524                        lock->l_pid, lock->l_callback_timeout);
2525                 break;
2526
2527         case LDLM_IBITS:
2528                 libcfs_debug_vmsg2(msgdata, fmt, args,
2529                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2530                        "res: "LPU64"/"LPU64" bits "LPX64" rrc: %d type: %s "
2531                        "flags: "LPX64" nid: %s remote: "LPX64" expref: %d "
2532                        "pid: %u timeout: %lu lvb_type: %d\n",
2533                        ldlm_lock_to_ns_name(lock),
2534                        lock, lock->l_handle.h_cookie,
2535                        cfs_atomic_read (&lock->l_refc),
2536                        lock->l_readers, lock->l_writers,
2537                        ldlm_lockname[lock->l_granted_mode],
2538                        ldlm_lockname[lock->l_req_mode],
2539                        resource->lr_name.name[0],
2540                        resource->lr_name.name[1],
2541                        lock->l_policy_data.l_inodebits.bits,
2542                        cfs_atomic_read(&resource->lr_refcount),
2543                        ldlm_typename[resource->lr_type],
2544                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2545                        exp ? cfs_atomic_read(&exp->exp_refcount) : -99,
2546                        lock->l_pid, lock->l_callback_timeout, lock->l_lvb_type);
2547                 break;
2548
2549         default:
2550                 libcfs_debug_vmsg2(msgdata, fmt, args,
2551                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
2552                        "res: "LPU64"/"LPU64" rrc: %d type: %s flags: "LPX64" "
2553                        "nid: %s remote: "LPX64" expref: %d pid: %u timeout: %lu"
2554                        "lvb_type: %d\n",
2555                        ldlm_lock_to_ns_name(lock),
2556                        lock, lock->l_handle.h_cookie,
2557                        cfs_atomic_read (&lock->l_refc),
2558                        lock->l_readers, lock->l_writers,
2559                        ldlm_lockname[lock->l_granted_mode],
2560                        ldlm_lockname[lock->l_req_mode],
2561                        resource->lr_name.name[0],
2562                        resource->lr_name.name[1],
2563                        cfs_atomic_read(&resource->lr_refcount),
2564                        ldlm_typename[resource->lr_type],
2565                        lock->l_flags, nid, lock->l_remote_handle.cookie,
2566                        exp ? cfs_atomic_read(&exp->exp_refcount) : -99,
2567                        lock->l_pid, lock->l_callback_timeout, lock->l_lvb_type);
2568                 break;
2569         }
2570         va_end(args);
2571 }
2572 EXPORT_SYMBOL(_ldlm_lock_debug);