Whamcloud - gitweb
Directly associate cached pages to lock that protect those pages,
[fs/lustre-release.git] / lustre / ldlm / ldlm_lock.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Peter Braam <braam@clusterfs.com>
6  *   Author: Phil Schwan <phil@clusterfs.com>
7  *
8  *   This file is part of the Lustre file system, http://www.lustre.org
9  *   Lustre is a trademark of Cluster File Systems, Inc.
10  *
11  *   You may have signed or agreed to another license before downloading
12  *   this software.  If so, you are bound by the terms and conditions
13  *   of that agreement, and the following does not apply to you.  See the
14  *   LICENSE file included with this distribution for more information.
15  *
16  *   If you did not agree to a different license, then this copy of Lustre
17  *   is open source software; you can redistribute it and/or modify it
18  *   under the terms of version 2 of the GNU General Public License as
19  *   published by the Free Software Foundation.
20  *
21  *   In either case, Lustre is distributed in the hope that it will be
22  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
23  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  *   license text for more details.
25  */
26
27 #define DEBUG_SUBSYSTEM S_LDLM
28
29 #ifdef __KERNEL__
30 # include <libcfs/libcfs.h>
31 # ifndef HAVE_VFS_INTENT_PATCHES
32 # include <linux/lustre_intent.h>
33 # endif
34 #else
35 # include <liblustre.h>
36 # include <libcfs/kp30.h>
37 #endif
38
39 #include <obd_class.h>
40 #include "ldlm_internal.h"
41
42 /* lock types */
43 char *ldlm_lockname[] = {
44         [0] "--",
45         [LCK_EX] "EX",
46         [LCK_PW] "PW",
47         [LCK_PR] "PR",
48         [LCK_CW] "CW",
49         [LCK_CR] "CR",
50         [LCK_NL] "NL",
51         [LCK_GROUP] "GROUP"
52 };
53
54 char *ldlm_typename[] = {
55         [LDLM_PLAIN] "PLN",
56         [LDLM_EXTENT] "EXT",
57         [LDLM_FLOCK] "FLK",
58         [LDLM_IBITS] "IBT",
59 };
60
61 char *ldlm_it2str(int it)
62 {
63         switch (it) {
64         case IT_OPEN:
65                 return "open";
66         case IT_CREAT:
67                 return "creat";
68         case (IT_OPEN | IT_CREAT):
69                 return "open|creat";
70         case IT_READDIR:
71                 return "readdir";
72         case IT_GETATTR:
73                 return "getattr";
74         case IT_LOOKUP:
75                 return "lookup";
76         case IT_UNLINK:
77                 return "unlink";
78         case IT_GETXATTR:
79                 return "getxattr";
80         default:
81                 CERROR("Unknown intent %d\n", it);
82                 return "UNKNOWN";
83         }
84 }
85
86 extern cfs_mem_cache_t *ldlm_lock_slab;
87
88 static ldlm_processing_policy ldlm_processing_policy_table[] = {
89         [LDLM_PLAIN] ldlm_process_plain_lock,
90         [LDLM_EXTENT] ldlm_process_extent_lock,
91 #ifdef __KERNEL__
92         [LDLM_FLOCK] ldlm_process_flock_lock,
93 #endif
94         [LDLM_IBITS] ldlm_process_inodebits_lock,
95 };
96
97 ldlm_processing_policy ldlm_get_processing_policy(struct ldlm_resource *res)
98 {
99         return ldlm_processing_policy_table[res->lr_type];
100 }
101
102 void ldlm_register_intent(struct ldlm_namespace *ns, ldlm_res_policy arg)
103 {
104         ns->ns_policy = arg;
105 }
106
107 /*
108  * REFCOUNTED LOCK OBJECTS
109  */
110
111
112 /*
113  * Lock refcounts, during creation:
114  *   - one special one for allocation, dec'd only once in destroy
115  *   - one for being a lock that's in-use
116  *   - one for the addref associated with a new lock
117  */
118 struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock)
119 {
120         atomic_inc(&lock->l_refc);
121         return lock;
122 }
123
124 static void ldlm_lock_free(struct ldlm_lock *lock, size_t size)
125 {
126         LASSERT(size == sizeof(*lock));
127         OBD_SLAB_FREE(lock, ldlm_lock_slab, sizeof(*lock));
128 }
129
130 void ldlm_lock_put(struct ldlm_lock *lock)
131 {
132         ENTRY;
133
134         LASSERT(lock->l_resource != LP_POISON);
135         LASSERT(atomic_read(&lock->l_refc) > 0);
136         if (atomic_dec_and_test(&lock->l_refc)) {
137                 struct ldlm_resource *res;
138
139                 LDLM_DEBUG(lock,
140                            "final lock_put on destroyed lock, freeing it.");
141
142                 res = lock->l_resource;
143                 LASSERT(lock->l_destroyed);
144                 LASSERT(list_empty(&lock->l_res_link));
145                 LASSERT(list_empty(&lock->l_pending_chain));
146
147                 atomic_dec(&res->lr_namespace->ns_locks);
148                 ldlm_resource_putref(res);
149                 lock->l_resource = NULL;
150                 if (lock->l_export) {
151                         class_export_put(lock->l_export);
152                         lock->l_export = NULL;
153                 }
154
155                 if (lock->l_lvb_data != NULL)
156                         OBD_FREE(lock->l_lvb_data, lock->l_lvb_len);
157
158                 ldlm_interval_free(ldlm_interval_detach(lock));
159                 OBD_FREE_RCU_CB(lock, sizeof(*lock), &lock->l_handle, 
160                                 ldlm_lock_free);
161         }
162
163         EXIT;
164 }
165
166 int ldlm_lock_remove_from_lru_nolock(struct ldlm_lock *lock)
167 {
168         int rc = 0;
169         if (!list_empty(&lock->l_lru)) {
170                 struct ldlm_namespace *ns = lock->l_resource->lr_namespace;
171                 LASSERT(lock->l_resource->lr_type != LDLM_FLOCK);
172                 list_del_init(&lock->l_lru);
173                 ns->ns_nr_unused--;
174                 LASSERT(ns->ns_nr_unused >= 0);
175                 rc = 1;
176         }
177         return rc;
178 }
179
180 int ldlm_lock_remove_from_lru(struct ldlm_lock *lock)
181 {
182         struct ldlm_namespace *ns = lock->l_resource->lr_namespace;
183         int rc;
184         ENTRY;
185         spin_lock(&ns->ns_unused_lock);
186         rc = ldlm_lock_remove_from_lru_nolock(lock);
187         spin_unlock(&ns->ns_unused_lock);
188         EXIT;
189         return rc;
190 }
191
192 void ldlm_lock_add_to_lru_nolock(struct ldlm_lock *lock)
193 {
194         struct ldlm_namespace *ns = lock->l_resource->lr_namespace;
195         lock->l_last_used = cfs_time_current();
196         LASSERT(list_empty(&lock->l_lru));
197         list_add_tail(&lock->l_lru, &ns->ns_unused_list);
198         LASSERT(ns->ns_nr_unused >= 0);
199         ns->ns_nr_unused++;
200 }
201
202 void ldlm_lock_add_to_lru(struct ldlm_lock *lock)
203 {
204         struct ldlm_namespace *ns = lock->l_resource->lr_namespace;
205         ENTRY;
206         spin_lock(&ns->ns_unused_lock);
207         ldlm_lock_add_to_lru_nolock(lock);
208         spin_unlock(&ns->ns_unused_lock);
209         EXIT;
210 }
211
212 void ldlm_lock_touch_in_lru(struct ldlm_lock *lock)
213 {
214         struct ldlm_namespace *ns = lock->l_resource->lr_namespace;
215         ENTRY;
216         spin_lock(&ns->ns_unused_lock);
217         if (!list_empty(&lock->l_lru)) {
218                 ldlm_lock_remove_from_lru_nolock(lock);
219                 ldlm_lock_add_to_lru_nolock(lock);
220         }
221         spin_unlock(&ns->ns_unused_lock);
222         EXIT;
223 }
224
225 /* This used to have a 'strict' flag, which recovery would use to mark an
226  * in-use lock as needing-to-die.  Lest I am ever tempted to put it back, I
227  * shall explain why it's gone: with the new hash table scheme, once you call
228  * ldlm_lock_destroy, you can never drop your final references on this lock.
229  * Because it's not in the hash table anymore.  -phil */
230 int ldlm_lock_destroy_internal(struct ldlm_lock *lock)
231 {
232         ENTRY;
233
234         if (lock->l_readers || lock->l_writers) {
235                 LDLM_ERROR(lock, "lock still has references");
236                 ldlm_lock_dump(D_ERROR, lock, 0);
237                 LBUG();
238         }
239
240         if (!list_empty(&lock->l_res_link)) {
241                 LDLM_ERROR(lock, "lock still on resource");
242                 ldlm_lock_dump(D_ERROR, lock, 0);
243                 LBUG();
244         }
245
246         if (lock->l_destroyed) {
247                 LASSERT(list_empty(&lock->l_lru));
248                 EXIT;
249                 return 0;
250         }
251         lock->l_destroyed = 1;
252
253         if (lock->l_export)
254                 spin_lock(&lock->l_export->exp_ldlm_data.led_lock);
255         list_del_init(&lock->l_export_chain);
256         if (lock->l_export)
257                 spin_unlock(&lock->l_export->exp_ldlm_data.led_lock);
258
259         ldlm_lock_remove_from_lru(lock);
260         class_handle_unhash(&lock->l_handle);
261
262 #if 0
263         /* Wake anyone waiting for this lock */
264         /* FIXME: I should probably add yet another flag, instead of using
265          * l_export to only call this on clients */
266         if (lock->l_export)
267                 class_export_put(lock->l_export);
268         lock->l_export = NULL;
269         if (lock->l_export && lock->l_completion_ast)
270                 lock->l_completion_ast(lock, 0);
271 #endif
272         EXIT;
273         return 1;
274 }
275
276 void ldlm_lock_destroy(struct ldlm_lock *lock)
277 {
278         int first;
279         ENTRY;
280         lock_res_and_lock(lock);
281         first = ldlm_lock_destroy_internal(lock);
282         unlock_res_and_lock(lock);
283
284         /* drop reference from hashtable only for first destroy */
285         if (first)
286                 LDLM_LOCK_PUT(lock);
287         EXIT;
288 }
289
290 void ldlm_lock_destroy_nolock(struct ldlm_lock *lock)
291 {
292         int first;
293         ENTRY;
294         first = ldlm_lock_destroy_internal(lock);
295         /* drop reference from hashtable only for first destroy */
296         if (first)
297                 LDLM_LOCK_PUT(lock);
298         EXIT;
299 }
300
301 /* this is called by portals_handle2object with the handle lock taken */
302 static void lock_handle_addref(void *lock)
303 {
304         LDLM_LOCK_GET((struct ldlm_lock *)lock);
305 }
306
307 /*
308  * usage: pass in a resource on which you have done ldlm_resource_get
309  *        pass in a parent lock on which you have done a ldlm_lock_get
310  *        after return, ldlm_*_put the resource and parent
311  * returns: lock with refcount 2 - one for current caller and one for remote
312  */
313 static struct ldlm_lock *ldlm_lock_new(struct ldlm_resource *resource)
314 {
315         struct ldlm_lock *lock;
316         ENTRY;
317
318         if (resource == NULL)
319                 LBUG();
320
321         OBD_SLAB_ALLOC(lock, ldlm_lock_slab, CFS_ALLOC_IO, sizeof(*lock));
322         if (lock == NULL)
323                 RETURN(NULL);
324
325         spin_lock_init(&lock->l_lock);
326         lock->l_resource = ldlm_resource_getref(resource);
327
328         atomic_set(&lock->l_refc, 2);
329         CFS_INIT_LIST_HEAD(&lock->l_res_link);
330         CFS_INIT_LIST_HEAD(&lock->l_lru);
331         CFS_INIT_LIST_HEAD(&lock->l_export_chain);
332         CFS_INIT_LIST_HEAD(&lock->l_pending_chain);
333         CFS_INIT_LIST_HEAD(&lock->l_bl_ast);
334         CFS_INIT_LIST_HEAD(&lock->l_cp_ast);
335         cfs_waitq_init(&lock->l_waitq);
336         lock->l_blocking_lock = NULL;
337         CFS_INIT_LIST_HEAD(&lock->l_sl_mode);
338         CFS_INIT_LIST_HEAD(&lock->l_sl_policy);
339
340         atomic_inc(&resource->lr_namespace->ns_locks);
341         CFS_INIT_LIST_HEAD(&lock->l_handle.h_link);
342         class_handle_hash(&lock->l_handle, lock_handle_addref);
343
344         CFS_INIT_LIST_HEAD(&lock->l_extents_list);
345         spin_lock_init(&lock->l_extents_list_lock);
346         CFS_INIT_LIST_HEAD(&lock->l_cache_locks_list);
347
348         RETURN(lock);
349 }
350
351 int ldlm_lock_change_resource(struct ldlm_namespace *ns, struct ldlm_lock *lock,
352                               const struct ldlm_res_id *new_resid)
353 {
354         struct ldlm_resource *oldres = lock->l_resource;
355         struct ldlm_resource *newres;
356         int type;
357         ENTRY;
358
359         LASSERT(ns_is_client(ns));
360
361         lock_res_and_lock(lock);
362         if (memcmp(new_resid, &lock->l_resource->lr_name,
363                    sizeof(lock->l_resource->lr_name)) == 0) {
364                 /* Nothing to do */
365                 unlock_res_and_lock(lock);
366                 RETURN(0);
367         }
368
369         LASSERT(new_resid->name[0] != 0);
370
371         /* This function assumes that the lock isn't on any lists */
372         LASSERT(list_empty(&lock->l_res_link));
373
374         type = oldres->lr_type;
375         unlock_res_and_lock(lock);
376
377         newres = ldlm_resource_get(ns, NULL, new_resid, type, 1);
378         if (newres == NULL)
379                 RETURN(-ENOMEM);
380
381         lock_res_and_lock(lock);
382         LASSERT(memcmp(new_resid, &lock->l_resource->lr_name,
383                        sizeof(lock->l_resource->lr_name)) != 0);
384         lock_res(newres);
385         lock->l_resource = newres;
386         unlock_res(oldres);
387         unlock_res_and_lock(lock);
388
389         /* ...and the flowers are still standing! */
390         ldlm_resource_putref(oldres);
391
392         RETURN(0);
393 }
394
395 /*
396  *  HANDLES
397  */
398
399 void ldlm_lock2handle(const struct ldlm_lock *lock, struct lustre_handle *lockh)
400 {
401         lockh->cookie = lock->l_handle.h_cookie;
402 }
403
404 /* if flags: atomically get the lock and set the flags.
405  *           Return NULL if flag already set
406  */
407
408 struct ldlm_lock *__ldlm_handle2lock(const struct lustre_handle *handle,
409                                      int flags)
410 {
411         struct ldlm_namespace *ns;
412         struct ldlm_lock *lock, *retval = NULL;
413         ENTRY;
414
415         LASSERT(handle);
416
417         lock = class_handle2object(handle->cookie);
418         if (lock == NULL)
419                 RETURN(NULL);
420
421         LASSERT(lock->l_resource != NULL);
422         ns = lock->l_resource->lr_namespace;
423         LASSERT(ns != NULL);
424
425         lock_res_and_lock(lock);
426
427         /* It's unlikely but possible that someone marked the lock as
428          * destroyed after we did handle2object on it */
429         if (lock->l_destroyed) {
430                 unlock_res_and_lock(lock);
431                 CDEBUG(D_INFO, "lock already destroyed: lock %p\n", lock);
432                 LDLM_LOCK_PUT(lock);
433                 GOTO(out, retval);
434         }
435
436         if (flags && (lock->l_flags & flags)) {
437                 unlock_res_and_lock(lock);
438                 LDLM_LOCK_PUT(lock);
439                 GOTO(out, retval);
440         }
441
442         if (flags)
443                 lock->l_flags |= flags;
444
445         unlock_res_and_lock(lock);
446         retval = lock;
447         EXIT;
448  out:
449         return retval;
450 }
451
452 struct ldlm_lock *ldlm_handle2lock_ns(struct ldlm_namespace *ns,
453                                       const struct lustre_handle *handle)
454 {
455         struct ldlm_lock *retval = NULL;
456         retval = __ldlm_handle2lock(handle, 0);
457         return retval;
458 }
459
460 void ldlm_lock2desc(struct ldlm_lock *lock, struct ldlm_lock_desc *desc)
461 {
462         struct obd_export *exp = lock->l_export?:lock->l_conn_export;
463         /* INODEBITS_INTEROP: If the other side does not support
464          * inodebits, reply with a plain lock descriptor.
465          */
466         if ((lock->l_resource->lr_type == LDLM_IBITS) &&
467             (exp && !(exp->exp_connect_flags & OBD_CONNECT_IBITS))) {
468                 struct ldlm_resource res = *lock->l_resource;
469
470                 /* Make sure all the right bits are set in this lock we
471                    are going to pass to client */
472                 LASSERTF(lock->l_policy_data.l_inodebits.bits ==
473                          (MDS_INODELOCK_LOOKUP|MDS_INODELOCK_UPDATE),
474                          "Inappropriate inode lock bits during "
475                          "conversion " LPU64 "\n",
476                          lock->l_policy_data.l_inodebits.bits);
477                 res.lr_type = LDLM_PLAIN;
478                 ldlm_res2desc(&res, &desc->l_resource);
479                 /* Convert "new" lock mode to something old client can
480                    understand */
481                 if ((lock->l_req_mode == LCK_CR) ||
482                     (lock->l_req_mode == LCK_CW))
483                         desc->l_req_mode = LCK_PR;
484                 else
485                         desc->l_req_mode = lock->l_req_mode;
486                 if ((lock->l_granted_mode == LCK_CR) ||
487                     (lock->l_granted_mode == LCK_CW)) {
488                         desc->l_granted_mode = LCK_PR;
489                 } else {
490                         /* We never grant PW/EX locks to clients */
491                         LASSERT((lock->l_granted_mode != LCK_PW) &&
492                                 (lock->l_granted_mode != LCK_EX));
493                         desc->l_granted_mode = lock->l_granted_mode;
494                 }
495
496                 /* We do not copy policy here, because there is no
497                    policy for plain locks */
498         } else {
499                 ldlm_res2desc(lock->l_resource, &desc->l_resource);
500                 desc->l_req_mode = lock->l_req_mode;
501                 desc->l_granted_mode = lock->l_granted_mode;
502                 desc->l_policy_data = lock->l_policy_data;
503         }
504 }
505
506 void ldlm_add_bl_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
507                            struct list_head *work_list)
508 {
509         if ((lock->l_flags & LDLM_FL_AST_SENT) == 0) {
510                 LDLM_DEBUG(lock, "lock incompatible; sending blocking AST.");
511                 lock->l_flags |= LDLM_FL_AST_SENT;
512                 /* If the enqueuing client said so, tell the AST recipient to
513                  * discard dirty data, rather than writing back. */
514                 if (new->l_flags & LDLM_AST_DISCARD_DATA)
515                         lock->l_flags |= LDLM_FL_DISCARD_DATA;
516                 LASSERT(list_empty(&lock->l_bl_ast));
517                 list_add(&lock->l_bl_ast, work_list);
518                 LDLM_LOCK_GET(lock);
519                 LASSERT(lock->l_blocking_lock == NULL);
520                 lock->l_blocking_lock = LDLM_LOCK_GET(new);
521         }
522 }
523
524 void ldlm_add_cp_work_item(struct ldlm_lock *lock, struct list_head *work_list)
525 {
526         if ((lock->l_flags & LDLM_FL_CP_REQD) == 0) {
527                 lock->l_flags |= LDLM_FL_CP_REQD;
528                 LDLM_DEBUG(lock, "lock granted; sending completion AST.");
529                 LASSERT(list_empty(&lock->l_cp_ast));
530                 list_add(&lock->l_cp_ast, work_list);
531                 LDLM_LOCK_GET(lock);
532         }
533 }
534
535 /* must be called with lr_lock held */
536 void ldlm_add_ast_work_item(struct ldlm_lock *lock, struct ldlm_lock *new,
537                                 struct list_head *work_list)
538 {
539         ENTRY;
540         check_res_locked(lock->l_resource);
541         if (new)
542                 ldlm_add_bl_work_item(lock, new, work_list);
543         else
544                 ldlm_add_cp_work_item(lock, work_list);
545         EXIT;
546 }
547
548 void ldlm_lock_addref(struct lustre_handle *lockh, __u32 mode)
549 {
550         struct ldlm_lock *lock;
551
552         lock = ldlm_handle2lock(lockh);
553         LASSERT(lock != NULL);
554         ldlm_lock_addref_internal(lock, mode);
555         LDLM_LOCK_PUT(lock);
556 }
557
558 void ldlm_lock_addref_internal_nolock(struct ldlm_lock *lock, __u32 mode)
559 {
560         ldlm_lock_remove_from_lru(lock);
561         if (mode & (LCK_NL | LCK_CR | LCK_PR))
562                 lock->l_readers++;
563         if (mode & (LCK_EX | LCK_CW | LCK_PW | LCK_GROUP))
564                 lock->l_writers++;
565         LDLM_LOCK_GET(lock);
566         LDLM_DEBUG(lock, "ldlm_lock_addref(%s)", ldlm_lockname[mode]);
567 }
568
569 /* only called for local locks */
570 void ldlm_lock_addref_internal(struct ldlm_lock *lock, __u32 mode)
571 {
572         lock_res_and_lock(lock);
573         ldlm_lock_addref_internal_nolock(lock, mode);
574         unlock_res_and_lock(lock);
575 }
576
577 void ldlm_lock_decref_internal(struct ldlm_lock *lock, __u32 mode)
578 {
579         struct ldlm_namespace *ns;
580         ENTRY;
581
582         lock_res_and_lock(lock);
583
584         ns = lock->l_resource->lr_namespace;
585
586         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
587         if (mode & (LCK_NL | LCK_CR | LCK_PR)) {
588                 LASSERT(lock->l_readers > 0);
589                 lock->l_readers--;
590         }
591         if (mode & (LCK_EX | LCK_CW | LCK_PW | LCK_GROUP)) {
592                 LASSERT(lock->l_writers > 0);
593                 lock->l_writers--;
594         }
595
596         if (lock->l_flags & LDLM_FL_LOCAL &&
597             !lock->l_readers && !lock->l_writers) {
598                 /* If this is a local lock on a server namespace and this was
599                  * the last reference, cancel the lock. */
600                 CDEBUG(D_INFO, "forcing cancel of local lock\n");
601                 lock->l_flags |= LDLM_FL_CBPENDING;
602         }
603
604         if (!lock->l_readers && !lock->l_writers &&
605             (lock->l_flags & LDLM_FL_CBPENDING)) {
606                 /* If we received a blocked AST and this was the last reference,
607                  * run the callback. */
608                 if (ns_is_server(ns) && lock->l_export)
609                         CERROR("FL_CBPENDING set on non-local lock--just a "
610                                "warning\n");
611
612                 LDLM_DEBUG(lock, "final decref done on cbpending lock");
613
614                 LDLM_LOCK_GET(lock); /* dropped by bl thread */
615                 ldlm_lock_remove_from_lru(lock);
616                 unlock_res_and_lock(lock);
617                 if ((lock->l_flags & LDLM_FL_ATOMIC_CB) ||
618                     ldlm_bl_to_thread_lock(ns, NULL, lock) != 0)
619                         ldlm_handle_bl_callback(ns, NULL, lock);
620         } else if (ns_is_client(ns) &&
621                    !lock->l_readers && !lock->l_writers &&
622                    !(lock->l_flags & LDLM_FL_NO_LRU) &&
623                    !(lock->l_flags & LDLM_FL_BL_AST)) {
624                 /* If this is a client-side namespace and this was the last
625                  * reference, put it on the LRU. */
626                 ldlm_lock_add_to_lru(lock);
627                 unlock_res_and_lock(lock);
628                 /* Call ldlm_cancel_lru() only if EARLY_CANCEL and LRU RESIZE 
629                  * are not supported by the server, otherwise, it is done on 
630                  * enqueue. */
631                 if (!exp_connect_cancelset(lock->l_conn_export) && 
632                     !ns_connect_lru_resize(ns))
633                         ldlm_cancel_lru(ns, 0, LDLM_ASYNC, 0);
634         } else {
635                 unlock_res_and_lock(lock);
636         }
637
638         LDLM_LOCK_PUT(lock);    /* matches the ldlm_lock_get in addref */
639
640         EXIT;
641 }
642
643 void ldlm_lock_decref(struct lustre_handle *lockh, __u32 mode)
644 {
645         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
646         LASSERTF(lock != NULL, "Non-existing lock: "LPX64"\n", lockh->cookie);
647         ldlm_lock_decref_internal(lock, mode);
648         LDLM_LOCK_PUT(lock);
649 }
650
651 /* This will drop a lock reference and mark it for destruction, but will not
652  * necessarily cancel the lock before returning. */
653 void ldlm_lock_decref_and_cancel(struct lustre_handle *lockh, __u32 mode)
654 {
655         struct ldlm_lock *lock = __ldlm_handle2lock(lockh, 0);
656         ENTRY;
657
658         LASSERT(lock != NULL);
659
660         LDLM_DEBUG(lock, "ldlm_lock_decref(%s)", ldlm_lockname[mode]);
661         lock_res_and_lock(lock);
662         lock->l_flags |= LDLM_FL_CBPENDING;
663         unlock_res_and_lock(lock);
664         ldlm_lock_decref_internal(lock, mode);
665         LDLM_LOCK_PUT(lock);
666 }
667
668 struct sl_insert_point {
669         struct list_head *res_link;
670         struct list_head *mode_link;
671         struct list_head *policy_link;
672 };
673
674 /*
675  * search_granted_lock
676  *
677  * Description:
678  *      Finds a position to insert the new lock.
679  * Parameters:
680  *      queue [input]:  the granted list where search acts on;
681  *      req [input]:    the lock whose position to be located;
682  *      prev [output]:  positions within 3 lists to insert @req to
683  * Return Value:
684  *      filled @prev
685  * NOTE: called by
686  *  - ldlm_grant_lock_with_skiplist
687  */
688 static void search_granted_lock(struct list_head *queue,
689                                 struct ldlm_lock *req,
690                                 struct sl_insert_point *prev)
691 {
692         struct list_head *tmp;
693         struct ldlm_lock *lock, *mode_end, *policy_end;
694         ENTRY;
695
696         list_for_each(tmp, queue) {
697                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
698
699                 mode_end = list_entry(lock->l_sl_mode.prev, struct ldlm_lock,
700                                       l_sl_mode);
701
702                 if (lock->l_req_mode != req->l_req_mode) {
703                         /* jump to last lock of mode group */
704                         tmp = &mode_end->l_res_link;
705                         continue;
706                 }
707
708                 /* suitable mode group is found */
709                 if (lock->l_resource->lr_type == LDLM_PLAIN) {
710                         /* insert point is last lock of the mode group */
711                         prev->res_link = &mode_end->l_res_link;
712                         prev->mode_link = &mode_end->l_sl_mode;
713                         prev->policy_link = &req->l_sl_policy;
714                         EXIT;
715                         return;
716                 } else if (lock->l_resource->lr_type == LDLM_IBITS) {
717                         for (;;) {
718                                 policy_end = list_entry(lock->l_sl_policy.prev,
719                                                         struct ldlm_lock,
720                                                         l_sl_policy);
721
722                                 if (lock->l_policy_data.l_inodebits.bits ==
723                                     req->l_policy_data.l_inodebits.bits) {
724                                         /* insert point is last lock of
725                                          * the policy group */
726                                         prev->res_link =
727                                                 &policy_end->l_res_link;
728                                         prev->mode_link =
729                                                 &policy_end->l_sl_mode;
730                                         prev->policy_link =
731                                                 &policy_end->l_sl_policy;
732                                         EXIT;
733                                         return;
734                                 }
735
736                                 if (policy_end == mode_end)
737                                         /* done with mode group */
738                                         break;
739
740                                 /* jump to next policy group within the mode group */
741                                 tmp = policy_end->l_res_link.next;
742                                 lock = list_entry(tmp, struct ldlm_lock, 
743                                                   l_res_link);
744                         }  /* loop over policy groups within the mode group */
745
746                         /* insert point is last lock of the mode group,
747                          * new policy group is started */
748                         prev->res_link = &mode_end->l_res_link;
749                         prev->mode_link = &mode_end->l_sl_mode;
750                         prev->policy_link = &req->l_sl_policy;
751                         EXIT;
752                         return;
753                 } else {
754                         LDLM_ERROR(lock, "is not LDLM_PLAIN or LDLM_IBITS lock");
755                         LBUG();
756                 }
757         }
758
759         /* insert point is last lock on the queue,
760          * new mode group and new policy group are started */
761         prev->res_link = queue->prev;
762         prev->mode_link = &req->l_sl_mode;
763         prev->policy_link = &req->l_sl_policy;
764         EXIT;
765         return;
766 }
767
768 static void ldlm_granted_list_add_lock(struct ldlm_lock *lock, 
769                                        struct sl_insert_point *prev)
770 {
771         struct ldlm_resource *res = lock->l_resource;
772         ENTRY;
773
774         check_res_locked(res);
775
776         ldlm_resource_dump(D_OTHER, res);
777         CDEBUG(D_OTHER, "About to add this lock:\n");
778         ldlm_lock_dump(D_OTHER, lock, 0);
779
780         if (lock->l_destroyed) {
781                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
782                 return;
783         }
784
785         LASSERT(list_empty(&lock->l_res_link));
786         LASSERT(list_empty(&lock->l_sl_mode));
787         LASSERT(list_empty(&lock->l_sl_policy));
788
789         list_add(&lock->l_res_link, prev->res_link);
790         list_add(&lock->l_sl_mode, prev->mode_link);
791         list_add(&lock->l_sl_policy, prev->policy_link);
792
793         EXIT;
794 }
795
796 static void ldlm_grant_lock_with_skiplist(struct ldlm_lock *lock)
797 {
798         struct sl_insert_point prev;
799         ENTRY;
800
801         LASSERT(lock->l_req_mode == lock->l_granted_mode);
802
803         search_granted_lock(&lock->l_resource->lr_granted, lock, &prev);
804         ldlm_granted_list_add_lock(lock, &prev);
805         EXIT;
806 }
807
808 /* NOTE: called by
809  *  - ldlm_lock_enqueue
810  *  - ldlm_reprocess_queue
811  *  - ldlm_lock_convert
812  *
813  * must be called with lr_lock held
814  */
815 void ldlm_grant_lock(struct ldlm_lock *lock, struct list_head *work_list)
816 {
817         struct ldlm_resource *res = lock->l_resource;
818         ENTRY;
819
820         check_res_locked(res);
821
822         lock->l_granted_mode = lock->l_req_mode;
823         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS)
824                 ldlm_grant_lock_with_skiplist(lock);
825         else if (res->lr_type == LDLM_EXTENT)
826                 ldlm_extent_add_lock(res, lock);
827         else
828                 ldlm_resource_add_lock(res, &res->lr_granted, lock);
829
830         if (lock->l_granted_mode < res->lr_most_restr)
831                 res->lr_most_restr = lock->l_granted_mode;
832
833         if (work_list && lock->l_completion_ast != NULL)
834                 ldlm_add_ast_work_item(lock, NULL, work_list);
835
836         ldlm_pool_add(&res->lr_namespace->ns_pool, lock);
837         EXIT;
838 }
839
840 /* returns a referenced lock or NULL.  See the flag descriptions below, in the
841  * comment above ldlm_lock_match */
842 static struct ldlm_lock *search_queue(struct list_head *queue,
843                                       ldlm_mode_t *mode,
844                                       ldlm_policy_data_t *policy,
845                                       struct ldlm_lock *old_lock, int flags)
846 {
847         struct ldlm_lock *lock;
848         struct list_head *tmp;
849
850         list_for_each(tmp, queue) {
851                 ldlm_mode_t match;
852
853                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
854
855                 if (lock == old_lock)
856                         break;
857
858                 /* llite sometimes wants to match locks that will be
859                  * canceled when their users drop, but we allow it to match
860                  * if it passes in CBPENDING and the lock still has users.
861                  * this is generally only going to be used by children
862                  * whose parents already hold a lock so forward progress
863                  * can still happen. */
864                 if (lock->l_flags & LDLM_FL_CBPENDING &&
865                     !(flags & LDLM_FL_CBPENDING))
866                         continue;
867                 if (lock->l_flags & LDLM_FL_CBPENDING &&
868                     lock->l_readers == 0 && lock->l_writers == 0)
869                         continue;
870
871                 if (!(lock->l_req_mode & *mode))
872                         continue;
873                 match = lock->l_req_mode;
874
875                 if (lock->l_resource->lr_type == LDLM_EXTENT &&
876                     (lock->l_policy_data.l_extent.start >
877                      policy->l_extent.start ||
878                      lock->l_policy_data.l_extent.end < policy->l_extent.end))
879                         continue;
880
881                 if (unlikely(match == LCK_GROUP) &&
882                     lock->l_resource->lr_type == LDLM_EXTENT &&
883                     lock->l_policy_data.l_extent.gid != policy->l_extent.gid)
884                         continue;
885
886                 /* We match if we have existing lock with same or wider set
887                    of bits. */
888                 if (lock->l_resource->lr_type == LDLM_IBITS &&
889                      ((lock->l_policy_data.l_inodebits.bits &
890                       policy->l_inodebits.bits) !=
891                       policy->l_inodebits.bits))
892                         continue;
893
894                 if (lock->l_destroyed || (lock->l_flags & LDLM_FL_FAILED))
895                         continue;
896
897                 if ((flags & LDLM_FL_LOCAL_ONLY) &&
898                     !(lock->l_flags & LDLM_FL_LOCAL))
899                         continue;
900
901                 if (flags & LDLM_FL_TEST_LOCK) {
902                         LDLM_LOCK_GET(lock);
903                         ldlm_lock_touch_in_lru(lock);
904                 } else {
905                         ldlm_lock_addref_internal_nolock(lock, match);
906                 }
907                 *mode = match;
908                 return lock;
909         }
910
911         return NULL;
912 }
913
914 void ldlm_lock_allow_match(struct ldlm_lock *lock)
915 {
916         lock_res_and_lock(lock);
917         lock->l_flags |= LDLM_FL_LVB_READY;
918         cfs_waitq_signal(&lock->l_waitq);
919         unlock_res_and_lock(lock);
920 }
921
922 /* Can be called in two ways:
923  *
924  * If 'ns' is NULL, then lockh describes an existing lock that we want to look
925  * for a duplicate of.
926  *
927  * Otherwise, all of the fields must be filled in, to match against.
928  *
929  * If 'flags' contains LDLM_FL_LOCAL_ONLY, then only match local locks on the
930  *     server (ie, connh is NULL)
931  * If 'flags' contains LDLM_FL_BLOCK_GRANTED, then only locks on the granted
932  *     list will be considered
933  * If 'flags' contains LDLM_FL_CBPENDING, then locks that have been marked
934  *     to be canceled can still be matched as long as they still have reader
935  *     or writer refernces
936  * If 'flags' contains LDLM_FL_TEST_LOCK, then don't actually reference a lock,
937  *     just tell us if we would have matched.
938  *
939  * Returns 1 if it finds an already-existing lock that is compatible; in this
940  * case, lockh is filled in with a addref()ed lock
941  *
942  * we also check security context, if that failed we simply return 0 (to keep
943  * caller code unchanged), the context failure will be discovered by caller
944  * sometime later.
945  */
946 ldlm_mode_t ldlm_lock_match(struct ldlm_namespace *ns, int flags,
947                             const struct ldlm_res_id *res_id, ldlm_type_t type,
948                             ldlm_policy_data_t *policy, ldlm_mode_t mode,
949                             struct lustre_handle *lockh)
950 {
951         struct ldlm_resource *res;
952         struct ldlm_lock *lock, *old_lock = NULL;
953         int rc = 0;
954         ENTRY;
955
956         if (ns == NULL) {
957                 old_lock = ldlm_handle2lock(lockh);
958                 LASSERT(old_lock);
959
960                 ns = old_lock->l_resource->lr_namespace;
961                 res_id = &old_lock->l_resource->lr_name;
962                 type = old_lock->l_resource->lr_type;
963                 mode = old_lock->l_req_mode;
964         }
965
966         res = ldlm_resource_get(ns, NULL, res_id, type, 0);
967         if (res == NULL) {
968                 LASSERT(old_lock == NULL);
969                 RETURN(0);
970         }
971
972         lock_res(res);
973
974         lock = search_queue(&res->lr_granted, &mode, policy, old_lock, flags);
975         if (lock != NULL)
976                 GOTO(out, rc = 1);
977         if (flags & LDLM_FL_BLOCK_GRANTED)
978                 GOTO(out, rc = 0);
979         lock = search_queue(&res->lr_converting, &mode, policy, old_lock, flags);
980         if (lock != NULL)
981                 GOTO(out, rc = 1);
982         lock = search_queue(&res->lr_waiting, &mode, policy, old_lock, flags);
983         if (lock != NULL)
984                 GOTO(out, rc = 1);
985
986         EXIT;
987  out:
988         unlock_res(res);
989         ldlm_resource_putref(res);
990
991         if (lock) {
992                 ldlm_lock2handle(lock, lockh);
993                 if ((flags & LDLM_FL_LVB_READY) &&
994                     (!(lock->l_flags & LDLM_FL_LVB_READY))) {
995                         struct l_wait_info lwi;
996                         if (lock->l_completion_ast) {
997                                 int err = lock->l_completion_ast(lock,
998                                                           LDLM_FL_WAIT_NOREPROC,
999                                                                  NULL);
1000                                 if (err) {
1001                                         if (flags & LDLM_FL_TEST_LOCK)
1002                                                 LDLM_LOCK_PUT(lock);
1003                                         else
1004                                                 ldlm_lock_decref_internal(lock, mode);
1005                                         rc = 0;
1006                                         goto out2;
1007                                 }
1008                         }
1009
1010                         lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(obd_timeout), NULL,
1011                                                LWI_ON_SIGNAL_NOOP, NULL);
1012
1013                         /* XXX FIXME see comment on CAN_MATCH in lustre_dlm.h */
1014                         l_wait_event(lock->l_waitq,
1015                                      (lock->l_flags & LDLM_FL_LVB_READY), &lwi);
1016                 }
1017         }
1018  out2:
1019         if (rc) {
1020                 LDLM_DEBUG(lock, "matched ("LPU64" "LPU64")",
1021                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1022                                 res_id->name[2] : policy->l_extent.start,
1023                            (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1024                                 res_id->name[3] : policy->l_extent.end);
1025
1026                 /* check user's security context */
1027                 if (lock->l_conn_export &&
1028                     sptlrpc_import_check_ctx(
1029                                 class_exp2cliimp(lock->l_conn_export))) {
1030                         if (!(flags & LDLM_FL_TEST_LOCK))
1031                                 ldlm_lock_decref_internal(lock, mode);
1032                         rc = 0;
1033                 }
1034
1035                 if (flags & LDLM_FL_TEST_LOCK)
1036                         LDLM_LOCK_PUT(lock);
1037
1038         } else if (!(flags & LDLM_FL_TEST_LOCK)) {/*less verbose for test-only*/
1039                 LDLM_DEBUG_NOLOCK("not matched ns %p type %u mode %u res "
1040                                   LPU64"/"LPU64" ("LPU64" "LPU64")", ns,
1041                                   type, mode, res_id->name[0], res_id->name[1],
1042                                   (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1043                                         res_id->name[2] :policy->l_extent.start,
1044                                 (type == LDLM_PLAIN || type == LDLM_IBITS) ?
1045                                         res_id->name[3] : policy->l_extent.end);
1046         }
1047         if (old_lock)
1048                 LDLM_LOCK_PUT(old_lock);
1049
1050         return rc ? mode : 0;
1051 }
1052
1053 /* Returns a referenced lock */
1054 struct ldlm_lock *ldlm_lock_create(struct ldlm_namespace *ns,
1055                                    const struct ldlm_res_id *res_id,
1056                                    ldlm_type_t type,
1057                                    ldlm_mode_t mode,
1058                                    ldlm_blocking_callback blocking,
1059                                    ldlm_completion_callback completion,
1060                                    ldlm_glimpse_callback glimpse,
1061                                    void *data, __u32 lvb_len)
1062 {
1063         struct ldlm_lock *lock;
1064         struct ldlm_resource *res;
1065         ENTRY;
1066
1067         res = ldlm_resource_get(ns, NULL, res_id, type, 1);
1068         if (res == NULL)
1069                 RETURN(NULL);
1070
1071         lock = ldlm_lock_new(res);
1072         ldlm_resource_putref(res);
1073
1074         if (lock == NULL)
1075                 RETURN(NULL);
1076
1077         lock->l_req_mode = mode;
1078         lock->l_ast_data = data;
1079         lock->l_blocking_ast = blocking;
1080         lock->l_completion_ast = completion;
1081         lock->l_glimpse_ast = glimpse;
1082         lock->l_pid = cfs_curproc_pid();
1083
1084         lock->l_tree_node = NULL;
1085         /* if this is the extent lock, allocate the interval tree node */
1086         if (type == LDLM_EXTENT) {
1087                 if (ldlm_interval_alloc(lock) == NULL)
1088                         GOTO(out, 0);
1089         }
1090
1091         if (lvb_len) {
1092                 lock->l_lvb_len = lvb_len;
1093                 OBD_ALLOC(lock->l_lvb_data, lvb_len);
1094                 if (lock->l_lvb_data == NULL)
1095                         GOTO(out, 0);
1096         }
1097
1098         RETURN(lock);
1099
1100 out:
1101         if (lock->l_lvb_data)
1102                 OBD_FREE(lock->l_lvb_data, lvb_len);
1103         ldlm_interval_free(ldlm_interval_detach(lock));
1104         OBD_SLAB_FREE(lock, ldlm_lock_slab, sizeof(*lock));
1105         return NULL;
1106 }
1107
1108 ldlm_error_t ldlm_lock_enqueue(struct ldlm_namespace *ns,
1109                                struct ldlm_lock **lockp,
1110                                void *cookie, int *flags)
1111 {
1112         struct ldlm_lock *lock = *lockp;
1113         struct ldlm_resource *res = lock->l_resource;
1114         int local = ns_is_client(res->lr_namespace);
1115         ldlm_processing_policy policy;
1116         ldlm_error_t rc = ELDLM_OK;
1117         struct ldlm_interval *node = NULL;
1118         ENTRY;
1119
1120         do_gettimeofday(&lock->l_enqueued_time);
1121         /* policies are not executed on the client or during replay */
1122         if ((*flags & (LDLM_FL_HAS_INTENT|LDLM_FL_REPLAY)) == LDLM_FL_HAS_INTENT
1123             && !local && ns->ns_policy) {
1124                 rc = ns->ns_policy(ns, lockp, cookie, lock->l_req_mode, *flags,
1125                                    NULL);
1126                 if (rc == ELDLM_LOCK_REPLACED) {
1127                         /* The lock that was returned has already been granted,
1128                          * and placed into lockp.  If it's not the same as the
1129                          * one we passed in, then destroy the old one and our
1130                          * work here is done. */
1131                         if (lock != *lockp) {
1132                                 ldlm_lock_destroy(lock);
1133                                 LDLM_LOCK_PUT(lock);
1134                         }
1135                         *flags |= LDLM_FL_LOCK_CHANGED;
1136                         RETURN(0);
1137                 } else if (rc != ELDLM_OK ||
1138                            (rc == ELDLM_OK && (*flags & LDLM_FL_INTENT_ONLY))) {
1139                         ldlm_lock_destroy(lock);
1140                         RETURN(rc);
1141                 }
1142         }
1143
1144         /* For a replaying lock, it might be already in granted list. So
1145          * unlinking the lock will cause the interval node to be freed, we
1146          * have to allocate the interval node early otherwise we can't regrant
1147          * this lock in the future. - jay */
1148         if (!local && (*flags & LDLM_FL_REPLAY) && res->lr_type == LDLM_EXTENT)
1149                 OBD_SLAB_ALLOC(node, ldlm_interval_slab, CFS_ALLOC_IO,
1150                                sizeof(*node));
1151
1152         lock_res_and_lock(lock);
1153         if (local && lock->l_req_mode == lock->l_granted_mode) {
1154                 /* The server returned a blocked lock, but it was granted
1155                  * before we got a chance to actually enqueue it.  We don't
1156                  * need to do anything else. */
1157                 *flags &= ~(LDLM_FL_BLOCK_GRANTED |
1158                             LDLM_FL_BLOCK_CONV | LDLM_FL_BLOCK_WAIT);
1159                 GOTO(out, ELDLM_OK);
1160         }
1161
1162         ldlm_resource_unlink_lock(lock);
1163         if (res->lr_type == LDLM_EXTENT && lock->l_tree_node == NULL) {
1164                 if (node == NULL) {
1165                         ldlm_lock_destroy_nolock(lock);
1166                         GOTO(out, rc = -ENOMEM);
1167                 }
1168
1169                 CFS_INIT_LIST_HEAD(&node->li_group);
1170                 ldlm_interval_attach(node, lock);
1171                 node = NULL;
1172         }
1173
1174         /* Some flags from the enqueue want to make it into the AST, via the
1175          * lock's l_flags. */
1176         lock->l_flags |= *flags & LDLM_AST_DISCARD_DATA;
1177
1178         /* This distinction between local lock trees is very important; a client
1179          * namespace only has information about locks taken by that client, and
1180          * thus doesn't have enough information to decide for itself if it can
1181          * be granted (below).  In this case, we do exactly what the server
1182          * tells us to do, as dictated by the 'flags'.
1183          *
1184          * We do exactly the same thing during recovery, when the server is
1185          * more or less trusting the clients not to lie.
1186          *
1187          * FIXME (bug 268): Detect obvious lies by checking compatibility in
1188          * granted/converting queues. */
1189         if (local) {
1190                 if (*flags & LDLM_FL_BLOCK_CONV)
1191                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1192                 else if (*flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED))
1193                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1194                 else
1195                         ldlm_grant_lock(lock, NULL);
1196                 GOTO(out, ELDLM_OK);
1197         } else if (*flags & LDLM_FL_REPLAY) {
1198                 if (*flags & LDLM_FL_BLOCK_CONV) {
1199                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1200                         GOTO(out, ELDLM_OK);
1201                 } else if (*flags & LDLM_FL_BLOCK_WAIT) {
1202                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
1203                         GOTO(out, ELDLM_OK);
1204                 } else if (*flags & LDLM_FL_BLOCK_GRANTED) {
1205                         ldlm_grant_lock(lock, NULL);
1206                         GOTO(out, ELDLM_OK);
1207                 }
1208                 /* If no flags, fall through to normal enqueue path. */
1209         }
1210
1211         policy = ldlm_processing_policy_table[res->lr_type];
1212         policy(lock, flags, 1, &rc, NULL);
1213         GOTO(out, rc);
1214 out:
1215         unlock_res_and_lock(lock);
1216         if (node)
1217                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
1218         return rc;
1219 }
1220
1221 /* Must be called with namespace taken: queue is waiting or converting. */
1222 int ldlm_reprocess_queue(struct ldlm_resource *res, struct list_head *queue,
1223                          struct list_head *work_list)
1224 {
1225         struct list_head *tmp, *pos;
1226         ldlm_processing_policy policy;
1227         int flags;
1228         int rc = LDLM_ITER_CONTINUE;
1229         ldlm_error_t err;
1230         ENTRY;
1231
1232         check_res_locked(res);
1233
1234         policy = ldlm_processing_policy_table[res->lr_type];
1235         LASSERT(policy);
1236
1237         list_for_each_safe(tmp, pos, queue) {
1238                 struct ldlm_lock *pending;
1239                 pending = list_entry(tmp, struct ldlm_lock, l_res_link);
1240
1241                 CDEBUG(D_INFO, "Reprocessing lock %p\n", pending);
1242
1243                 flags = 0;
1244                 rc = policy(pending, &flags, 0, &err, work_list);
1245                 if (rc != LDLM_ITER_CONTINUE)
1246                         break;
1247         }
1248
1249         RETURN(rc);
1250 }
1251
1252 /* Helper function for ldlm_run_ast_work().
1253  * 
1254  * Send an existing rpc set specified by @arg->set and then
1255  * destroy it. Create new one if @do_create flag is set. */
1256 static void
1257 ldlm_send_and_maybe_create_set(struct ldlm_cb_set_arg *arg, int do_create)
1258 {
1259         ENTRY;
1260
1261         ptlrpc_set_wait(arg->set);
1262         if (arg->type == LDLM_BL_CALLBACK)
1263                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_GLIMPSE, 2);
1264         ptlrpc_set_destroy(arg->set);
1265
1266         if (do_create)
1267                 arg->set = ptlrpc_prep_set();
1268
1269         EXIT;
1270 }
1271
1272 static int
1273 ldlm_work_bl_ast_lock(struct list_head *tmp, struct ldlm_cb_set_arg *arg)
1274 {
1275         struct ldlm_lock_desc d;
1276         struct ldlm_lock *lock = list_entry(tmp, struct ldlm_lock, l_bl_ast);
1277         ENTRY;
1278
1279         /* nobody should touch l_bl_ast */
1280         lock_res_and_lock(lock);
1281         list_del_init(&lock->l_bl_ast);
1282
1283         LASSERT(lock->l_flags & LDLM_FL_AST_SENT);
1284         LASSERT(lock->l_bl_ast_run == 0);
1285         LASSERT(lock->l_blocking_lock);
1286         lock->l_bl_ast_run++;
1287         unlock_res_and_lock(lock);
1288
1289         ldlm_lock2desc(lock->l_blocking_lock, &d);
1290
1291         LDLM_LOCK_PUT(lock->l_blocking_lock);
1292         lock->l_blocking_lock = NULL;
1293         lock->l_blocking_ast(lock, &d, (void *)arg, 
1294                              LDLM_CB_BLOCKING);
1295         LDLM_LOCK_PUT(lock);
1296
1297         RETURN(1);
1298 }
1299
1300 static int
1301 ldlm_work_cp_ast_lock(struct list_head *tmp, struct ldlm_cb_set_arg *arg)
1302 {
1303         struct ldlm_lock *lock = list_entry(tmp, struct ldlm_lock, l_cp_ast);
1304         ldlm_completion_callback completion_callback;
1305         int rc = 0;
1306         ENTRY;
1307
1308         /* It's possible to receive a completion AST before we've set
1309          * the l_completion_ast pointer: either because the AST arrived
1310          * before the reply, or simply because there's a small race
1311          * window between receiving the reply and finishing the local
1312          * enqueue. (bug 842)
1313          *
1314          * This can't happen with the blocking_ast, however, because we
1315          * will never call the local blocking_ast until we drop our
1316          * reader/writer reference, which we won't do until we get the
1317          * reply and finish enqueueing. */
1318
1319         /* nobody should touch l_cp_ast */
1320         lock_res_and_lock(lock);
1321         list_del_init(&lock->l_cp_ast);
1322         LASSERT(lock->l_flags & LDLM_FL_CP_REQD);
1323         /* save l_completion_ast since it can be changed by
1324          * mds_intent_policy(), see bug 14225 */
1325         completion_callback = lock->l_completion_ast;
1326         lock->l_flags &= ~LDLM_FL_CP_REQD;
1327         unlock_res_and_lock(lock);
1328
1329         if (completion_callback != NULL) {
1330                 completion_callback(lock, 0, (void *)arg);
1331                 rc = 1;
1332         }
1333         LDLM_LOCK_PUT(lock);
1334
1335         RETURN(rc);
1336 }
1337
1338 static int
1339 ldlm_work_revoke_ast_lock(struct list_head *tmp, struct ldlm_cb_set_arg *arg)
1340 {
1341         struct ldlm_lock_desc desc;
1342         struct ldlm_lock *lock = list_entry(tmp, struct ldlm_lock, l_export_chain);
1343         ENTRY;
1344
1345         list_del_init(&lock->l_export_chain);
1346
1347         /* the desc just pretend to exclusive */
1348         ldlm_lock2desc(lock, &desc);
1349         desc.l_req_mode = LCK_EX;
1350         desc.l_granted_mode = 0;
1351
1352         lock->l_blocking_ast(lock, &desc, (void*)arg, LDLM_CB_BLOCKING);
1353         LDLM_LOCK_PUT(lock);
1354
1355         RETURN(1);
1356 }
1357
1358 int ldlm_run_ast_work(struct list_head *rpc_list, ldlm_desc_ast_t ast_type)
1359 {
1360         struct ldlm_cb_set_arg arg;
1361         struct list_head *tmp, *pos;
1362         int (*work_ast_lock)(struct list_head *tmp, struct ldlm_cb_set_arg *arg);
1363         int ast_count;
1364         ENTRY;
1365
1366         arg.set = ptlrpc_prep_set();
1367         atomic_set(&arg.restart, 0);
1368         switch (ast_type) {
1369         case LDLM_WORK_BL_AST:
1370                 arg.type = LDLM_BL_CALLBACK;
1371                 work_ast_lock = ldlm_work_bl_ast_lock;
1372                 break;
1373         case LDLM_WORK_CP_AST:
1374                 arg.type = LDLM_CP_CALLBACK;
1375                 work_ast_lock = ldlm_work_cp_ast_lock;
1376                 break;
1377         case LDLM_WORK_REVOKE_AST:
1378                 arg.type = LDLM_BL_CALLBACK;
1379                 work_ast_lock = ldlm_work_revoke_ast_lock;
1380                 break;
1381         default:
1382                 LBUG();
1383         }
1384
1385         ast_count = 0;
1386         list_for_each_safe(tmp, pos, rpc_list) {
1387                 ast_count += work_ast_lock(tmp, &arg);
1388
1389                 /* Send the request set if it exceeds the PARALLEL_AST_LIMIT,
1390                  * and create a new set for requests that remained in
1391                  * @rpc_list */
1392                 if (unlikely(ast_count == PARALLEL_AST_LIMIT)) {
1393                         ldlm_send_and_maybe_create_set(&arg, 1);
1394                         ast_count = 0;
1395                 }
1396         }
1397
1398         if (ast_count > 0)
1399                 ldlm_send_and_maybe_create_set(&arg, 0);
1400         else
1401                 /* In case when number of ASTs is multiply of
1402                  * PARALLEL_AST_LIMIT or @rpc_list was initially empty,
1403                  * @arg.set must be destroyed here, otherwise we get 
1404                  * write memory leaking. */
1405                 ptlrpc_set_destroy(arg.set);
1406
1407         RETURN(atomic_read(&arg.restart) ? -ERESTART : 0);
1408 }
1409
1410 static int reprocess_one_queue(struct ldlm_resource *res, void *closure)
1411 {
1412         ldlm_reprocess_all(res);
1413         return LDLM_ITER_CONTINUE;
1414 }
1415
1416 void ldlm_reprocess_all_ns(struct ldlm_namespace *ns)
1417 {
1418         struct list_head *tmp;
1419         int i, rc;
1420
1421         if (ns == NULL)
1422                 return;
1423
1424         ENTRY;
1425         spin_lock(&ns->ns_hash_lock);
1426         for (i = 0; i < RES_HASH_SIZE; i++) {
1427                 tmp = ns->ns_hash[i].next;
1428                 while (tmp != &(ns->ns_hash[i])) {
1429                         struct ldlm_resource *res =
1430                                 list_entry(tmp, struct ldlm_resource, lr_hash);
1431
1432                         ldlm_resource_getref(res);
1433                         spin_unlock(&ns->ns_hash_lock);
1434
1435                         rc = reprocess_one_queue(res, NULL);
1436
1437                         spin_lock(&ns->ns_hash_lock);
1438                         tmp = tmp->next;
1439                         ldlm_resource_putref_locked(res);
1440
1441                         if (rc == LDLM_ITER_STOP)
1442                                 GOTO(out, rc);
1443                 }
1444         }
1445  out:
1446         spin_unlock(&ns->ns_hash_lock);
1447         EXIT;
1448 }
1449
1450 void ldlm_reprocess_all(struct ldlm_resource *res)
1451 {
1452         CFS_LIST_HEAD(rpc_list);
1453         int rc;
1454         ENTRY;
1455
1456         /* Local lock trees don't get reprocessed. */
1457         if (ns_is_client(res->lr_namespace)) {
1458                 EXIT;
1459                 return;
1460         }
1461
1462  restart:
1463         lock_res(res);
1464         rc = ldlm_reprocess_queue(res, &res->lr_converting, &rpc_list);
1465         if (rc == LDLM_ITER_CONTINUE)
1466                 ldlm_reprocess_queue(res, &res->lr_waiting, &rpc_list);
1467         unlock_res(res);
1468
1469         rc = ldlm_run_ast_work(&rpc_list, LDLM_WORK_CP_AST);
1470         if (rc == -ERESTART) {
1471                 LASSERT(list_empty(&rpc_list));
1472                 goto restart;
1473         }
1474         EXIT;
1475 }
1476
1477 void ldlm_cancel_callback(struct ldlm_lock *lock)
1478 {
1479         check_res_locked(lock->l_resource);
1480         if (!(lock->l_flags & LDLM_FL_CANCEL)) {
1481                 lock->l_flags |= LDLM_FL_CANCEL;
1482                 if (lock->l_blocking_ast) {
1483                         // l_check_no_ns_lock(ns);
1484                         unlock_res_and_lock(lock);
1485                         lock->l_blocking_ast(lock, NULL, lock->l_ast_data,
1486                                              LDLM_CB_CANCELING);
1487                         lock_res_and_lock(lock);
1488                 } else {
1489                         LDLM_DEBUG(lock, "no blocking ast");
1490                 }
1491         }
1492         lock->l_flags |= LDLM_FL_BL_DONE;
1493 }
1494
1495 void ldlm_unlink_lock_skiplist(struct ldlm_lock *req)
1496 {
1497         if (req->l_resource->lr_type != LDLM_PLAIN &&
1498             req->l_resource->lr_type != LDLM_IBITS)
1499                 return;
1500
1501         list_del_init(&req->l_sl_policy);
1502         list_del_init(&req->l_sl_mode);
1503 }
1504
1505 void ldlm_lock_cancel(struct ldlm_lock *lock)
1506 {
1507         struct ldlm_resource *res;
1508         struct ldlm_namespace *ns;
1509         ENTRY;
1510
1511         lock_res_and_lock(lock);
1512
1513         res = lock->l_resource;
1514         ns = res->lr_namespace;
1515
1516         /* Please do not, no matter how tempting, remove this LBUG without
1517          * talking to me first. -phik */
1518         if (lock->l_readers || lock->l_writers) {
1519                 LDLM_ERROR(lock, "lock still has references");
1520                 LBUG();
1521         }
1522
1523         ldlm_del_waiting_lock(lock);
1524
1525         /* Releases cancel callback. */
1526         ldlm_cancel_callback(lock);
1527
1528         /* Yes, second time, just in case it was added again while we were
1529            running with no res lock in ldlm_cancel_callback */
1530         ldlm_del_waiting_lock(lock); 
1531         ldlm_resource_unlink_lock(lock);
1532         ldlm_lock_destroy_nolock(lock);
1533
1534         if (lock->l_granted_mode == lock->l_req_mode)
1535                 ldlm_pool_del(&ns->ns_pool, lock);
1536
1537         /* Make sure we will not be called again for same lock what is possible
1538          * if not to zero out lock->l_granted_mode */
1539         lock->l_granted_mode = 0;
1540         unlock_res_and_lock(lock);
1541
1542         EXIT;
1543 }
1544
1545 int ldlm_lock_set_data(struct lustre_handle *lockh, void *data)
1546 {
1547         struct ldlm_lock *lock = ldlm_handle2lock(lockh);
1548         ENTRY;
1549
1550         if (lock == NULL)
1551                 RETURN(-EINVAL);
1552
1553         lock->l_ast_data = data;
1554         LDLM_LOCK_PUT(lock);
1555         RETURN(0);
1556 }
1557
1558 void ldlm_cancel_locks_for_export(struct obd_export *exp)
1559 {
1560         struct ldlm_lock *lock;
1561         struct ldlm_resource *res;
1562
1563         spin_lock(&exp->exp_ldlm_data.led_lock);
1564         while(!list_empty(&exp->exp_ldlm_data.led_held_locks)) {
1565                 lock = list_entry(exp->exp_ldlm_data.led_held_locks.next,
1566                                   struct ldlm_lock, l_export_chain);
1567                 res = ldlm_resource_getref(lock->l_resource);
1568                 LDLM_LOCK_GET(lock);
1569                 spin_unlock(&exp->exp_ldlm_data.led_lock);
1570
1571                 LDLM_DEBUG(lock, "export %p", exp);
1572                 ldlm_res_lvbo_update(res, NULL, 0, 1);
1573
1574                 ldlm_lock_cancel(lock);
1575                 ldlm_reprocess_all(res);
1576
1577                 ldlm_resource_putref(res);
1578                 LDLM_LOCK_PUT(lock);
1579                 spin_lock(&exp->exp_ldlm_data.led_lock);
1580         }
1581         spin_unlock(&exp->exp_ldlm_data.led_lock);
1582 }
1583
1584 struct ldlm_resource *ldlm_lock_convert(struct ldlm_lock *lock, int new_mode,
1585                                         __u32 *flags)
1586 {
1587         CFS_LIST_HEAD(rpc_list);
1588         struct ldlm_resource *res;
1589         struct ldlm_namespace *ns;
1590         int granted = 0;
1591         int old_mode, rc;
1592         struct sl_insert_point prev;
1593         ldlm_error_t err;
1594         struct ldlm_interval *node;
1595         ENTRY;
1596
1597         if (new_mode == lock->l_granted_mode) { // No changes? Just return.
1598                 *flags |= LDLM_FL_BLOCK_GRANTED;
1599                 RETURN(lock->l_resource);
1600         }
1601
1602         /* I can't check the type of lock here because the bitlock of lock
1603          * is not held here, so do the allocation blindly. -jay */
1604         OBD_SLAB_ALLOC(node, ldlm_interval_slab, CFS_ALLOC_IO, sizeof(*node));
1605         if (node == NULL)  /* Actually, this causes EDEADLOCK to be returned */
1606                 RETURN(NULL);
1607
1608         LASSERTF(new_mode == LCK_PW && lock->l_granted_mode == LCK_PR,
1609                  "new_mode %u, granted %u\n", new_mode, lock->l_granted_mode);
1610
1611         lock_res_and_lock(lock);
1612
1613         res = lock->l_resource;
1614         ns = res->lr_namespace;
1615
1616         old_mode = lock->l_req_mode;
1617         lock->l_req_mode = new_mode;
1618         if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS) {
1619                 /* remember the lock position where the lock might be 
1620                  * added back to the granted list later and also 
1621                  * remember the join mode for skiplist fixing. */
1622                 prev.res_link = lock->l_res_link.prev;
1623                 prev.mode_link = lock->l_sl_mode.prev;
1624                 prev.policy_link = lock->l_sl_policy.prev;
1625                 ldlm_resource_unlink_lock(lock);
1626         } else {
1627                 ldlm_resource_unlink_lock(lock);
1628                 if (res->lr_type == LDLM_EXTENT) {
1629                         /* FIXME: ugly code, I have to attach the lock to a 
1630                          * interval node again since perhaps it will be granted
1631                          * soon */
1632                         CFS_INIT_LIST_HEAD(&node->li_group);
1633                         ldlm_interval_attach(node, lock);
1634                         node = NULL;
1635                 }
1636         }
1637
1638         /* If this is a local resource, put it on the appropriate list. */
1639         if (ns_is_client(res->lr_namespace)) {
1640                 if (*flags & (LDLM_FL_BLOCK_CONV | LDLM_FL_BLOCK_GRANTED)) {
1641                         ldlm_resource_add_lock(res, &res->lr_converting, lock);
1642                 } else {
1643                         /* This should never happen, because of the way the
1644                          * server handles conversions. */
1645                         LDLM_ERROR(lock, "Erroneous flags %d on local lock\n",
1646                                    *flags);
1647                         LBUG();
1648
1649                         ldlm_grant_lock(lock, &rpc_list);
1650                         granted = 1;
1651                         /* FIXME: completion handling not with ns_lock held ! */
1652                         if (lock->l_completion_ast)
1653                                 lock->l_completion_ast(lock, 0, NULL);
1654                 }
1655         } else {
1656                 int pflags = 0;
1657                 ldlm_processing_policy policy;
1658                 policy = ldlm_processing_policy_table[res->lr_type];
1659                 rc = policy(lock, &pflags, 0, &err, &rpc_list);
1660                 if (rc == LDLM_ITER_STOP) {
1661                         lock->l_req_mode = old_mode;
1662                         if (res->lr_type == LDLM_EXTENT)
1663                                 ldlm_extent_add_lock(res, lock);
1664                         else
1665                                 ldlm_granted_list_add_lock(lock, &prev);
1666
1667                         res = NULL;
1668                 } else {
1669                         *flags |= LDLM_FL_BLOCK_GRANTED;
1670                         granted = 1;
1671                 }
1672         }
1673         unlock_res_and_lock(lock);
1674
1675         if (granted)
1676                 ldlm_run_ast_work(&rpc_list, LDLM_WORK_CP_AST);
1677         if (node)
1678                 OBD_SLAB_FREE(node, ldlm_interval_slab, sizeof(*node));
1679         RETURN(res);
1680 }
1681
1682 void ldlm_lock_dump(int level, struct ldlm_lock *lock, int pos)
1683 {
1684         struct obd_device *obd = NULL;
1685
1686         if (!((libcfs_debug | D_ERROR) & level))
1687                 return;
1688
1689         if (!lock) {
1690                 CDEBUG(level, "  NULL LDLM lock\n");
1691                 return;
1692         }
1693
1694         CDEBUG(level," -- Lock dump: %p/"LPX64" (rc: %d) (pos: %d) (pid: %d)\n",
1695                lock, lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
1696                pos, lock->l_pid);
1697         if (lock->l_conn_export != NULL)
1698                 obd = lock->l_conn_export->exp_obd;
1699         if (lock->l_export && lock->l_export->exp_connection) {
1700                 CDEBUG(level, "  Node: NID %s (rhandle: "LPX64")\n",
1701                      libcfs_nid2str(lock->l_export->exp_connection->c_peer.nid),
1702                      lock->l_remote_handle.cookie);
1703         } else if (obd == NULL) {
1704                 CDEBUG(level, "  Node: local\n");
1705         } else {
1706                 struct obd_import *imp = obd->u.cli.cl_import;
1707                 CDEBUG(level, "  Node: NID %s (rhandle: "LPX64")\n",
1708                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1709                        lock->l_remote_handle.cookie);
1710         }
1711         CDEBUG(level, "  Resource: %p ("LPU64"/"LPU64"/"LPU64")\n",
1712                   lock->l_resource,
1713                   lock->l_resource->lr_name.name[0],
1714                   lock->l_resource->lr_name.name[1],
1715                   lock->l_resource->lr_name.name[2]);
1716         CDEBUG(level, "  Req mode: %s, grant mode: %s, rc: %u, read: %d, "
1717                "write: %d flags: %#x\n", ldlm_lockname[lock->l_req_mode],
1718                ldlm_lockname[lock->l_granted_mode],
1719                atomic_read(&lock->l_refc), lock->l_readers, lock->l_writers,
1720                lock->l_flags);
1721         if (lock->l_resource->lr_type == LDLM_EXTENT)
1722                 CDEBUG(level, "  Extent: "LPU64" -> "LPU64
1723                        " (req "LPU64"-"LPU64")\n",
1724                        lock->l_policy_data.l_extent.start,
1725                        lock->l_policy_data.l_extent.end,
1726                        lock->l_req_extent.start, lock->l_req_extent.end);
1727         else if (lock->l_resource->lr_type == LDLM_FLOCK)
1728                 CDEBUG(level, "  Pid: %d Extent: "LPU64" -> "LPU64"\n",
1729                        lock->l_policy_data.l_flock.pid,
1730                        lock->l_policy_data.l_flock.start,
1731                        lock->l_policy_data.l_flock.end);
1732        else if (lock->l_resource->lr_type == LDLM_IBITS)
1733                 CDEBUG(level, "  Bits: "LPX64"\n",
1734                        lock->l_policy_data.l_inodebits.bits);
1735 }
1736
1737 void ldlm_lock_dump_handle(int level, struct lustre_handle *lockh)
1738 {
1739         struct ldlm_lock *lock;
1740
1741         if (!((libcfs_debug | D_ERROR) & level))
1742                 return;
1743
1744         lock = ldlm_handle2lock(lockh);
1745         if (lock == NULL)
1746                 return;
1747
1748         ldlm_lock_dump(D_OTHER, lock, 0);
1749
1750         LDLM_LOCK_PUT(lock);
1751 }
1752
1753 void _ldlm_lock_debug(struct ldlm_lock *lock, __u32 level,
1754                       struct libcfs_debug_msg_data *data, const char *fmt,
1755                       ...)
1756 {
1757         va_list args;
1758         cfs_debug_limit_state_t *cdls = data->msg_cdls;
1759         
1760         va_start(args, fmt);
1761
1762         if (lock->l_resource == NULL) {
1763                 libcfs_debug_vmsg2(cdls, data->msg_subsys, level, data->msg_file,
1764                                    data->msg_fn, data->msg_line, fmt, args,
1765                        " ns: \?\? lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
1766                        "res: \?\? rrc=\?\? type: \?\?\? flags: %x remote: "
1767                        LPX64" expref: %d pid: %u\n", lock,
1768                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
1769                        lock->l_readers, lock->l_writers,
1770                        ldlm_lockname[lock->l_granted_mode],
1771                        ldlm_lockname[lock->l_req_mode],
1772                        lock->l_flags, lock->l_remote_handle.cookie,
1773                        lock->l_export ?
1774                        atomic_read(&lock->l_export->exp_refcount) : -99,
1775                        lock->l_pid);
1776                 va_end(args);
1777                 return;
1778         }
1779
1780         switch (lock->l_resource->lr_type) {
1781         case LDLM_EXTENT:
1782                 libcfs_debug_vmsg2(cdls, data->msg_subsys, level, data->msg_file,
1783                                    data->msg_fn, data->msg_line, fmt, args,
1784                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
1785                        "res: "LPU64"/"LPU64" rrc: %d type: %s ["LPU64"->"LPU64
1786                        "] (req "LPU64"->"LPU64") flags: %x remote: "LPX64
1787                        " expref: %d pid: %u\n",
1788                        lock->l_resource->lr_namespace->ns_name, lock,
1789                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
1790                        lock->l_readers, lock->l_writers,
1791                        ldlm_lockname[lock->l_granted_mode],
1792                        ldlm_lockname[lock->l_req_mode],
1793                        lock->l_resource->lr_name.name[0],
1794                        lock->l_resource->lr_name.name[1],
1795                        atomic_read(&lock->l_resource->lr_refcount),
1796                        ldlm_typename[lock->l_resource->lr_type],
1797                        lock->l_policy_data.l_extent.start,
1798                        lock->l_policy_data.l_extent.end,
1799                        lock->l_req_extent.start, lock->l_req_extent.end,
1800                        lock->l_flags, lock->l_remote_handle.cookie,
1801                        lock->l_export ?
1802                        atomic_read(&lock->l_export->exp_refcount) : -99,
1803                        lock->l_pid);
1804                 break;
1805
1806         case LDLM_FLOCK:
1807                 libcfs_debug_vmsg2(cdls, data->msg_subsys, level, data->msg_file,
1808                                    data->msg_fn, data->msg_line, fmt, args,
1809                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
1810                        "res: "LPU64"/"LPU64" rrc: %d type: %s pid: %d "
1811                        "["LPU64"->"LPU64"] flags: %x remote: "LPX64
1812                        " expref: %d pid: %u\n",
1813                        lock->l_resource->lr_namespace->ns_name, lock,
1814                        lock->l_handle.h_cookie, atomic_read(&lock->l_refc),
1815                        lock->l_readers, lock->l_writers,
1816                        ldlm_lockname[lock->l_granted_mode],
1817                        ldlm_lockname[lock->l_req_mode],
1818                        lock->l_resource->lr_name.name[0],
1819                        lock->l_resource->lr_name.name[1],
1820                        atomic_read(&lock->l_resource->lr_refcount),
1821                        ldlm_typename[lock->l_resource->lr_type],
1822                        lock->l_policy_data.l_flock.pid,
1823                        lock->l_policy_data.l_flock.start,
1824                        lock->l_policy_data.l_flock.end,
1825                        lock->l_flags, lock->l_remote_handle.cookie,
1826                        lock->l_export ?
1827                        atomic_read(&lock->l_export->exp_refcount) : -99,
1828                        lock->l_pid);
1829                 break;
1830
1831         case LDLM_IBITS:
1832                 libcfs_debug_vmsg2(cdls, data->msg_subsys, level, data->msg_file,
1833                                    data->msg_fn, data->msg_line, fmt, args,
1834                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
1835                        "res: "LPU64"/"LPU64" bits "LPX64" rrc: %d type: %s "
1836                        "flags: %x remote: "LPX64" expref: %d "
1837                        "pid %u\n",
1838                        lock->l_resource->lr_namespace->ns_name,
1839                        lock, lock->l_handle.h_cookie,
1840                        atomic_read (&lock->l_refc),
1841                        lock->l_readers, lock->l_writers,
1842                        ldlm_lockname[lock->l_granted_mode],
1843                        ldlm_lockname[lock->l_req_mode],
1844                        lock->l_resource->lr_name.name[0],
1845                        lock->l_resource->lr_name.name[1],
1846                        lock->l_policy_data.l_inodebits.bits,
1847                        atomic_read(&lock->l_resource->lr_refcount),
1848                        ldlm_typename[lock->l_resource->lr_type],
1849                        lock->l_flags, lock->l_remote_handle.cookie,
1850                        lock->l_export ?
1851                        atomic_read(&lock->l_export->exp_refcount) : -99,
1852                        lock->l_pid);
1853                 break;
1854
1855         default:
1856                 libcfs_debug_vmsg2(cdls, data->msg_subsys, level, data->msg_file,
1857                                    data->msg_fn, data->msg_line, fmt, args,
1858                        " ns: %s lock: %p/"LPX64" lrc: %d/%d,%d mode: %s/%s "
1859                        "res: "LPU64"/"LPU64" rrc: %d type: %s flags: %x "
1860                        "remote: "LPX64" expref: %d pid: %u\n",
1861                        lock->l_resource->lr_namespace->ns_name,
1862                        lock, lock->l_handle.h_cookie,
1863                        atomic_read (&lock->l_refc),
1864                        lock->l_readers, lock->l_writers,
1865                        ldlm_lockname[lock->l_granted_mode],
1866                        ldlm_lockname[lock->l_req_mode],
1867                        lock->l_resource->lr_name.name[0],
1868                        lock->l_resource->lr_name.name[1],
1869                        atomic_read(&lock->l_resource->lr_refcount),
1870                        ldlm_typename[lock->l_resource->lr_type],
1871                        lock->l_flags, lock->l_remote_handle.cookie,
1872                        lock->l_export ?
1873                        atomic_read(&lock->l_export->exp_refcount) : -99,
1874                        lock->l_pid);
1875                 break;
1876         }
1877         va_end(args);
1878 }
1879 EXPORT_SYMBOL(_ldlm_lock_debug);