Whamcloud - gitweb
LU-3285 mdc: add IO stats in mdc
[fs/lustre-release.git] / lustre / ldlm / ldlm_request.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2010, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32 /**
33  * This file contains Asynchronous System Trap (AST) handlers and related
34  * LDLM request-processing routines.
35  *
36  * An AST is a callback issued on a lock when its state is changed. There are
37  * several different types of ASTs (callbacks) registered for each lock:
38  *
39  * - completion AST: when a lock is enqueued by some process, but cannot be
40  *   granted immediately due to other conflicting locks on the same resource,
41  *   the completion AST is sent to notify the caller when the lock is
42  *   eventually granted
43  *
44  * - blocking AST: when a lock is granted to some process, if another process
45  *   enqueues a conflicting (blocking) lock on a resource, a blocking AST is
46  *   sent to notify the holder(s) of the lock(s) of the conflicting lock
47  *   request. The lock holder(s) must release their lock(s) on that resource in
48  *   a timely manner or be evicted by the server.
49  *
50  * - glimpse AST: this is used when a process wants information about a lock
51  *   (i.e. the lock value block (LVB)) but does not necessarily require holding
52  *   the lock. If the resource is locked, the lock holder(s) are sent glimpse
53  *   ASTs and the LVB is returned to the caller, and lock holder(s) may CANCEL
54  *   their lock(s) if they are idle. If the resource is not locked, the server
55  *   may grant the lock.
56  */
57
58 #define DEBUG_SUBSYSTEM S_LDLM
59
60 #include <lustre_errno.h>
61 #include <lustre_dlm.h>
62 #include <obd_class.h>
63 #include <obd.h>
64
65 #include "ldlm_internal.h"
66
67 unsigned int ldlm_enqueue_min = OBD_TIMEOUT_DEFAULT;
68 module_param(ldlm_enqueue_min, uint, 0644);
69 MODULE_PARM_DESC(ldlm_enqueue_min, "lock enqueue timeout minimum");
70
71 /* in client side, whether the cached locks will be canceled before replay */
72 unsigned int ldlm_cancel_unused_locks_before_replay = 1;
73
74 static void interrupted_completion_wait(void *data)
75 {
76 }
77
78 struct lock_wait_data {
79         struct ldlm_lock *lwd_lock;
80         __u32             lwd_conn_cnt;
81 };
82
83 struct ldlm_async_args {
84         struct lustre_handle lock_handle;
85 };
86
87 /**
88  * ldlm_request_bufsize
89  *
90  * If opcode=LDLM_ENQUEUE, 1 slot is already occupied,
91  * LDLM_LOCKREQ_HANDLE -1 slots are available.
92  * Otherwise, LDLM_LOCKREQ_HANDLE slots are available.
93  *
94  * \param[in] count
95  * \param[in] type
96  *
97  * \retval size of the request buffer
98  */
99
100 int ldlm_request_bufsize(int count, int type)
101 {
102         int avail = LDLM_LOCKREQ_HANDLES;
103         if (type == LDLM_ENQUEUE)
104                 avail -= LDLM_ENQUEUE_CANCEL_OFF;
105
106         if (count > avail)
107                 avail = (count - avail) * sizeof(struct lustre_handle);
108         else
109                 avail = 0;
110
111         return sizeof(struct ldlm_request) + avail;
112 }
113
114 int ldlm_expired_completion_wait(void *data)
115 {
116         struct lock_wait_data *lwd = data;
117         struct ldlm_lock *lock = lwd->lwd_lock;
118         struct obd_import *imp;
119         struct obd_device *obd;
120
121         ENTRY;
122         if (lock->l_conn_export == NULL) {
123                 static cfs_time_t next_dump = 0, last_dump = 0;
124
125                 LDLM_ERROR(lock, "lock timed out (enqueued at %lld, %llds ago); "
126                            "not entering recovery in server code, just going back to sleep",
127                            (s64)lock->l_last_activity,
128                            (s64)(ktime_get_real_seconds() -
129                                  lock->l_last_activity));
130                 if (cfs_time_after(cfs_time_current(), next_dump)) {
131                         last_dump = next_dump;
132                         next_dump = cfs_time_shift(300);
133                         ldlm_namespace_dump(D_DLMTRACE,
134                                             ldlm_lock_to_ns(lock));
135                         if (last_dump == 0)
136                                 libcfs_debug_dumplog();
137                 }
138                 RETURN(0);
139         }
140
141         obd = lock->l_conn_export->exp_obd;
142         imp = obd->u.cli.cl_import;
143         ptlrpc_fail_import(imp, lwd->lwd_conn_cnt);
144         LDLM_ERROR(lock, "lock timed out (enqueued at %lld, %llds ago), entering recovery for %s@%s",
145                   (s64)lock->l_last_activity,
146                   (s64)(ktime_get_real_seconds() - lock->l_last_activity),
147                   obd2cli_tgt(obd), imp->imp_connection->c_remote_uuid.uuid);
148
149         RETURN(0);
150 }
151
152 /**
153  * Calculate the Completion timeout (covering enqueue, BL AST, data flush,
154  * lock cancel, and their replies). Used for lock completion timeout on the
155  * client side.
156  *
157  * \param[in] lock        lock which is waiting the completion callback
158  *
159  * \retval            timeout in seconds to wait for the server reply
160  */
161
162 /* We use the same basis for both server side and client side functions
163    from a single node. */
164 static unsigned int ldlm_cp_timeout(struct ldlm_lock *lock)
165 {
166         unsigned int timeout;
167
168         if (AT_OFF)
169                 return obd_timeout;
170
171         /* Wait a long time for enqueue - server may have to callback a
172          * lock from another client.  Server will evict the other client if it
173          * doesn't respond reasonably, and then give us the lock. */
174         timeout = at_get(ldlm_lock_to_ns_at(lock));
175         return max(3 * timeout, ldlm_enqueue_min);
176 }
177
178 /**
179  * Helper function for ldlm_completion_ast(), updating timings when lock is
180  * actually granted.
181  */
182 static int ldlm_completion_tail(struct ldlm_lock *lock, void *data)
183 {
184         time64_t delay;
185         int result = 0;
186
187         if (ldlm_is_destroyed(lock) || ldlm_is_failed(lock)) {
188                 LDLM_DEBUG(lock, "client-side enqueue: destroyed");
189                 result = -EIO;
190         } else if (data == NULL) {
191                 LDLM_DEBUG(lock, "client-side enqueue: granted");
192         } else {
193                 /* Take into AT only CP RPC, not immediately granted locks */
194                 delay = ktime_get_real_seconds() - lock->l_last_activity;
195                 LDLM_DEBUG(lock, "client-side enqueue: granted after %llds",
196                            (s64)delay);
197
198                 /* Update our time estimate */
199                 at_measured(ldlm_lock_to_ns_at(lock), delay);
200         }
201         return result;
202 }
203
204 /**
205  * Implementation of ->l_completion_ast() for a client, that doesn't wait
206  * until lock is granted. Suitable for locks enqueued through ptlrpcd, of
207  * other threads that cannot block for long.
208  */
209 int ldlm_completion_ast_async(struct ldlm_lock *lock, __u64 flags, void *data)
210 {
211         ENTRY;
212
213         if (flags == LDLM_FL_WAIT_NOREPROC) {
214                 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
215                 RETURN(0);
216         }
217
218         if (!(flags & LDLM_FL_BLOCKED_MASK)) {
219                 wake_up(&lock->l_waitq);
220                 RETURN(ldlm_completion_tail(lock, data));
221         }
222
223         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
224                    "going forward");
225         ldlm_reprocess_all(lock->l_resource);
226         RETURN(0);
227 }
228 EXPORT_SYMBOL(ldlm_completion_ast_async);
229
230 /**
231  * Generic LDLM "completion" AST. This is called in several cases:
232  *
233  *     - when a reply to an ENQUEUE RPC is received from the server
234  *       (ldlm_cli_enqueue_fini()). Lock might be granted or not granted at
235  *       this point (determined by flags);
236  *
237  *     - when LDLM_CP_CALLBACK RPC comes to client to notify it that lock has
238  *       been granted;
239  *
240  *     - when ldlm_lock_match(LDLM_FL_LVB_READY) is about to wait until lock
241  *       gets correct lvb;
242  *
243  *     - to force all locks when resource is destroyed (cleanup_resource());
244  *
245  *     - during lock conversion (not used currently).
246  *
247  * If lock is not granted in the first case, this function waits until second
248  * or penultimate cases happen in some other thread.
249  *
250  */
251 int ldlm_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data)
252 {
253         /* XXX ALLOCATE - 160 bytes */
254         struct lock_wait_data lwd;
255         struct obd_device *obd;
256         struct obd_import *imp = NULL;
257         struct l_wait_info lwi;
258         __u32 timeout;
259         int rc = 0;
260         ENTRY;
261
262         if (flags == LDLM_FL_WAIT_NOREPROC) {
263                 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
264                 goto noreproc;
265         }
266
267         if (!(flags & LDLM_FL_BLOCKED_MASK)) {
268                 wake_up(&lock->l_waitq);
269                 RETURN(0);
270         }
271
272         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
273                    "sleeping");
274
275 noreproc:
276
277         obd = class_exp2obd(lock->l_conn_export);
278
279         /* if this is a local lock, then there is no import */
280         if (obd != NULL) {
281                 imp = obd->u.cli.cl_import;
282         }
283
284         timeout = ldlm_cp_timeout(lock);
285
286         lwd.lwd_lock = lock;
287         lock->l_last_activity = cfs_time_current_sec();
288
289         if (ldlm_is_no_timeout(lock)) {
290                 LDLM_DEBUG(lock, "waiting indefinitely because of NO_TIMEOUT");
291                 lwi = LWI_INTR(interrupted_completion_wait, &lwd);
292         } else {
293                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout),
294                                        ldlm_expired_completion_wait,
295                                        interrupted_completion_wait, &lwd);
296         }
297
298         if (imp != NULL) {
299                 spin_lock(&imp->imp_lock);
300                 lwd.lwd_conn_cnt = imp->imp_conn_cnt;
301                 spin_unlock(&imp->imp_lock);
302         }
303
304         if (ns_is_client(ldlm_lock_to_ns(lock)) &&
305             OBD_FAIL_CHECK_RESET(OBD_FAIL_LDLM_INTR_CP_AST,
306                                  OBD_FAIL_LDLM_CP_BL_RACE | OBD_FAIL_ONCE)) {
307                 ldlm_set_fail_loc(lock);
308                 rc = -EINTR;
309         } else {
310                 /* Go to sleep until the lock is granted or cancelled. */
311                 rc = l_wait_event(lock->l_waitq,
312                                   is_granted_or_cancelled(lock), &lwi);
313         }
314
315         if (rc) {
316                 LDLM_DEBUG(lock, "client-side enqueue waking up: failed (%d)",
317                            rc);
318                 RETURN(rc);
319         }
320
321         RETURN(ldlm_completion_tail(lock, data));
322 }
323 EXPORT_SYMBOL(ldlm_completion_ast);
324
325 /**
326  * A helper to build a blocking AST function
327  *
328  * Perform a common operation for blocking ASTs:
329  * defferred lock cancellation.
330  *
331  * \param lock the lock blocking or canceling AST was called on
332  * \retval 0
333  * \see mdt_blocking_ast
334  * \see ldlm_blocking_ast
335  */
336 int ldlm_blocking_ast_nocheck(struct ldlm_lock *lock)
337 {
338         int do_ast;
339         ENTRY;
340
341         ldlm_set_cbpending(lock);
342         do_ast = (!lock->l_readers && !lock->l_writers);
343         unlock_res_and_lock(lock);
344
345         if (do_ast) {
346                 struct lustre_handle lockh;
347                 int rc;
348
349                 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
350                 ldlm_lock2handle(lock, &lockh);
351                 rc = ldlm_cli_cancel(&lockh, LCF_ASYNC);
352                 if (rc < 0)
353                         CERROR("ldlm_cli_cancel: %d\n", rc);
354         } else {
355                 LDLM_DEBUG(lock, "Lock still has references, will be "
356                            "cancelled later");
357         }
358         RETURN(0);
359 }
360 EXPORT_SYMBOL(ldlm_blocking_ast_nocheck);
361
362 /**
363  * Server blocking AST
364  *
365  * ->l_blocking_ast() callback for LDLM locks acquired by server-side
366  * OBDs.
367  *
368  * \param lock the lock which blocks a request or cancelling lock
369  * \param desc unused
370  * \param data unused
371  * \param flag indicates whether this cancelling or blocking callback
372  * \retval 0
373  * \see ldlm_blocking_ast_nocheck
374  */
375 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
376                       void *data, int flag)
377 {
378         ENTRY;
379
380         if (flag == LDLM_CB_CANCELING) {
381                 /* Don't need to do anything here. */
382                 RETURN(0);
383         }
384
385         lock_res_and_lock(lock);
386         /* Get this: if ldlm_blocking_ast is racing with intent_policy, such
387          * that ldlm_blocking_ast is called just before intent_policy method
388          * takes the lr_lock, then by the time we get the lock, we might not
389          * be the correct blocking function anymore.  So check, and return
390          * early, if so. */
391         if (lock->l_blocking_ast != ldlm_blocking_ast) {
392                 unlock_res_and_lock(lock);
393                 RETURN(0);
394         }
395         RETURN(ldlm_blocking_ast_nocheck(lock));
396 }
397 EXPORT_SYMBOL(ldlm_blocking_ast);
398
399 /**
400  * Implements ldlm_lock::l_glimpse_ast for extent locks acquired on the server.
401  *
402  * Returning -ELDLM_NO_LOCK_DATA actually works, but the reason for that is
403  * rather subtle: with OST-side locking, it may so happen that _all_ extent
404  * locks are held by the OST. If client wants to obtain the current file size
405  * it calls ll_glimpse_size(), and (as all locks are held only on the server),
406  * this dummy glimpse callback fires and does nothing. The client still
407  * receives the correct file size due to the following fragment of code in
408  * ldlm_cb_interpret():
409  *
410  *      if (rc == -ELDLM_NO_LOCK_DATA) {
411  *              LDLM_DEBUG(lock, "lost race - client has a lock but no"
412  *                         "inode");
413  *              ldlm_res_lvbo_update(lock->l_resource, NULL, 1);
414  *      }
415  *
416  * That is, after the glimpse returns this error, ofd_lvbo_update() is called
417  * and returns the updated file attributes from the inode to the client.
418  *
419  * See also comment in ofd_intent_policy() on why servers must set a non-NULL
420  * l_glimpse_ast when grabbing DLM locks.  Otherwise, the server will assume
421  * that the object is in the process of being destroyed.
422  *
423  * \param[in] lock      DLM lock being glimpsed, unused
424  * \param[in] reqp      pointer to ptlrpc_request, unused
425  *
426  * \retval              -ELDLM_NO_LOCK_DATA to get attributes from disk object
427  */
428 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp)
429 {
430         return -ELDLM_NO_LOCK_DATA;
431 }
432
433 /**
434  * Enqueue a local lock (typically on a server).
435  */
436 int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
437                            const struct ldlm_res_id *res_id,
438                            enum ldlm_type type, union ldlm_policy_data *policy,
439                            enum ldlm_mode mode, __u64 *flags,
440                            ldlm_blocking_callback blocking,
441                            ldlm_completion_callback completion,
442                            ldlm_glimpse_callback glimpse,
443                            void *data, __u32 lvb_len, enum lvb_type lvb_type,
444                            const __u64 *client_cookie,
445                            struct lustre_handle *lockh)
446 {
447         struct ldlm_lock *lock;
448         int err;
449         const struct ldlm_callback_suite cbs = { .lcs_completion = completion,
450                                                  .lcs_blocking   = blocking,
451                                                  .lcs_glimpse    = glimpse,
452         };
453         ENTRY;
454
455         LASSERT(!(*flags & LDLM_FL_REPLAY));
456         if (unlikely(ns_is_client(ns))) {
457                 CERROR("Trying to enqueue local lock in a shadow namespace\n");
458                 LBUG();
459         }
460
461         lock = ldlm_lock_create(ns, res_id, type, mode, &cbs, data, lvb_len,
462                                 lvb_type);
463         if (IS_ERR(lock))
464                 GOTO(out_nolock, err = PTR_ERR(lock));
465
466         err = ldlm_lvbo_init(lock->l_resource);
467         if (err < 0) {
468                 LDLM_ERROR(lock, "delayed lvb init failed (rc %d)", err);
469                 GOTO(out, err);
470         }
471
472         ldlm_lock2handle(lock, lockh);
473
474         /* NB: we don't have any lock now (lock_res_and_lock)
475          * because it's a new lock */
476         ldlm_lock_addref_internal_nolock(lock, mode);
477         ldlm_set_local(lock);
478         if (*flags & LDLM_FL_ATOMIC_CB)
479                 ldlm_set_atomic_cb(lock);
480
481         if (policy != NULL)
482                 lock->l_policy_data = *policy;
483         if (client_cookie != NULL)
484                 lock->l_client_cookie = *client_cookie;
485         if (type == LDLM_EXTENT) {
486                 /* extent lock without policy is a bug */
487                 if (policy == NULL)
488                         LBUG();
489
490                 lock->l_req_extent = policy->l_extent;
491         }
492
493         err = ldlm_lock_enqueue(ns, &lock, policy, flags);
494         if (unlikely(err != ELDLM_OK))
495                 GOTO(out, err);
496
497         if (policy != NULL)
498                 *policy = lock->l_policy_data;
499
500         if (lock->l_completion_ast)
501                 lock->l_completion_ast(lock, *flags, NULL);
502
503         LDLM_DEBUG(lock, "client-side local enqueue handler, new lock created");
504         EXIT;
505  out:
506         LDLM_LOCK_RELEASE(lock);
507  out_nolock:
508         return err;
509 }
510 EXPORT_SYMBOL(ldlm_cli_enqueue_local);
511
512 static void failed_lock_cleanup(struct ldlm_namespace *ns,
513                                 struct ldlm_lock *lock, int mode)
514 {
515         int need_cancel = 0;
516
517         /* Set a flag to prevent us from sending a CANCEL (bug 407) */
518         lock_res_and_lock(lock);
519         /* Check that lock is not granted or failed, we might race. */
520         if ((lock->l_req_mode != lock->l_granted_mode) &&
521             !ldlm_is_failed(lock)) {
522                 /* Make sure that this lock will not be found by raced
523                  * bl_ast and -EINVAL reply is sent to server anyways.
524                  * b=17645*/
525                 lock->l_flags |= LDLM_FL_LOCAL_ONLY | LDLM_FL_FAILED |
526                                  LDLM_FL_ATOMIC_CB | LDLM_FL_CBPENDING;
527                 need_cancel = 1;
528         }
529         unlock_res_and_lock(lock);
530
531         if (need_cancel)
532                 LDLM_DEBUG(lock,
533                            "setting FL_LOCAL_ONLY | LDLM_FL_FAILED | "
534                            "LDLM_FL_ATOMIC_CB | LDLM_FL_CBPENDING");
535         else
536                 LDLM_DEBUG(lock, "lock was granted or failed in race");
537
538         /* XXX - HACK because we shouldn't call ldlm_lock_destroy()
539          *       from llite/file.c/ll_file_flock(). */
540         /* This code makes for the fact that we do not have blocking handler on
541          * a client for flock locks. As such this is the place where we must
542          * completely kill failed locks. (interrupted and those that
543          * were waiting to be granted when server evicted us. */
544         if (lock->l_resource->lr_type == LDLM_FLOCK) {
545                 lock_res_and_lock(lock);
546                 if (!ldlm_is_destroyed(lock)) {
547                         ldlm_resource_unlink_lock(lock);
548                         ldlm_lock_decref_internal_nolock(lock, mode);
549                         ldlm_lock_destroy_nolock(lock);
550                 }
551                 unlock_res_and_lock(lock);
552         } else {
553                 ldlm_lock_decref_internal(lock, mode);
554         }
555 }
556
557 /**
558  * Finishing portion of client lock enqueue code.
559  *
560  * Called after receiving reply from server.
561  */
562 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
563                           enum ldlm_type type, __u8 with_policy,
564                           enum ldlm_mode mode, __u64 *flags, void *lvb,
565                           __u32 lvb_len, const struct lustre_handle *lockh,
566                           int rc)
567 {
568         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
569         int is_replay = *flags & LDLM_FL_REPLAY;
570         struct ldlm_lock *lock;
571         struct ldlm_reply *reply;
572         int cleanup_phase = 1;
573         ENTRY;
574
575         lock = ldlm_handle2lock(lockh);
576         /* ldlm_cli_enqueue is holding a reference on this lock. */
577         if (!lock) {
578                 LASSERT(type == LDLM_FLOCK);
579                 RETURN(-ENOLCK);
580         }
581
582         LASSERTF(ergo(lvb_len != 0, lvb_len == lock->l_lvb_len),
583                  "lvb_len = %d, l_lvb_len = %d\n", lvb_len, lock->l_lvb_len);
584
585         if (rc != ELDLM_OK) {
586                 LASSERT(!is_replay);
587                 LDLM_DEBUG(lock, "client-side enqueue END (%s)",
588                            rc == ELDLM_LOCK_ABORTED ? "ABORTED" : "FAILED");
589
590                 if (rc != ELDLM_LOCK_ABORTED)
591                         GOTO(cleanup, rc);
592         }
593
594         /* Before we return, swab the reply */
595         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
596         if (reply == NULL)
597                 GOTO(cleanup, rc = -EPROTO);
598
599         if (lvb_len > 0) {
600                 int size = 0;
601
602                 size = req_capsule_get_size(&req->rq_pill, &RMF_DLM_LVB,
603                                             RCL_SERVER);
604                 if (size < 0) {
605                         LDLM_ERROR(lock, "Fail to get lvb_len, rc = %d", size);
606                         GOTO(cleanup, rc = size);
607                 } else if (unlikely(size > lvb_len)) {
608                         LDLM_ERROR(lock, "Replied LVB is larger than "
609                                    "expectation, expected = %d, replied = %d",
610                                    lvb_len, size);
611                         GOTO(cleanup, rc = -EINVAL);
612                 }
613                 lvb_len = size;
614         }
615
616         if (rc == ELDLM_LOCK_ABORTED) {
617                 if (lvb_len > 0 && lvb != NULL)
618                         rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
619                                            lvb, lvb_len);
620                 GOTO(cleanup, rc = rc ? : ELDLM_LOCK_ABORTED);
621         }
622
623         /* lock enqueued on the server */
624         cleanup_phase = 0;
625
626         lock_res_and_lock(lock);
627         /* Key change rehash lock in per-export hash with new key */
628         if (exp->exp_lock_hash) {
629                 /* In the function below, .hs_keycmp resolves to
630                  * ldlm_export_lock_keycmp() */
631                 /* coverity[overrun-buffer-val] */
632                 cfs_hash_rehash_key(exp->exp_lock_hash,
633                                     &lock->l_remote_handle,
634                                     &reply->lock_handle,
635                                     &lock->l_exp_hash);
636         } else {
637                 lock->l_remote_handle = reply->lock_handle;
638         }
639
640         *flags = ldlm_flags_from_wire(reply->lock_flags);
641         lock->l_flags |= ldlm_flags_from_wire(reply->lock_flags &
642                                               LDLM_FL_INHERIT_MASK);
643         unlock_res_and_lock(lock);
644
645         CDEBUG(D_INFO, "local: %p, remote cookie: %#llx, flags: %#llx\n",
646                lock, reply->lock_handle.cookie, *flags);
647
648         /* If enqueue returned a blocked lock but the completion handler has
649          * already run, then it fixed up the resource and we don't need to do it
650          * again. */
651         if ((*flags) & LDLM_FL_LOCK_CHANGED) {
652                 int newmode = reply->lock_desc.l_req_mode;
653                 LASSERT(!is_replay);
654                 if (newmode && newmode != lock->l_req_mode) {
655                         LDLM_DEBUG(lock, "server returned different mode %s",
656                                    ldlm_lockname[newmode]);
657                         lock->l_req_mode = newmode;
658                 }
659
660                 if (!ldlm_res_eq(&reply->lock_desc.l_resource.lr_name,
661                                  &lock->l_resource->lr_name)) {
662                         CDEBUG(D_INFO, "remote intent success, locking "DLDLMRES
663                                        " instead of "DLDLMRES"\n",
664                                PLDLMRES(&reply->lock_desc.l_resource),
665                                PLDLMRES(lock->l_resource));
666
667                         rc = ldlm_lock_change_resource(ns, lock,
668                                         &reply->lock_desc.l_resource.lr_name);
669                         if (rc || lock->l_resource == NULL)
670                                 GOTO(cleanup, rc = -ENOMEM);
671                         LDLM_DEBUG(lock, "client-side enqueue, new resource");
672                 }
673                 if (with_policy)
674                         if (!(type == LDLM_IBITS &&
675                               !(exp_connect_flags(exp) & OBD_CONNECT_IBITS)))
676                                 /* We assume lock type cannot change on server*/
677                                 ldlm_convert_policy_to_local(exp,
678                                                 lock->l_resource->lr_type,
679                                                 &reply->lock_desc.l_policy_data,
680                                                 &lock->l_policy_data);
681                 if (type != LDLM_PLAIN)
682                         LDLM_DEBUG(lock,"client-side enqueue, new policy data");
683         }
684
685         if ((*flags) & LDLM_FL_AST_SENT) {
686                 lock_res_and_lock(lock);
687                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
688                 unlock_res_and_lock(lock);
689                 LDLM_DEBUG(lock, "enqueue reply includes blocking AST");
690         }
691
692         /* If the lock has already been granted by a completion AST, don't
693          * clobber the LVB with an older one. */
694         if (lvb_len > 0) {
695                 /* We must lock or a racing completion might update lvb without
696                  * letting us know and we'll clobber the correct value.
697                  * Cannot unlock after the check either, a that still leaves
698                  * a tiny window for completion to get in */
699                 lock_res_and_lock(lock);
700                 if (lock->l_req_mode != lock->l_granted_mode)
701                         rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
702                                            lock->l_lvb_data, lvb_len);
703                 unlock_res_and_lock(lock);
704                 if (rc < 0) {
705                         cleanup_phase = 1;
706                         GOTO(cleanup, rc);
707                 }
708         }
709
710         if (!is_replay) {
711                 rc = ldlm_lock_enqueue(ns, &lock, NULL, flags);
712                 if (lock->l_completion_ast != NULL) {
713                         int err = lock->l_completion_ast(lock, *flags, NULL);
714                         if (!rc)
715                                 rc = err;
716                         if (rc)
717                                 cleanup_phase = 1;
718                 }
719         }
720
721         if (lvb_len > 0 && lvb != NULL) {
722                 /* Copy the LVB here, and not earlier, because the completion
723                  * AST (if any) can override what we got in the reply */
724                 memcpy(lvb, lock->l_lvb_data, lvb_len);
725         }
726
727         LDLM_DEBUG(lock, "client-side enqueue END");
728         EXIT;
729 cleanup:
730         if (cleanup_phase == 1 && rc)
731                 failed_lock_cleanup(ns, lock, mode);
732         /* Put lock 2 times, the second reference is held by ldlm_cli_enqueue */
733         LDLM_LOCK_PUT(lock);
734         LDLM_LOCK_RELEASE(lock);
735         return rc;
736 }
737 EXPORT_SYMBOL(ldlm_cli_enqueue_fini);
738
739 /**
740  * Estimate number of lock handles that would fit into request of given
741  * size.  PAGE_SIZE-512 is to allow TCP/IP and LNET headers to fit into
742  * a single page on the send/receive side. XXX: 512 should be changed to
743  * more adequate value.
744  */
745 static inline int ldlm_req_handles_avail(int req_size, int off)
746 {
747         int avail;
748
749         avail = min_t(int, LDLM_MAXREQSIZE, PAGE_SIZE - 512) - req_size;
750         if (likely(avail >= 0))
751                 avail /= (int)sizeof(struct lustre_handle);
752         else
753                 avail = 0;
754         avail += LDLM_LOCKREQ_HANDLES - off;
755
756         return avail;
757 }
758
759 static inline int ldlm_capsule_handles_avail(struct req_capsule *pill,
760                                              enum req_location loc,
761                                              int off)
762 {
763         __u32 size = req_capsule_msg_size(pill, loc);
764         return ldlm_req_handles_avail(size, off);
765 }
766
767 static inline int ldlm_format_handles_avail(struct obd_import *imp,
768                                             const struct req_format *fmt,
769                                             enum req_location loc, int off)
770 {
771         __u32 size = req_capsule_fmt_size(imp->imp_msg_magic, fmt, loc);
772         return ldlm_req_handles_avail(size, off);
773 }
774
775 /**
776  * Cancel LRU locks and pack them into the enqueue request. Pack there the given
777  * \a count locks in \a cancels.
778  *
779  * This is to be called by functions preparing their own requests that
780  * might contain lists of locks to cancel in addition to actual operation
781  * that needs to be performed.
782  */
783 int ldlm_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
784                       int version, int opc, int canceloff,
785                       struct list_head *cancels, int count)
786         {
787         struct ldlm_namespace   *ns = exp->exp_obd->obd_namespace;
788         struct req_capsule      *pill = &req->rq_pill;
789         struct ldlm_request     *dlm = NULL;
790         struct list_head        head = LIST_HEAD_INIT(head);
791         enum ldlm_lru_flags lru_flags;
792         int avail, to_free, pack = 0;
793         int rc;
794         ENTRY;
795
796         if (cancels == NULL)
797                 cancels = &head;
798         if (ns_connect_cancelset(ns)) {
799                 /* Estimate the amount of available space in the request. */
800                 req_capsule_filled_sizes(pill, RCL_CLIENT);
801                 avail = ldlm_capsule_handles_avail(pill, RCL_CLIENT, canceloff);
802
803                 lru_flags = LDLM_LRU_FLAG_NO_WAIT | (ns_connect_lru_resize(ns) ?
804                         LDLM_LRU_FLAG_LRUR : LDLM_LRU_FLAG_AGED);
805                 to_free = !ns_connect_lru_resize(ns) &&
806                         opc == LDLM_ENQUEUE ? 1 : 0;
807
808                 /* Cancel LRU locks here _only_ if the server supports
809                  * EARLY_CANCEL. Otherwise we have to send extra CANCEL
810                  * RPC, which will make us slower. */
811                 if (avail > count)
812                         count += ldlm_cancel_lru_local(ns, cancels, to_free,
813                                                        avail - count, 0,
814                                                        lru_flags);
815                 if (avail > count)
816                         pack = count;
817                 else
818                         pack = avail;
819                 req_capsule_set_size(pill, &RMF_DLM_REQ, RCL_CLIENT,
820                                      ldlm_request_bufsize(pack, opc));
821         }
822
823         rc = ptlrpc_request_pack(req, version, opc);
824         if (rc) {
825                 ldlm_lock_list_put(cancels, l_bl_ast, count);
826                 RETURN(rc);
827         }
828
829         if (ns_connect_cancelset(ns)) {
830                 if (canceloff) {
831                         dlm = req_capsule_client_get(pill, &RMF_DLM_REQ);
832                         LASSERT(dlm);
833                         /* Skip first lock handler in ldlm_request_pack(),
834                          * this method will increment @lock_count according
835                          * to the lock handle amount actually written to
836                          * the buffer. */
837                         dlm->lock_count = canceloff;
838                 }
839                 /* Pack into the request @pack lock handles. */
840                 ldlm_cli_cancel_list(cancels, pack, req, 0);
841                 /* Prepare and send separate cancel RPC for others. */
842                 ldlm_cli_cancel_list(cancels, count - pack, NULL, 0);
843         } else {
844                 ldlm_lock_list_put(cancels, l_bl_ast, count);
845         }
846         RETURN(0);
847 }
848 EXPORT_SYMBOL(ldlm_prep_elc_req);
849
850 int ldlm_prep_enqueue_req(struct obd_export *exp, struct ptlrpc_request *req,
851                           struct list_head *cancels, int count)
852 {
853         return ldlm_prep_elc_req(exp, req, LUSTRE_DLM_VERSION, LDLM_ENQUEUE,
854                                  LDLM_ENQUEUE_CANCEL_OFF, cancels, count);
855 }
856 EXPORT_SYMBOL(ldlm_prep_enqueue_req);
857
858 struct ptlrpc_request *ldlm_enqueue_pack(struct obd_export *exp, int lvb_len)
859 {
860         struct ptlrpc_request *req;
861         int rc;
862         ENTRY;
863
864         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_LDLM_ENQUEUE);
865         if (req == NULL)
866                 RETURN(ERR_PTR(-ENOMEM));
867
868         rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
869         if (rc) {
870                 ptlrpc_request_free(req);
871                 RETURN(ERR_PTR(rc));
872         }
873
874         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER, lvb_len);
875         ptlrpc_request_set_replen(req);
876         RETURN(req);
877 }
878 EXPORT_SYMBOL(ldlm_enqueue_pack);
879
880 /**
881  * Client-side lock enqueue.
882  *
883  * If a request has some specific initialisation it is passed in \a reqp,
884  * otherwise it is created in ldlm_cli_enqueue.
885  *
886  * Supports sync and async requests, pass \a async flag accordingly. If a
887  * request was created in ldlm_cli_enqueue and it is the async request,
888  * pass it to the caller in \a reqp.
889  */
890 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
891                      struct ldlm_enqueue_info *einfo,
892                      const struct ldlm_res_id *res_id,
893                      union ldlm_policy_data const *policy, __u64 *flags,
894                      void *lvb, __u32 lvb_len, enum lvb_type lvb_type,
895                      struct lustre_handle *lockh, int async)
896 {
897         struct ldlm_namespace *ns;
898         struct ldlm_lock      *lock;
899         struct ldlm_request   *body;
900         int                    is_replay = *flags & LDLM_FL_REPLAY;
901         int                    req_passed_in = 1;
902         int                    rc, err;
903         struct ptlrpc_request *req;
904         ENTRY;
905
906         LASSERT(exp != NULL);
907
908         ns = exp->exp_obd->obd_namespace;
909
910         /* If we're replaying this lock, just check some invariants.
911          * If we're creating a new lock, get everything all setup nice. */
912         if (is_replay) {
913                 lock = ldlm_handle2lock_long(lockh, 0);
914                 LASSERT(lock != NULL);
915                 LDLM_DEBUG(lock, "client-side enqueue START");
916                 LASSERT(exp == lock->l_conn_export);
917         } else {
918                 const struct ldlm_callback_suite cbs = {
919                         .lcs_completion = einfo->ei_cb_cp,
920                         .lcs_blocking   = einfo->ei_cb_bl,
921                         .lcs_glimpse    = einfo->ei_cb_gl
922                 };
923                 lock = ldlm_lock_create(ns, res_id, einfo->ei_type,
924                                         einfo->ei_mode, &cbs, einfo->ei_cbdata,
925                                         lvb_len, lvb_type);
926                 if (IS_ERR(lock))
927                         RETURN(PTR_ERR(lock));
928                 /* for the local lock, add the reference */
929                 ldlm_lock_addref_internal(lock, einfo->ei_mode);
930                 ldlm_lock2handle(lock, lockh);
931                 if (policy != NULL)
932                         lock->l_policy_data = *policy;
933
934                 if (einfo->ei_type == LDLM_EXTENT) {
935                         /* extent lock without policy is a bug */
936                         if (policy == NULL)
937                                 LBUG();
938
939                         lock->l_req_extent = policy->l_extent;
940                 }
941                 LDLM_DEBUG(lock, "client-side enqueue START, flags %#llx",
942                            *flags);
943         }
944
945         lock->l_conn_export = exp;
946         lock->l_export = NULL;
947         lock->l_blocking_ast = einfo->ei_cb_bl;
948         lock->l_flags |= (*flags & (LDLM_FL_NO_LRU | LDLM_FL_EXCL));
949         lock->l_last_activity = cfs_time_current_sec();
950
951         /* lock not sent to server yet */
952         if (reqp == NULL || *reqp == NULL) {
953                 req = ldlm_enqueue_pack(exp, lvb_len);
954                 if (IS_ERR(req)) {
955                         failed_lock_cleanup(ns, lock, einfo->ei_mode);
956                         LDLM_LOCK_RELEASE(lock);
957                         RETURN(PTR_ERR(req));
958                 }
959
960                 req_passed_in = 0;
961                 if (reqp)
962                         *reqp = req;
963         } else {
964                 int len;
965
966                 req = *reqp;
967                 len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ,
968                                            RCL_CLIENT);
969                 LASSERTF(len >= sizeof(*body), "buflen[%d] = %d, not %d\n",
970                          DLM_LOCKREQ_OFF, len, (int)sizeof(*body));
971         }
972
973         /* Dump lock data into the request buffer */
974         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
975         ldlm_lock2desc(lock, &body->lock_desc);
976         body->lock_flags = ldlm_flags_to_wire(*flags);
977         body->lock_handle[0] = *lockh;
978
979         /* extended LDLM opcodes in client stats */
980         if (exp->exp_obd->obd_svc_stats != NULL) {
981                 bool glimpse = *flags & LDLM_FL_HAS_INTENT;
982
983                 /* OST glimpse has no intent buffer */
984                 if (req_capsule_has_field(&req->rq_pill, &RMF_LDLM_INTENT,
985                                           RCL_CLIENT)) {
986                         struct ldlm_intent *it;
987
988                         it = req_capsule_client_get(&req->rq_pill,
989                                                     &RMF_LDLM_INTENT);
990                         glimpse = (it && (it->opc == IT_GLIMPSE));
991                 }
992
993                 if (!glimpse)
994                         ldlm_svc_get_eopc(body, exp->exp_obd->obd_svc_stats);
995                 else
996                         lprocfs_counter_incr(exp->exp_obd->obd_svc_stats,
997                                              PTLRPC_LAST_CNTR +
998                                              LDLM_GLIMPSE_ENQUEUE);
999         }
1000
1001         if (async) {
1002                 LASSERT(reqp != NULL);
1003                 RETURN(0);
1004         }
1005
1006         LDLM_DEBUG(lock, "sending request");
1007
1008         rc = ptlrpc_queue_wait(req);
1009
1010         err = ldlm_cli_enqueue_fini(exp, req, einfo->ei_type, policy ? 1 : 0,
1011                                     einfo->ei_mode, flags, lvb, lvb_len,
1012                                     lockh, rc);
1013
1014         /* If ldlm_cli_enqueue_fini did not find the lock, we need to free
1015          * one reference that we took */
1016         if (err == -ENOLCK)
1017                 LDLM_LOCK_RELEASE(lock);
1018         else
1019                 rc = err;
1020
1021         if (!req_passed_in && req != NULL) {
1022                 ptlrpc_req_finished(req);
1023                 if (reqp)
1024                         *reqp = NULL;
1025         }
1026
1027         RETURN(rc);
1028 }
1029 EXPORT_SYMBOL(ldlm_cli_enqueue);
1030
1031 static int ldlm_cli_convert_local(struct ldlm_lock *lock, int new_mode,
1032                                   __u32 *flags)
1033 {
1034         struct ldlm_resource *res;
1035         int rc;
1036         ENTRY;
1037         if (ns_is_client(ldlm_lock_to_ns(lock))) {
1038                 CERROR("Trying to cancel local lock\n");
1039                 LBUG();
1040         }
1041         LDLM_DEBUG(lock, "client-side local convert");
1042
1043         res = ldlm_lock_convert(lock, new_mode, flags);
1044         if (res) {
1045                 ldlm_reprocess_all(res);
1046                 rc = 0;
1047         } else {
1048                 rc = LUSTRE_EDEADLK;
1049         }
1050         LDLM_DEBUG(lock, "client-side local convert handler END");
1051         LDLM_LOCK_PUT(lock);
1052         RETURN(rc);
1053 }
1054
1055 /* FIXME: one of ldlm_cli_convert or the server side should reject attempted
1056  * conversion of locks which are on the waiting or converting queue */
1057 /* Caller of this code is supposed to take care of lock readers/writers
1058    accounting */
1059 int ldlm_cli_convert(const struct lustre_handle *lockh, int new_mode,
1060                      __u32 *flags)
1061 {
1062         struct ldlm_request   *body;
1063         struct ldlm_reply     *reply;
1064         struct ldlm_lock      *lock;
1065         struct ldlm_resource  *res;
1066         struct ptlrpc_request *req;
1067         int                    rc;
1068         ENTRY;
1069
1070         lock = ldlm_handle2lock(lockh);
1071         if (!lock) {
1072                 LBUG();
1073                 RETURN(-EINVAL);
1074         }
1075         *flags = 0;
1076
1077         if (lock->l_conn_export == NULL)
1078                 RETURN(ldlm_cli_convert_local(lock, new_mode, flags));
1079
1080         LDLM_DEBUG(lock, "client-side convert");
1081
1082         req = ptlrpc_request_alloc_pack(class_exp2cliimp(lock->l_conn_export),
1083                                         &RQF_LDLM_CONVERT, LUSTRE_DLM_VERSION,
1084                                         LDLM_CONVERT);
1085         if (req == NULL) {
1086                 LDLM_LOCK_PUT(lock);
1087                 RETURN(-ENOMEM);
1088         }
1089
1090         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1091         body->lock_handle[0] = lock->l_remote_handle;
1092
1093         body->lock_desc.l_req_mode = new_mode;
1094         body->lock_flags = ldlm_flags_to_wire(*flags);
1095
1096
1097         ptlrpc_request_set_replen(req);
1098         rc = ptlrpc_queue_wait(req);
1099         if (rc != ELDLM_OK)
1100                 GOTO(out, rc);
1101
1102         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1103         if (reply == NULL)
1104                 GOTO(out, rc = -EPROTO);
1105
1106         if (req->rq_status)
1107                 GOTO(out, rc = req->rq_status);
1108
1109         res = ldlm_lock_convert(lock, new_mode, &reply->lock_flags);
1110         if (res != NULL) {
1111                 ldlm_reprocess_all(res);
1112                 /* Go to sleep until the lock is granted. */
1113                 /* FIXME: or cancelled. */
1114                 if (lock->l_completion_ast) {
1115                         rc = lock->l_completion_ast(lock, LDLM_FL_WAIT_NOREPROC,
1116                                                     NULL);
1117                         if (rc)
1118                                 GOTO(out, rc);
1119                 }
1120         } else {
1121                 rc = LUSTRE_EDEADLK;
1122         }
1123         EXIT;
1124  out:
1125         LDLM_LOCK_PUT(lock);
1126         ptlrpc_req_finished(req);
1127         return rc;
1128 }
1129
1130 /**
1131  * Cancel locks locally.
1132  * Returns:
1133  * \retval LDLM_FL_LOCAL_ONLY if there is no need for a CANCEL RPC to the server
1134  * \retval LDLM_FL_CANCELING otherwise;
1135  * \retval LDLM_FL_BL_AST if there is a need for a separate CANCEL RPC.
1136  */
1137 static __u64 ldlm_cli_cancel_local(struct ldlm_lock *lock)
1138 {
1139         __u64 rc = LDLM_FL_LOCAL_ONLY;
1140         ENTRY;
1141
1142         if (lock->l_conn_export) {
1143                 bool local_only;
1144
1145                 LDLM_DEBUG(lock, "client-side cancel");
1146                 /* Set this flag to prevent others from getting new references*/
1147                 lock_res_and_lock(lock);
1148                 ldlm_set_cbpending(lock);
1149                 local_only = !!(lock->l_flags &
1150                                 (LDLM_FL_LOCAL_ONLY|LDLM_FL_CANCEL_ON_BLOCK));
1151                 ldlm_cancel_callback(lock);
1152                 rc = (ldlm_is_bl_ast(lock)) ?
1153                         LDLM_FL_BL_AST : LDLM_FL_CANCELING;
1154                 unlock_res_and_lock(lock);
1155
1156                 if (local_only) {
1157                         CDEBUG(D_DLMTRACE, "not sending request (at caller's "
1158                                "instruction)\n");
1159                         rc = LDLM_FL_LOCAL_ONLY;
1160                 }
1161                 ldlm_lock_cancel(lock);
1162         } else {
1163                 if (ns_is_client(ldlm_lock_to_ns(lock))) {
1164                         LDLM_ERROR(lock, "Trying to cancel local lock");
1165                         LBUG();
1166                 }
1167                 LDLM_DEBUG(lock, "server-side local cancel");
1168                 ldlm_lock_cancel(lock);
1169                 ldlm_reprocess_all(lock->l_resource);
1170         }
1171
1172         RETURN(rc);
1173 }
1174
1175 /**
1176  * Pack \a count locks in \a head into ldlm_request buffer of request \a req.
1177  */
1178 static void ldlm_cancel_pack(struct ptlrpc_request *req,
1179                              struct list_head *head, int count)
1180 {
1181         struct ldlm_request *dlm;
1182         struct ldlm_lock *lock;
1183         int max, packed = 0;
1184         ENTRY;
1185
1186         dlm = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1187         LASSERT(dlm != NULL);
1188
1189         /* Check the room in the request buffer. */
1190         max = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT) -
1191                 sizeof(struct ldlm_request);
1192         max /= sizeof(struct lustre_handle);
1193         max += LDLM_LOCKREQ_HANDLES;
1194         LASSERT(max >= dlm->lock_count + count);
1195
1196         /* XXX: it would be better to pack lock handles grouped by resource.
1197          * so that the server cancel would call filter_lvbo_update() less
1198          * frequently. */
1199         list_for_each_entry(lock, head, l_bl_ast) {
1200                 if (!count--)
1201                         break;
1202                 LASSERT(lock->l_conn_export);
1203                 /* Pack the lock handle to the given request buffer. */
1204                 LDLM_DEBUG(lock, "packing");
1205                 dlm->lock_handle[dlm->lock_count++] = lock->l_remote_handle;
1206                 packed++;
1207         }
1208         CDEBUG(D_DLMTRACE, "%d locks packed\n", packed);
1209         EXIT;
1210 }
1211
1212 /**
1213  * Prepare and send a batched cancel RPC. It will include \a count lock
1214  * handles of locks given in \a cancels list. */
1215 int ldlm_cli_cancel_req(struct obd_export *exp, struct list_head *cancels,
1216                         int count, enum ldlm_cancel_flags flags)
1217 {
1218         struct ptlrpc_request *req = NULL;
1219         struct obd_import *imp;
1220         int free, sent = 0;
1221         int rc = 0;
1222         ENTRY;
1223
1224         LASSERT(exp != NULL);
1225         LASSERT(count > 0);
1226
1227         CFS_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL, cfs_fail_val);
1228
1229         if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_RACE))
1230                 RETURN(count);
1231
1232         free = ldlm_format_handles_avail(class_exp2cliimp(exp),
1233                                          &RQF_LDLM_CANCEL, RCL_CLIENT, 0);
1234         if (count > free)
1235                 count = free;
1236
1237         while (1) {
1238                 imp = class_exp2cliimp(exp);
1239                 if (imp == NULL || imp->imp_invalid) {
1240                         CDEBUG(D_DLMTRACE,
1241                                "skipping cancel on invalid import %p\n", imp);
1242                         RETURN(count);
1243                 }
1244
1245                 req = ptlrpc_request_alloc(imp, &RQF_LDLM_CANCEL);
1246                 if (req == NULL)
1247                         GOTO(out, rc = -ENOMEM);
1248
1249                 req_capsule_filled_sizes(&req->rq_pill, RCL_CLIENT);
1250                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT,
1251                                      ldlm_request_bufsize(count, LDLM_CANCEL));
1252
1253                 rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CANCEL);
1254                 if (rc) {
1255                         ptlrpc_request_free(req);
1256                         GOTO(out, rc);
1257                 }
1258
1259                 /* If OSP want cancel cross-MDT lock, let's not block it in
1260                  * in recovery, otherwise the lock will not released, if
1261                  * the remote target is also in recovery, and it also need
1262                  * this lock, it might cause deadlock. */
1263                 if (exp_connect_flags(exp) & OBD_CONNECT_MDS_MDS &&
1264                     exp->exp_obd->obd_lu_dev != NULL &&
1265                     exp->exp_obd->obd_lu_dev->ld_site != NULL) {
1266                         struct lu_device *top_dev;
1267
1268                         top_dev = exp->exp_obd->obd_lu_dev->ld_site->ls_top_dev;
1269                         if (top_dev != NULL &&
1270                             top_dev->ld_obd->obd_recovering)
1271                                 req->rq_allow_replay = 1;
1272                 }
1273
1274                 req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
1275                 req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
1276                 ptlrpc_at_set_req_timeout(req);
1277
1278                 ldlm_cancel_pack(req, cancels, count);
1279
1280                 ptlrpc_request_set_replen(req);
1281                 if (flags & LCF_ASYNC) {
1282                         ptlrpcd_add_req(req);
1283                         sent = count;
1284                         GOTO(out, 0);
1285                 }
1286
1287                 rc = ptlrpc_queue_wait(req);
1288                 if (rc == LUSTRE_ESTALE) {
1289                         CDEBUG(D_DLMTRACE, "client/server (nid %s) "
1290                                "out of sync -- not fatal\n",
1291                                libcfs_nid2str(req->rq_import->
1292                                               imp_connection->c_peer.nid));
1293                         rc = 0;
1294                 } else if (rc == -ETIMEDOUT && /* check there was no reconnect*/
1295                            req->rq_import_generation == imp->imp_generation) {
1296                         ptlrpc_req_finished(req);
1297                         continue;
1298                 } else if (rc != ELDLM_OK) {
1299                         /* -ESHUTDOWN is common on umount */
1300                         CDEBUG_LIMIT(rc == -ESHUTDOWN ? D_DLMTRACE : D_ERROR,
1301                                      "Got rc %d from cancel RPC: "
1302                                      "canceling anyway\n", rc);
1303                         break;
1304                 }
1305                 sent = count;
1306                 break;
1307         }
1308
1309         ptlrpc_req_finished(req);
1310         EXIT;
1311 out:
1312         return sent ? sent : rc;
1313 }
1314
1315 static inline struct ldlm_pool *ldlm_imp2pl(struct obd_import *imp)
1316 {
1317         LASSERT(imp != NULL);
1318         return &imp->imp_obd->obd_namespace->ns_pool;
1319 }
1320
1321 /**
1322  * Update client's OBD pool related fields with new SLV and Limit from \a req.
1323  */
1324 int ldlm_cli_update_pool(struct ptlrpc_request *req)
1325 {
1326         struct obd_device *obd;
1327         __u64 new_slv;
1328         __u32 new_limit;
1329         ENTRY;
1330         if (unlikely(!req->rq_import || !req->rq_import->imp_obd ||
1331                      !imp_connect_lru_resize(req->rq_import)))
1332         {
1333                 /*
1334                  * Do nothing for corner cases.
1335                  */
1336                 RETURN(0);
1337         }
1338
1339         /* In some cases RPC may contain SLV and limit zeroed out. This
1340          * is the case when server does not support LRU resize feature.
1341          * This is also possible in some recovery cases when server-side
1342          * reqs have no reference to the OBD export and thus access to
1343          * server-side namespace is not possible. */
1344         if (lustre_msg_get_slv(req->rq_repmsg) == 0 ||
1345             lustre_msg_get_limit(req->rq_repmsg) == 0) {
1346                 DEBUG_REQ(D_HA, req, "Zero SLV or Limit found "
1347                           "(SLV: %llu, Limit: %u)",
1348                           lustre_msg_get_slv(req->rq_repmsg),
1349                           lustre_msg_get_limit(req->rq_repmsg));
1350                 RETURN(0);
1351         }
1352
1353         new_limit = lustre_msg_get_limit(req->rq_repmsg);
1354         new_slv = lustre_msg_get_slv(req->rq_repmsg);
1355         obd = req->rq_import->imp_obd;
1356
1357         /* Set new SLV and limit in OBD fields to make them accessible
1358          * to the pool thread. We do not access obd_namespace and pool
1359          * directly here as there is no reliable way to make sure that
1360          * they are still alive at cleanup time. Evil races are possible
1361          * which may cause Oops at that time. */
1362         write_lock(&obd->obd_pool_lock);
1363         obd->obd_pool_slv = new_slv;
1364         obd->obd_pool_limit = new_limit;
1365         write_unlock(&obd->obd_pool_lock);
1366
1367         RETURN(0);
1368 }
1369
1370 /**
1371  * Client side lock cancel.
1372  *
1373  * Lock must not have any readers or writers by this time.
1374  */
1375 int ldlm_cli_cancel(const struct lustre_handle *lockh,
1376                     enum ldlm_cancel_flags cancel_flags)
1377 {
1378         struct obd_export *exp;
1379         enum ldlm_lru_flags lru_flags;
1380         int avail, count = 1;
1381         __u64 rc = 0;
1382         struct ldlm_namespace *ns;
1383         struct ldlm_lock *lock;
1384         struct list_head cancels = LIST_HEAD_INIT(cancels);
1385         ENTRY;
1386
1387         lock = ldlm_handle2lock_long(lockh, 0);
1388         if (lock == NULL) {
1389                 LDLM_DEBUG_NOLOCK("lock is already being destroyed");
1390                 RETURN(0);
1391         }
1392
1393         lock_res_and_lock(lock);
1394         /* Lock is being canceled and the caller doesn't want to wait */
1395         if (ldlm_is_canceling(lock) && (cancel_flags & LCF_ASYNC)) {
1396                 unlock_res_and_lock(lock);
1397                 LDLM_LOCK_RELEASE(lock);
1398                 RETURN(0);
1399         }
1400
1401         ldlm_set_canceling(lock);
1402         unlock_res_and_lock(lock);
1403
1404         rc = ldlm_cli_cancel_local(lock);
1405         if (rc == LDLM_FL_LOCAL_ONLY || cancel_flags & LCF_LOCAL) {
1406                 LDLM_LOCK_RELEASE(lock);
1407                 RETURN(0);
1408         }
1409         /* Even if the lock is marked as LDLM_FL_BL_AST, this is a LDLM_CANCEL
1410          * RPC which goes to canceld portal, so we can cancel other LRU locks
1411          * here and send them all as one LDLM_CANCEL RPC. */
1412         LASSERT(list_empty(&lock->l_bl_ast));
1413         list_add(&lock->l_bl_ast, &cancels);
1414
1415         exp = lock->l_conn_export;
1416         if (exp_connect_cancelset(exp)) {
1417                 avail = ldlm_format_handles_avail(class_exp2cliimp(exp),
1418                                                   &RQF_LDLM_CANCEL,
1419                                                   RCL_CLIENT, 0);
1420                 LASSERT(avail > 0);
1421
1422                 ns = ldlm_lock_to_ns(lock);
1423                 lru_flags = ns_connect_lru_resize(ns) ?
1424                         LDLM_LRU_FLAG_LRUR : LDLM_LRU_FLAG_AGED;
1425                 count += ldlm_cancel_lru_local(ns, &cancels, 0, avail - 1,
1426                                                LCF_BL_AST, lru_flags);
1427         }
1428         ldlm_cli_cancel_list(&cancels, count, NULL, cancel_flags);
1429         RETURN(0);
1430 }
1431 EXPORT_SYMBOL(ldlm_cli_cancel);
1432
1433 /**
1434  * Locally cancel up to \a count locks in list \a cancels.
1435  * Return the number of cancelled locks.
1436  */
1437 int ldlm_cli_cancel_list_local(struct list_head *cancels, int count,
1438                                enum ldlm_cancel_flags cancel_flags)
1439 {
1440         struct list_head head = LIST_HEAD_INIT(head);
1441         struct ldlm_lock *lock, *next;
1442         int left = 0, bl_ast = 0;
1443         __u64 rc;
1444
1445         left = count;
1446         list_for_each_entry_safe(lock, next, cancels, l_bl_ast) {
1447                 if (left-- == 0)
1448                         break;
1449
1450                 if (cancel_flags & LCF_LOCAL) {
1451                         rc = LDLM_FL_LOCAL_ONLY;
1452                         ldlm_lock_cancel(lock);
1453                 } else {
1454                         rc = ldlm_cli_cancel_local(lock);
1455                 }
1456                 /* Until we have compound requests and can send LDLM_CANCEL
1457                  * requests batched with generic RPCs, we need to send cancels
1458                  * with the LDLM_FL_BL_AST flag in a separate RPC from
1459                  * the one being generated now. */
1460                 if (!(cancel_flags & LCF_BL_AST) && (rc == LDLM_FL_BL_AST)) {
1461                         LDLM_DEBUG(lock, "Cancel lock separately");
1462                         list_del_init(&lock->l_bl_ast);
1463                         list_add(&lock->l_bl_ast, &head);
1464                         bl_ast++;
1465                         continue;
1466                 }
1467                 if (rc == LDLM_FL_LOCAL_ONLY) {
1468                         /* CANCEL RPC should not be sent to server. */
1469                         list_del_init(&lock->l_bl_ast);
1470                         LDLM_LOCK_RELEASE(lock);
1471                         count--;
1472                 }
1473         }
1474         if (bl_ast > 0) {
1475                 count -= bl_ast;
1476                 ldlm_cli_cancel_list(&head, bl_ast, NULL, 0);
1477         }
1478
1479         RETURN(count);
1480 }
1481
1482 /**
1483  * Cancel as many locks as possible w/o sending any RPCs (e.g. to write back
1484  * dirty data, to close a file, ...) or waiting for any RPCs in-flight (e.g.
1485  * readahead requests, ...)
1486  */
1487 static enum ldlm_policy_res
1488 ldlm_cancel_no_wait_policy(struct ldlm_namespace *ns, struct ldlm_lock *lock,
1489                            int unused, int added, int count)
1490 {
1491         enum ldlm_policy_res result = LDLM_POLICY_CANCEL_LOCK;
1492
1493         /* don't check added & count since we want to process all locks
1494          * from unused list.
1495          * It's fine to not take lock to access lock->l_resource since
1496          * the lock has already been granted so it won't change. */
1497         switch (lock->l_resource->lr_type) {
1498                 case LDLM_EXTENT:
1499                 case LDLM_IBITS:
1500                         if (ns->ns_cancel != NULL && ns->ns_cancel(lock) != 0)
1501                                 break;
1502                 default:
1503                         result = LDLM_POLICY_SKIP_LOCK;
1504                         lock_res_and_lock(lock);
1505                         ldlm_set_skipped(lock);
1506                         unlock_res_and_lock(lock);
1507                         break;
1508         }
1509
1510         RETURN(result);
1511 }
1512
1513 /**
1514  * Callback function for LRU-resize policy. Decides whether to keep
1515  * \a lock in LRU for current \a LRU size \a unused, added in current
1516  * scan \a added and number of locks to be preferably canceled \a count.
1517  *
1518  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1519  *
1520  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1521  */
1522 static enum ldlm_policy_res ldlm_cancel_lrur_policy(struct ldlm_namespace *ns,
1523                                                     struct ldlm_lock *lock,
1524                                                     int unused, int added,
1525                                                     int count)
1526 {
1527         ktime_t cur = ktime_get();
1528         struct ldlm_pool *pl = &ns->ns_pool;
1529         u64 slv, lvf, lv;
1530         s64 la;
1531
1532         /* Stop LRU processing when we reach past @count or have checked all
1533          * locks in LRU. */
1534         if (count && added >= count)
1535                 return LDLM_POLICY_KEEP_LOCK;
1536
1537         /* Despite of the LV, It doesn't make sense to keep the lock which
1538          * is unused for ns_max_age time.
1539          */
1540         if (ktime_after(ktime_get(),
1541                         ktime_add(lock->l_last_used, ns->ns_max_age)))
1542                 return LDLM_POLICY_CANCEL_LOCK;
1543
1544         slv = ldlm_pool_get_slv(pl);
1545         lvf = ldlm_pool_get_lvf(pl);
1546         la = ktime_to_ns(ktime_sub(cur, lock->l_last_used)) / NSEC_PER_SEC;
1547         lv = lvf * la * unused;
1548
1549         /* Inform pool about current CLV to see it via proc. */
1550         ldlm_pool_set_clv(pl, lv);
1551
1552         /* Stop when SLV is not yet come from server or lv is smaller than
1553          * it is. */
1554         if (slv == 0 || lv < slv)
1555                 return LDLM_POLICY_KEEP_LOCK;
1556
1557         return LDLM_POLICY_CANCEL_LOCK;
1558 }
1559
1560 static enum ldlm_policy_res
1561 ldlm_cancel_lrur_no_wait_policy(struct ldlm_namespace *ns,
1562                                 struct ldlm_lock *lock,
1563                                 int unused, int added,
1564                                 int count)
1565 {
1566         enum ldlm_policy_res result;
1567
1568         result = ldlm_cancel_lrur_policy(ns, lock, unused, added, count);
1569         if (result == LDLM_POLICY_KEEP_LOCK)
1570                 return result;
1571
1572         return ldlm_cancel_no_wait_policy(ns, lock, unused, added, count);
1573 }
1574
1575 /**
1576  * Callback function for proc used policy. Makes decision whether to keep
1577  * \a lock in LRU for current \a LRU size \a unused, added in current scan \a
1578  * added and number of locks to be preferably canceled \a count.
1579  *
1580  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1581  *
1582  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1583  */
1584 static enum ldlm_policy_res ldlm_cancel_passed_policy(struct ldlm_namespace *ns,
1585                                                       struct ldlm_lock *lock,
1586                                                       int unused, int added,
1587                                                       int count)
1588 {
1589         /* Stop LRU processing when we reach past @count or have checked all
1590          * locks in LRU. */
1591         return (added >= count) ?
1592                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1593 }
1594
1595 /**
1596  * Callback function for aged policy. Makes decision whether to keep \a lock in
1597  * LRU for current LRU size \a unused, added in current scan \a added and
1598  * number of locks to be preferably canceled \a count.
1599  *
1600  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1601  *
1602  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1603  */
1604 static enum ldlm_policy_res ldlm_cancel_aged_policy(struct ldlm_namespace *ns,
1605                                                     struct ldlm_lock *lock,
1606                                                     int unused, int added,
1607                                                     int count)
1608 {
1609         if ((added >= count) &&
1610             ktime_before(ktime_get(),
1611                          ktime_add(lock->l_last_used, ns->ns_max_age)))
1612                 return LDLM_POLICY_KEEP_LOCK;
1613
1614         return LDLM_POLICY_CANCEL_LOCK;
1615 }
1616
1617 static enum ldlm_policy_res
1618 ldlm_cancel_aged_no_wait_policy(struct ldlm_namespace *ns,
1619                                 struct ldlm_lock *lock,
1620                                 int unused, int added, int count)
1621 {
1622         enum ldlm_policy_res result;
1623
1624         result = ldlm_cancel_aged_policy(ns, lock, unused, added, count);
1625         if (result == LDLM_POLICY_KEEP_LOCK)
1626                 return result;
1627
1628         return ldlm_cancel_no_wait_policy(ns, lock, unused, added, count);
1629 }
1630
1631 /**
1632  * Callback function for default policy. Makes decision whether to keep \a lock
1633  * in LRU for current LRU size \a unused, added in current scan \a added and
1634  * number of locks to be preferably canceled \a count.
1635  *
1636  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1637  *
1638  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1639  */
1640 static
1641 enum ldlm_policy_res ldlm_cancel_default_policy(struct ldlm_namespace *ns,
1642                                                 struct ldlm_lock *lock,
1643                                                 int unused, int added,
1644                                                 int count)
1645 {
1646         /* Stop LRU processing when we reach past count or have checked all
1647          * locks in LRU. */
1648         return (added >= count) ?
1649                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1650 }
1651
1652 typedef enum ldlm_policy_res
1653 (*ldlm_cancel_lru_policy_t)(struct ldlm_namespace *ns, struct ldlm_lock *lock,
1654                             int unused, int added, int count);
1655
1656 static ldlm_cancel_lru_policy_t
1657 ldlm_cancel_lru_policy(struct ldlm_namespace *ns, enum ldlm_lru_flags lru_flags)
1658 {
1659         if (ns_connect_lru_resize(ns)) {
1660                 if (lru_flags & LDLM_LRU_FLAG_SHRINK)
1661                         /* We kill passed number of old locks. */
1662                         return ldlm_cancel_passed_policy;
1663                 if (lru_flags & LDLM_LRU_FLAG_LRUR) {
1664                         if (lru_flags & LDLM_LRU_FLAG_NO_WAIT)
1665                                 return ldlm_cancel_lrur_no_wait_policy;
1666                         else
1667                                 return ldlm_cancel_lrur_policy;
1668                 }
1669                 if (lru_flags & LDLM_LRU_FLAG_PASSED)
1670                         return ldlm_cancel_passed_policy;
1671         } else {
1672                 if (lru_flags & LDLM_LRU_FLAG_AGED) {
1673                         if (lru_flags & LDLM_LRU_FLAG_NO_WAIT)
1674                                 return ldlm_cancel_aged_no_wait_policy;
1675                         else
1676                                 return ldlm_cancel_aged_policy;
1677                 }
1678         }
1679         if (lru_flags & LDLM_LRU_FLAG_NO_WAIT)
1680                 return ldlm_cancel_no_wait_policy;
1681
1682         return ldlm_cancel_default_policy;
1683 }
1684
1685 /**
1686  * - Free space in LRU for \a count new locks,
1687  *   redundant unused locks are canceled locally;
1688  * - also cancel locally unused aged locks;
1689  * - do not cancel more than \a max locks;
1690  * - GET the found locks and add them into the \a cancels list.
1691  *
1692  * A client lock can be added to the l_bl_ast list only when it is
1693  * marked LDLM_FL_CANCELING. Otherwise, somebody is already doing
1694  * CANCEL.  There are the following use cases:
1695  * ldlm_cancel_resource_local(), ldlm_cancel_lru_local() and
1696  * ldlm_cli_cancel(), which check and set this flag properly. As any
1697  * attempt to cancel a lock rely on this flag, l_bl_ast list is accessed
1698  * later without any special locking.
1699  *
1700  * Calling policies for enabled LRU resize:
1701  * ----------------------------------------
1702  * flags & LDLM_LRU_FLAG_LRUR - use LRU resize policy (SLV from server) to
1703  *                              cancel not more than \a count locks;
1704  *
1705  * flags & LDLM_LRU_FLAG_PASSED - cancel \a count number of old locks (located
1706  *                              at the beginning of LRU list);
1707  *
1708  * flags & LDLM_LRU_FLAG_SHRINK - cancel not more than \a count locks according
1709  *                              to memory pressre policy function;
1710  *
1711  * flags & LDLM_LRU_FLAG_AGED - cancel \a count locks according to "aged policy"
1712  *
1713  * flags & LDLM_LRU_FLAG_NO_WAIT - cancel as many unused locks as possible
1714  *                              (typically before replaying locks) w/o
1715  *                              sending any RPCs or waiting for any
1716  *                              outstanding RPC to complete.
1717  *
1718  * flags & LDLM_CANCEL_CLEANUP - when cancelling read locks, do not check for
1719  *                              other read locks covering the same pages, just
1720  *                              discard those pages.
1721  */
1722 static int ldlm_prepare_lru_list(struct ldlm_namespace *ns,
1723                                  struct list_head *cancels, int count, int max,
1724                                  enum ldlm_lru_flags lru_flags)
1725 {
1726         ldlm_cancel_lru_policy_t pf;
1727         struct ldlm_lock *lock, *next;
1728         int added = 0, unused, remained;
1729         int no_wait = lru_flags & LDLM_LRU_FLAG_NO_WAIT;
1730         ENTRY;
1731
1732         spin_lock(&ns->ns_lock);
1733         unused = ns->ns_nr_unused;
1734         remained = unused;
1735
1736         if (!ns_connect_lru_resize(ns))
1737                 count += unused - ns->ns_max_unused;
1738
1739         pf = ldlm_cancel_lru_policy(ns, lru_flags);
1740         LASSERT(pf != NULL);
1741
1742         while (!list_empty(&ns->ns_unused_list)) {
1743                 enum ldlm_policy_res result;
1744                 ktime_t last_use = ktime_set(0, 0);
1745
1746                 /* all unused locks */
1747                 if (remained-- <= 0)
1748                         break;
1749
1750                 /* For any flags, stop scanning if @max is reached. */
1751                 if (max && added >= max)
1752                         break;
1753
1754                 list_for_each_entry_safe(lock, next, &ns->ns_unused_list,
1755                                          l_lru) {
1756                         /* No locks which got blocking requests. */
1757                         LASSERT(!ldlm_is_bl_ast(lock));
1758
1759                         if (no_wait && ldlm_is_skipped(lock))
1760                                 /* already processed */
1761                                 continue;
1762
1763                         last_use = lock->l_last_used;
1764
1765                         /* Somebody is already doing CANCEL. No need for this
1766                          * lock in LRU, do not traverse it again. */
1767                         if (!ldlm_is_canceling(lock))
1768                                 break;
1769
1770                         ldlm_lock_remove_from_lru_nolock(lock);
1771                 }
1772                 if (&lock->l_lru == &ns->ns_unused_list)
1773                         break;
1774
1775                 LDLM_LOCK_GET(lock);
1776                 spin_unlock(&ns->ns_lock);
1777                 lu_ref_add(&lock->l_reference, __FUNCTION__, current);
1778
1779                 /* Pass the lock through the policy filter and see if it
1780                  * should stay in LRU.
1781                  *
1782                  * Even for shrinker policy we stop scanning if
1783                  * we find a lock that should stay in the cache.
1784                  * We should take into account lock age anyway
1785                  * as a new lock is a valuable resource even if
1786                  * it has a low weight.
1787                  *
1788                  * That is, for shrinker policy we drop only
1789                  * old locks, but additionally choose them by
1790                  * their weight. Big extent locks will stay in
1791                  * the cache. */
1792                 result = pf(ns, lock, unused, added, count);
1793                 if (result == LDLM_POLICY_KEEP_LOCK) {
1794                         lu_ref_del(&lock->l_reference,
1795                                    __FUNCTION__, current);
1796                         LDLM_LOCK_RELEASE(lock);
1797                         spin_lock(&ns->ns_lock);
1798                         break;
1799                 }
1800                 if (result == LDLM_POLICY_SKIP_LOCK) {
1801                         lu_ref_del(&lock->l_reference,
1802                                    __func__, current);
1803                         LDLM_LOCK_RELEASE(lock);
1804                         spin_lock(&ns->ns_lock);
1805                         continue;
1806                 }
1807
1808                 lock_res_and_lock(lock);
1809                 /* Check flags again under the lock. */
1810                 if (ldlm_is_canceling(lock) ||
1811                     ldlm_lock_remove_from_lru_check(lock, last_use) == 0) {
1812                         /* Another thread is removing lock from LRU, or
1813                          * somebody is already doing CANCEL, or there
1814                          * is a blocking request which will send cancel
1815                          * by itself, or the lock is no longer unused or
1816                          * the lock has been used since the pf() call and
1817                          * pages could be put under it. */
1818                         unlock_res_and_lock(lock);
1819                         lu_ref_del(&lock->l_reference, __FUNCTION__, current);
1820                         LDLM_LOCK_RELEASE(lock);
1821                         spin_lock(&ns->ns_lock);
1822                         continue;
1823                 }
1824                 LASSERT(!lock->l_readers && !lock->l_writers);
1825
1826                 /* If we have chosen to cancel this lock voluntarily, we
1827                  * better send cancel notification to server, so that it
1828                  * frees appropriate state. This might lead to a race
1829                  * where while we are doing cancel here, server is also
1830                  * silently cancelling this lock. */
1831                 ldlm_clear_cancel_on_block(lock);
1832
1833                 /* Setting the CBPENDING flag is a little misleading,
1834                  * but prevents an important race; namely, once
1835                  * CBPENDING is set, the lock can accumulate no more
1836                  * readers/writers. Since readers and writers are
1837                  * already zero here, ldlm_lock_decref() won't see
1838                  * this flag and call l_blocking_ast */
1839                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING;
1840
1841                 if ((lru_flags & LDLM_LRU_FLAG_CLEANUP) &&
1842                     (lock->l_resource->lr_type == LDLM_EXTENT ||
1843                      ldlm_has_dom(lock)) && lock->l_granted_mode == LCK_PR)
1844                         ldlm_set_discard_data(lock);
1845
1846                 /* We can't re-add to l_lru as it confuses the
1847                  * refcounting in ldlm_lock_remove_from_lru() if an AST
1848                  * arrives after we drop lr_lock below. We use l_bl_ast
1849                  * and can't use l_pending_chain as it is used both on
1850                  * server and client nevertheless bug 5666 says it is
1851                  * used only on server */
1852                 LASSERT(list_empty(&lock->l_bl_ast));
1853                 list_add(&lock->l_bl_ast, cancels);
1854                 unlock_res_and_lock(lock);
1855                 lu_ref_del(&lock->l_reference, __FUNCTION__, current);
1856                 spin_lock(&ns->ns_lock);
1857                 added++;
1858                 unused--;
1859         }
1860         spin_unlock(&ns->ns_lock);
1861         RETURN(added);
1862 }
1863
1864 int ldlm_cancel_lru_local(struct ldlm_namespace *ns, struct list_head *cancels,
1865                           int count, int max,
1866                           enum ldlm_cancel_flags cancel_flags,
1867                           enum ldlm_lru_flags lru_flags)
1868 {
1869         int added;
1870
1871         added = ldlm_prepare_lru_list(ns, cancels, count, max, lru_flags);
1872         if (added <= 0)
1873                 return added;
1874
1875         return ldlm_cli_cancel_list_local(cancels, added, cancel_flags);
1876 }
1877
1878 /**
1879  * Cancel at least \a nr locks from given namespace LRU.
1880  *
1881  * When called with LCF_ASYNC the blocking callback will be handled
1882  * in a thread and this function will return after the thread has been
1883  * asked to call the callback.  When called with LCF_ASYNC the blocking
1884  * callback will be performed in this function.
1885  */
1886 int ldlm_cancel_lru(struct ldlm_namespace *ns, int nr,
1887                     enum ldlm_cancel_flags cancel_flags,
1888                     enum ldlm_lru_flags lru_flags)
1889 {
1890         struct list_head cancels = LIST_HEAD_INIT(cancels);
1891         int count, rc;
1892         ENTRY;
1893
1894         /* Just prepare the list of locks, do not actually cancel them yet.
1895          * Locks are cancelled later in a separate thread. */
1896         count = ldlm_prepare_lru_list(ns, &cancels, nr, 0, lru_flags);
1897         rc = ldlm_bl_to_thread_list(ns, NULL, &cancels, count, cancel_flags);
1898         if (rc == 0)
1899                 RETURN(count);
1900
1901         RETURN(0);
1902 }
1903
1904 /**
1905  * Find and cancel locally unused locks found on resource, matched to the
1906  * given policy, mode. GET the found locks and add them into the \a cancels
1907  * list.
1908  */
1909 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1910                                struct list_head *cancels,
1911                                union ldlm_policy_data *policy,
1912                                enum ldlm_mode mode, __u64 lock_flags,
1913                                enum ldlm_cancel_flags cancel_flags,
1914                                void *opaque)
1915 {
1916         struct ldlm_lock *lock;
1917         int count = 0;
1918         ENTRY;
1919
1920         lock_res(res);
1921         list_for_each_entry(lock, &res->lr_granted, l_res_link) {
1922                 if (opaque != NULL && lock->l_ast_data != opaque) {
1923                         LDLM_ERROR(lock, "data %p doesn't match opaque %p",
1924                                    lock->l_ast_data, opaque);
1925                         //LBUG();
1926                         continue;
1927                 }
1928
1929                 if (lock->l_readers || lock->l_writers)
1930                         continue;
1931
1932                 /* If somebody is already doing CANCEL, or blocking AST came,
1933                  * skip this lock. */
1934                 if (ldlm_is_bl_ast(lock) || ldlm_is_canceling(lock))
1935                         continue;
1936
1937                 if (lockmode_compat(lock->l_granted_mode, mode))
1938                         continue;
1939
1940                 /* If policy is given and this is IBITS lock, add to list only
1941                  * those locks that match by policy. */
1942                 if (policy && (lock->l_resource->lr_type == LDLM_IBITS) &&
1943                     !(lock->l_policy_data.l_inodebits.bits &
1944                       policy->l_inodebits.bits))
1945                         continue;
1946
1947                 /* See CBPENDING comment in ldlm_cancel_lru */
1948                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING |
1949                                  lock_flags;
1950
1951                 LASSERT(list_empty(&lock->l_bl_ast));
1952                 list_add(&lock->l_bl_ast, cancels);
1953                 LDLM_LOCK_GET(lock);
1954                 count++;
1955         }
1956         unlock_res(res);
1957
1958         RETURN(ldlm_cli_cancel_list_local(cancels, count, cancel_flags));
1959 }
1960 EXPORT_SYMBOL(ldlm_cancel_resource_local);
1961
1962 /**
1963  * Cancel client-side locks from a list and send/prepare cancel RPCs to the
1964  * server.
1965  * If \a req is NULL, send CANCEL request to server with handles of locks
1966  * in the \a cancels. If EARLY_CANCEL is not supported, send CANCEL requests
1967  * separately per lock.
1968  * If \a req is not NULL, put handles of locks in \a cancels into the request
1969  * buffer at the offset \a off.
1970  * Destroy \a cancels at the end.
1971  */
1972 int ldlm_cli_cancel_list(struct list_head *cancels, int count,
1973                          struct ptlrpc_request *req,
1974                          enum ldlm_cancel_flags flags)
1975 {
1976         struct ldlm_lock *lock;
1977         int res = 0;
1978         ENTRY;
1979
1980         if (list_empty(cancels) || count == 0)
1981                 RETURN(0);
1982
1983         /* XXX: requests (both batched and not) could be sent in parallel.
1984          * Usually it is enough to have just 1 RPC, but it is possible that
1985          * there are too many locks to be cancelled in LRU or on a resource.
1986          * It would also speed up the case when the server does not support
1987          * the feature. */
1988         while (count > 0) {
1989                 LASSERT(!list_empty(cancels));
1990                 lock = list_entry(cancels->next, struct ldlm_lock,
1991                                       l_bl_ast);
1992                 LASSERT(lock->l_conn_export);
1993
1994                 if (exp_connect_cancelset(lock->l_conn_export)) {
1995                         res = count;
1996                         if (req)
1997                                 ldlm_cancel_pack(req, cancels, count);
1998                         else
1999                                 res = ldlm_cli_cancel_req(lock->l_conn_export,
2000                                                           cancels, count,
2001                                                           flags);
2002                 } else {
2003                         res = ldlm_cli_cancel_req(lock->l_conn_export,
2004                                                   cancels, 1, flags);
2005                 }
2006
2007                 if (res < 0) {
2008                         CDEBUG_LIMIT(res == -ESHUTDOWN ? D_DLMTRACE : D_ERROR,
2009                                      "ldlm_cli_cancel_list: %d\n", res);
2010                         res = count;
2011                 }
2012
2013                 count -= res;
2014                 ldlm_lock_list_put(cancels, l_bl_ast, res);
2015         }
2016         LASSERT(count == 0);
2017         RETURN(0);
2018 }
2019 EXPORT_SYMBOL(ldlm_cli_cancel_list);
2020
2021 /**
2022  * Cancel all locks on a resource that have 0 readers/writers.
2023  *
2024  * If flags & LDLM_FL_LOCAL_ONLY, throw the locks away without trying
2025  * to notify the server. */
2026 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
2027                                     const struct ldlm_res_id *res_id,
2028                                     union ldlm_policy_data *policy,
2029                                     enum ldlm_mode mode,
2030                                     enum ldlm_cancel_flags flags, void *opaque)
2031 {
2032         struct ldlm_resource *res;
2033         struct list_head cancels = LIST_HEAD_INIT(cancels);
2034         int count;
2035         int rc;
2036         ENTRY;
2037
2038         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
2039         if (IS_ERR(res)) {
2040                 /* This is not a problem. */
2041                 CDEBUG(D_INFO, "No resource %llu\n", res_id->name[0]);
2042                 RETURN(0);
2043         }
2044
2045         LDLM_RESOURCE_ADDREF(res);
2046         count = ldlm_cancel_resource_local(res, &cancels, policy, mode,
2047                                            0, flags | LCF_BL_AST, opaque);
2048         rc = ldlm_cli_cancel_list(&cancels, count, NULL, flags);
2049         if (rc != ELDLM_OK)
2050                 CERROR("canceling unused lock "DLDLMRES": rc = %d\n",
2051                        PLDLMRES(res), rc);
2052
2053         LDLM_RESOURCE_DELREF(res);
2054         ldlm_resource_putref(res);
2055         RETURN(0);
2056 }
2057 EXPORT_SYMBOL(ldlm_cli_cancel_unused_resource);
2058
2059 struct ldlm_cli_cancel_arg {
2060         int     lc_flags;
2061         void   *lc_opaque;
2062 };
2063
2064 static int
2065 ldlm_cli_hash_cancel_unused(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2066                             struct hlist_node *hnode, void *arg)
2067 {
2068         struct ldlm_resource           *res = cfs_hash_object(hs, hnode);
2069         struct ldlm_cli_cancel_arg     *lc = arg;
2070
2071         ldlm_cli_cancel_unused_resource(ldlm_res_to_ns(res), &res->lr_name,
2072                                         NULL, LCK_MINMODE, lc->lc_flags,
2073                                         lc->lc_opaque);
2074         /* must return 0 for hash iteration */
2075         return 0;
2076 }
2077
2078 /**
2079  * Cancel all locks on a namespace (or a specific resource, if given)
2080  * that have 0 readers/writers.
2081  *
2082  * If flags & LCF_LOCAL, throw the locks away without trying
2083  * to notify the server. */
2084 int ldlm_cli_cancel_unused(struct ldlm_namespace *ns,
2085                            const struct ldlm_res_id *res_id,
2086                            enum ldlm_cancel_flags flags, void *opaque)
2087 {
2088         struct ldlm_cli_cancel_arg arg = {
2089                 .lc_flags       = flags,
2090                 .lc_opaque      = opaque,
2091         };
2092
2093         ENTRY;
2094
2095         if (ns == NULL)
2096                 RETURN(ELDLM_OK);
2097
2098         if (res_id != NULL) {
2099                 RETURN(ldlm_cli_cancel_unused_resource(ns, res_id, NULL,
2100                                                        LCK_MINMODE, flags,
2101                                                        opaque));
2102         } else {
2103                 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2104                                          ldlm_cli_hash_cancel_unused, &arg, 0);
2105                 RETURN(ELDLM_OK);
2106         }
2107 }
2108
2109 /* Lock iterators. */
2110
2111 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
2112                           void *closure)
2113 {
2114         struct list_head *tmp, *next;
2115         struct ldlm_lock *lock;
2116         int rc = LDLM_ITER_CONTINUE;
2117
2118         ENTRY;
2119
2120         if (!res)
2121                 RETURN(LDLM_ITER_CONTINUE);
2122
2123         lock_res(res);
2124         list_for_each_safe(tmp, next, &res->lr_granted) {
2125                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
2126
2127                 if (iter(lock, closure) == LDLM_ITER_STOP)
2128                         GOTO(out, rc = LDLM_ITER_STOP);
2129         }
2130
2131         list_for_each_safe(tmp, next, &res->lr_converting) {
2132                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
2133
2134                 if (iter(lock, closure) == LDLM_ITER_STOP)
2135                         GOTO(out, rc = LDLM_ITER_STOP);
2136         }
2137
2138         list_for_each_safe(tmp, next, &res->lr_waiting) {
2139                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
2140
2141                 if (iter(lock, closure) == LDLM_ITER_STOP)
2142                         GOTO(out, rc = LDLM_ITER_STOP);
2143         }
2144  out:
2145         unlock_res(res);
2146         RETURN(rc);
2147 }
2148
2149 struct iter_helper_data {
2150         ldlm_iterator_t iter;
2151         void *closure;
2152 };
2153
2154 static int ldlm_iter_helper(struct ldlm_lock *lock, void *closure)
2155 {
2156         struct iter_helper_data *helper = closure;
2157         return helper->iter(lock, helper->closure);
2158 }
2159
2160 static int ldlm_res_iter_helper(struct cfs_hash *hs, struct cfs_hash_bd *bd,
2161                                 struct hlist_node *hnode, void *arg)
2162
2163 {
2164         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2165
2166         return ldlm_resource_foreach(res, ldlm_iter_helper, arg) ==
2167                LDLM_ITER_STOP;
2168 }
2169
2170 void ldlm_namespace_foreach(struct ldlm_namespace *ns,
2171                             ldlm_iterator_t iter, void *closure)
2172
2173 {
2174         struct iter_helper_data helper = { .iter = iter, .closure = closure };
2175
2176         cfs_hash_for_each_nolock(ns->ns_rs_hash,
2177                                  ldlm_res_iter_helper, &helper, 0);
2178
2179 }
2180
2181 /* non-blocking function to manipulate a lock whose cb_data is being put away.
2182  * return  0:  find no resource
2183  *       > 0:  must be LDLM_ITER_STOP/LDLM_ITER_CONTINUE.
2184  *       < 0:  errors
2185  */
2186 int ldlm_resource_iterate(struct ldlm_namespace *ns,
2187                           const struct ldlm_res_id *res_id,
2188                           ldlm_iterator_t iter, void *data)
2189 {
2190         struct ldlm_resource *res;
2191         int rc;
2192         ENTRY;
2193
2194         LASSERTF(ns != NULL, "must pass in namespace\n");
2195
2196         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
2197         if (IS_ERR(res))
2198                 RETURN(0);
2199
2200         LDLM_RESOURCE_ADDREF(res);
2201         rc = ldlm_resource_foreach(res, iter, data);
2202         LDLM_RESOURCE_DELREF(res);
2203         ldlm_resource_putref(res);
2204         RETURN(rc);
2205 }
2206 EXPORT_SYMBOL(ldlm_resource_iterate);
2207
2208 /* Lock replay */
2209
2210 static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
2211 {
2212         struct list_head *list = closure;
2213
2214         /* we use l_pending_chain here, because it's unused on clients. */
2215         LASSERTF(list_empty(&lock->l_pending_chain),
2216                  "lock %p next %p prev %p\n",
2217                  lock, &lock->l_pending_chain.next,&lock->l_pending_chain.prev);
2218         /* bug 9573: don't replay locks left after eviction, or
2219          * bug 17614: locks being actively cancelled. Get a reference
2220          * on a lock so that it does not disapear under us (e.g. due to cancel)
2221          */
2222         if (!(lock->l_flags & (LDLM_FL_FAILED|LDLM_FL_BL_DONE))) {
2223                 list_add(&lock->l_pending_chain, list);
2224                 LDLM_LOCK_GET(lock);
2225         }
2226
2227         return LDLM_ITER_CONTINUE;
2228 }
2229
2230 static int replay_lock_interpret(const struct lu_env *env,
2231                                  struct ptlrpc_request *req,
2232                                  struct ldlm_async_args *aa, int rc)
2233 {
2234         struct ldlm_lock     *lock;
2235         struct ldlm_reply    *reply;
2236         struct obd_export    *exp;
2237
2238         ENTRY;
2239         atomic_dec(&req->rq_import->imp_replay_inflight);
2240         if (rc != ELDLM_OK)
2241                 GOTO(out, rc);
2242
2243         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
2244         if (reply == NULL)
2245                 GOTO(out, rc = -EPROTO);
2246
2247         lock = ldlm_handle2lock(&aa->lock_handle);
2248         if (!lock) {
2249                 CERROR("received replay ack for unknown local cookie %#llx"
2250                        " remote cookie %#llx from server %s id %s\n",
2251                        aa->lock_handle.cookie, reply->lock_handle.cookie,
2252                        req->rq_export->exp_client_uuid.uuid,
2253                        libcfs_id2str(req->rq_peer));
2254                 GOTO(out, rc = -ESTALE);
2255         }
2256
2257         /* Key change rehash lock in per-export hash with new key */
2258         exp = req->rq_export;
2259         if (exp && exp->exp_lock_hash) {
2260                 /* In the function below, .hs_keycmp resolves to
2261                  * ldlm_export_lock_keycmp() */
2262                 /* coverity[overrun-buffer-val] */
2263                 cfs_hash_rehash_key(exp->exp_lock_hash,
2264                                     &lock->l_remote_handle,
2265                                     &reply->lock_handle,
2266                                     &lock->l_exp_hash);
2267         } else {
2268                 lock->l_remote_handle = reply->lock_handle;
2269         }
2270
2271         LDLM_DEBUG(lock, "replayed lock:");
2272         ptlrpc_import_recovery_state_machine(req->rq_import);
2273         LDLM_LOCK_PUT(lock);
2274 out:
2275         if (rc != ELDLM_OK)
2276                 ptlrpc_connect_import(req->rq_import);
2277
2278         RETURN(rc);
2279 }
2280
2281 static int replay_one_lock(struct obd_import *imp, struct ldlm_lock *lock)
2282 {
2283         struct ptlrpc_request *req;
2284         struct ldlm_async_args *aa;
2285         struct ldlm_request   *body;
2286         int flags;
2287         ENTRY;
2288
2289
2290         /* Bug 11974: Do not replay a lock which is actively being canceled */
2291         if (ldlm_is_bl_done(lock)) {
2292                 LDLM_DEBUG(lock, "Not replaying canceled lock:");
2293                 RETURN(0);
2294         }
2295
2296         /* If this is reply-less callback lock, we cannot replay it, since
2297          * server might have long dropped it, but notification of that event was
2298          * lost by network. (and server granted conflicting lock already) */
2299         if (ldlm_is_cancel_on_block(lock)) {
2300                 LDLM_DEBUG(lock, "Not replaying reply-less lock:");
2301                 ldlm_lock_cancel(lock);
2302                 RETURN(0);
2303         }
2304
2305         /*
2306          * If granted mode matches the requested mode, this lock is granted.
2307          *
2308          * If they differ, but we have a granted mode, then we were granted
2309          * one mode and now want another: ergo, converting.
2310          *
2311          * If we haven't been granted anything and are on a resource list,
2312          * then we're blocked/waiting.
2313          *
2314          * If we haven't been granted anything and we're NOT on a resource list,
2315          * then we haven't got a reply yet and don't have a known disposition.
2316          * This happens whenever a lock enqueue is the request that triggers
2317          * recovery.
2318          */
2319         if (lock->l_granted_mode == lock->l_req_mode)
2320                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_GRANTED;
2321         else if (lock->l_granted_mode)
2322                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_CONV;
2323         else if (!list_empty(&lock->l_res_link))
2324                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_WAIT;
2325         else
2326                 flags = LDLM_FL_REPLAY;
2327
2328         req = ptlrpc_request_alloc_pack(imp, &RQF_LDLM_ENQUEUE,
2329                                         LUSTRE_DLM_VERSION, LDLM_ENQUEUE);
2330         if (req == NULL)
2331                 RETURN(-ENOMEM);
2332
2333         /* We're part of recovery, so don't wait for it. */
2334         req->rq_send_state = LUSTRE_IMP_REPLAY_LOCKS;
2335
2336         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2337         ldlm_lock2desc(lock, &body->lock_desc);
2338         body->lock_flags = ldlm_flags_to_wire(flags);
2339
2340         ldlm_lock2handle(lock, &body->lock_handle[0]);
2341         if (lock->l_lvb_len > 0)
2342                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_ENQUEUE_LVB);
2343         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
2344                              lock->l_lvb_len);
2345         ptlrpc_request_set_replen(req);
2346         /* notify the server we've replayed all requests.
2347          * also, we mark the request to be put on a dedicated
2348          * queue to be processed after all request replayes.
2349          * bug 6063 */
2350         lustre_msg_set_flags(req->rq_reqmsg, MSG_REQ_REPLAY_DONE);
2351
2352         LDLM_DEBUG(lock, "replaying lock:");
2353
2354         atomic_inc(&req->rq_import->imp_replay_inflight);
2355         CLASSERT(sizeof(*aa) <= sizeof(req->rq_async_args));
2356         aa = ptlrpc_req_async_args(req);
2357         aa->lock_handle = body->lock_handle[0];
2358         req->rq_interpret_reply = (ptlrpc_interpterer_t)replay_lock_interpret;
2359         ptlrpcd_add_req(req);
2360
2361         RETURN(0);
2362 }
2363
2364 /**
2365  * Cancel as many unused locks as possible before replay. since we are
2366  * in recovery, we can't wait for any outstanding RPCs to send any RPC
2367  * to the server.
2368  *
2369  * Called only in recovery before replaying locks. there is no need to
2370  * replay locks that are unused. since the clients may hold thousands of
2371  * cached unused locks, dropping the unused locks can greatly reduce the
2372  * load on the servers at recovery time.
2373  */
2374 static void ldlm_cancel_unused_locks_for_replay(struct ldlm_namespace *ns)
2375 {
2376         int canceled;
2377         struct list_head cancels = LIST_HEAD_INIT(cancels);
2378
2379         CDEBUG(D_DLMTRACE, "Dropping as many unused locks as possible before"
2380                            "replay for namespace %s (%d)\n",
2381                            ldlm_ns_name(ns), ns->ns_nr_unused);
2382
2383         /* We don't need to care whether or not LRU resize is enabled
2384          * because the LDLM_LRU_FLAG_NO_WAIT policy doesn't use the
2385          * count parameter */
2386         canceled = ldlm_cancel_lru_local(ns, &cancels, ns->ns_nr_unused, 0,
2387                                          LCF_LOCAL, LDLM_LRU_FLAG_NO_WAIT);
2388
2389         CDEBUG(D_DLMTRACE, "Canceled %d unused locks from namespace %s\n",
2390                            canceled, ldlm_ns_name(ns));
2391 }
2392
2393 int ldlm_replay_locks(struct obd_import *imp)
2394 {
2395         struct ldlm_namespace *ns = imp->imp_obd->obd_namespace;
2396         struct list_head list = LIST_HEAD_INIT(list);
2397         struct ldlm_lock *lock, *next;
2398         int rc = 0;
2399
2400         ENTRY;
2401
2402         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
2403
2404         /* don't replay locks if import failed recovery */
2405         if (imp->imp_vbr_failed)
2406                 RETURN(0);
2407
2408         /* ensure this doesn't fall to 0 before all have been queued */
2409         atomic_inc(&imp->imp_replay_inflight);
2410
2411         if (ldlm_cancel_unused_locks_before_replay)
2412                 ldlm_cancel_unused_locks_for_replay(ns);
2413
2414         ldlm_namespace_foreach(ns, ldlm_chain_lock_for_replay, &list);
2415
2416         list_for_each_entry_safe(lock, next, &list, l_pending_chain) {
2417                 list_del_init(&lock->l_pending_chain);
2418                 if (rc) {
2419                         LDLM_LOCK_RELEASE(lock);
2420                         continue; /* or try to do the rest? */
2421                 }
2422                 rc = replay_one_lock(imp, lock);
2423                 LDLM_LOCK_RELEASE(lock);
2424         }
2425
2426         atomic_dec(&imp->imp_replay_inflight);
2427
2428         RETURN(rc);
2429 }