Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / ldlm / ldlm_request.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_LDLM
38 #ifndef __KERNEL__
39 #include <signal.h>
40 #include <liblustre.h>
41 #endif
42
43 #include <lustre_dlm.h>
44 #include <obd_class.h>
45 #include <obd.h>
46
47 #include "ldlm_internal.h"
48
49 int ldlm_enqueue_min = OBD_TIMEOUT_DEFAULT;
50 CFS_MODULE_PARM(ldlm_enqueue_min, "i", int, 0644,
51                 "lock enqueue timeout minimum");
52
53 static void interrupted_completion_wait(void *data)
54 {
55 }
56
57 struct lock_wait_data {
58         struct ldlm_lock *lwd_lock;
59         __u32             lwd_conn_cnt;
60 };
61
62 struct ldlm_async_args {
63         struct lustre_handle lock_handle;
64 };
65
66 int ldlm_expired_completion_wait(void *data)
67 {
68         struct lock_wait_data *lwd = data;
69         struct ldlm_lock *lock = lwd->lwd_lock;
70         struct obd_import *imp;
71         struct obd_device *obd;
72
73         ENTRY;
74         if (lock->l_conn_export == NULL) {
75                 static cfs_time_t next_dump = 0, last_dump = 0;
76
77                 if (ptlrpc_check_suspend())
78                         RETURN(0);
79
80                 LDLM_ERROR(lock, "lock timed out (enqueued at "CFS_TIME_T", "
81                            CFS_DURATION_T"s ago); not entering recovery in "
82                            "server code, just going back to sleep",
83                            lock->l_last_activity,
84                            cfs_time_sub(cfs_time_current_sec(),
85                            lock->l_last_activity));
86                 if (cfs_time_after(cfs_time_current(), next_dump)) {
87                         last_dump = next_dump;
88                         next_dump = cfs_time_shift(300);
89                         ldlm_namespace_dump(D_DLMTRACE,
90                                             lock->l_resource->lr_namespace);
91                         if (last_dump == 0)
92                                 libcfs_debug_dumplog();
93                 }
94                 RETURN(0);
95         }
96
97         obd = lock->l_conn_export->exp_obd;
98         imp = obd->u.cli.cl_import;
99         ptlrpc_fail_import(imp, lwd->lwd_conn_cnt);
100         LDLM_ERROR(lock, "lock timed out (enqueued at "CFS_TIME_T", "
101                   CFS_DURATION_T"s ago), entering recovery for %s@%s",
102                   lock->l_last_activity,
103                   cfs_time_sub(cfs_time_current_sec(), lock->l_last_activity),
104                   obd2cli_tgt(obd), imp->imp_connection->c_remote_uuid.uuid);
105
106         RETURN(0);
107 }
108
109 /* We use the same basis for both server side and client side functions
110    from a single node. */
111 int ldlm_get_enq_timeout(struct ldlm_lock *lock)
112 {
113         int timeout = at_get(&lock->l_resource->lr_namespace->ns_at_estimate);
114         if (AT_OFF)
115                 return obd_timeout / 2;
116         /* Since these are non-updating timeouts, we should be conservative.
117            It would be nice to have some kind of "early reply" mechanism for
118            lock callbacks too... */
119         timeout = min_t(int, at_max, timeout + (timeout >> 1)); /* 150% */
120         return max(timeout, ldlm_enqueue_min);
121 }
122 EXPORT_SYMBOL(ldlm_get_enq_timeout);
123
124 /**
125  * Helper function for ldlm_completion_ast(), updating timings when lock is
126  * actually granted.
127  */
128 static int ldlm_completion_tail(struct ldlm_lock *lock)
129 {
130         long delay;
131         int  result;
132
133         if (lock->l_destroyed || lock->l_flags & LDLM_FL_FAILED) {
134                 LDLM_DEBUG(lock, "client-side enqueue: destroyed");
135                 result = -EIO;
136         } else {
137                 delay = cfs_time_sub(cfs_time_current_sec(),
138                                      lock->l_last_activity);
139                 LDLM_DEBUG(lock, "client-side enqueue: granted after "
140                            CFS_DURATION_T"s", delay);
141
142                 /* Update our time estimate */
143                 at_add(&lock->l_resource->lr_namespace->ns_at_estimate, delay);
144                 result = 0;
145         }
146         return result;
147 }
148
149 /**
150  * Implementation of ->l_completion_ast() for a client, that doesn't wait
151  * until lock is granted. Suitable for locks enqueued through ptlrpcd, of
152  * other threads that cannot block for long.
153  */
154 int ldlm_completion_ast_async(struct ldlm_lock *lock, int flags, void *data)
155 {
156         ENTRY;
157
158         if (flags == LDLM_FL_WAIT_NOREPROC) {
159                 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
160                 RETURN(0);
161         }
162
163         if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
164                        LDLM_FL_BLOCK_CONV))) {
165                 cfs_waitq_signal(&lock->l_waitq);
166                 RETURN(ldlm_completion_tail(lock));
167         }
168
169         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
170                    "going forward");
171         ldlm_lock_dump(D_OTHER, lock, 0);
172         ldlm_reprocess_all(lock->l_resource);
173         RETURN(0);
174 }
175
176 /**
177  * Client side LDLM "completion" AST. This is called in several cases:
178  *
179  *     - when a reply to an ENQUEUE rpc is received from the server
180  *       (ldlm_cli_enqueue_fini()). Lock might be granted or not granted at
181  *       this point (determined by flags);
182  *
183  *     - when LDLM_CP_CALLBACK rpc comes to client to notify it that lock has
184  *       been granted;
185  *
186  *     - when ldlm_lock_match(LDLM_FL_LVB_READY) is about to wait until lock
187  *       gets correct lvb;
188  *
189  *     - to force all locks when resource is destroyed (cleanup_resource());
190  *
191  *     - during lock conversion (not used currently).
192  *
193  * If lock is not granted in the first case, this function waits until second
194  * or penultimate cases happen in some other thread.
195  *
196  */
197 int ldlm_completion_ast(struct ldlm_lock *lock, int flags, void *data)
198 {
199         /* XXX ALLOCATE - 160 bytes */
200         struct lock_wait_data lwd;
201         struct obd_device *obd;
202         struct obd_import *imp = NULL;
203         struct l_wait_info lwi;
204         __u32 timeout;
205         int rc = 0;
206         ENTRY;
207
208         if (flags == LDLM_FL_WAIT_NOREPROC) {
209                 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
210                 goto noreproc;
211         }
212
213         if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
214                        LDLM_FL_BLOCK_CONV))) {
215                 cfs_waitq_signal(&lock->l_waitq);
216                 RETURN(0);
217         }
218
219         LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
220                    "sleeping");
221         ldlm_lock_dump(D_OTHER, lock, 0);
222
223 noreproc:
224
225         obd = class_exp2obd(lock->l_conn_export);
226
227         /* if this is a local lock, then there is no import */
228         if (obd != NULL) {
229                 imp = obd->u.cli.cl_import;
230         }
231
232         /* Wait a long time for enqueue - server may have to callback a
233            lock from another client.  Server will evict the other client if it
234            doesn't respond reasonably, and then give us the lock. */
235         timeout = ldlm_get_enq_timeout(lock) * 2;
236
237         lwd.lwd_lock = lock;
238
239         if (lock->l_flags & LDLM_FL_NO_TIMEOUT) {
240                 LDLM_DEBUG(lock, "waiting indefinitely because of NO_TIMEOUT");
241                 lwi = LWI_INTR(interrupted_completion_wait, &lwd);
242         } else {
243                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout),
244                                        ldlm_expired_completion_wait,
245                                        interrupted_completion_wait, &lwd);
246         }
247
248         if (imp != NULL) {
249                 spin_lock(&imp->imp_lock);
250                 lwd.lwd_conn_cnt = imp->imp_conn_cnt;
251                 spin_unlock(&imp->imp_lock);
252         }
253
254         if (ns_is_client(lock->l_resource->lr_namespace) &&
255             OBD_FAIL_CHECK_RESET(OBD_FAIL_LDLM_INTR_CP_AST,
256                                  OBD_FAIL_LDLM_CP_BL_RACE | OBD_FAIL_ONCE)) {
257                 lock->l_flags |= LDLM_FL_FAIL_LOC;
258                 rc = -EINTR;
259         } else {
260                 /* Go to sleep until the lock is granted or cancelled. */
261                 rc = l_wait_event(lock->l_waitq,
262                                   is_granted_or_cancelled(lock), &lwi);
263         }
264
265         if (rc) {
266                 LDLM_DEBUG(lock, "client-side enqueue waking up: failed (%d)",
267                            rc);
268                 RETURN(rc);
269         }
270
271         RETURN(ldlm_completion_tail(lock));
272 }
273
274 /**
275  * A helper to build a blocking ast function
276  *
277  * Perform a common operation for blocking asts:
278  * defferred lock cancellation.
279  *
280  * \param lock the lock blocking or canceling ast was called on
281  * \retval 0
282  * \see mdt_blocking_ast
283  * \see ldlm_blocking_ast
284  */
285 int ldlm_blocking_ast_nocheck(struct ldlm_lock *lock)
286 {
287         int do_ast;
288         ENTRY;
289
290         lock->l_flags |= LDLM_FL_CBPENDING;
291         do_ast = (!lock->l_readers && !lock->l_writers);
292         unlock_res_and_lock(lock);
293
294         if (do_ast) {
295                 struct lustre_handle lockh;
296                 int rc;
297
298                 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
299                 ldlm_lock2handle(lock, &lockh);
300                 rc = ldlm_cli_cancel(&lockh);
301                 if (rc < 0)
302                         CERROR("ldlm_cli_cancel: %d\n", rc);
303         } else {
304                 LDLM_DEBUG(lock, "Lock still has references, will be "
305                            "cancelled later");
306         }
307         RETURN(0);
308 }
309
310 /**
311  * Server blocking AST
312  *
313  * ->l_blocking_ast() callback for LDLM locks acquired by server-side
314  * OBDs.
315  *
316  * \param lock the lock which blocks a request or cancelling lock
317  * \param desc unused
318  * \param data unused
319  * \param flag indicates whether this cancelling or blocking callback
320  * \retval 0
321  * \see ldlm_blocking_ast_nocheck
322  */
323 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
324                       void *data, int flag)
325 {
326         ENTRY;
327
328         if (flag == LDLM_CB_CANCELING) {
329                 /* Don't need to do anything here. */
330                 RETURN(0);
331         }
332
333         lock_res_and_lock(lock);
334         /* Get this: if ldlm_blocking_ast is racing with intent_policy, such
335          * that ldlm_blocking_ast is called just before intent_policy method
336          * takes the ns_lock, then by the time we get the lock, we might not
337          * be the correct blocking function anymore.  So check, and return
338          * early, if so. */
339         if (lock->l_blocking_ast != ldlm_blocking_ast) {
340                 unlock_res_and_lock(lock);
341                 RETURN(0);
342         }
343         RETURN(ldlm_blocking_ast_nocheck(lock));
344 }
345
346 /*
347  * ->l_glimpse_ast() for DLM extent locks acquired on the server-side. See
348  * comment in filter_intent_policy() on why you may need this.
349  */
350 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp)
351 {
352         /*
353          * Returning -ELDLM_NO_LOCK_DATA actually works, but the reason for
354          * that is rather subtle: with OST-side locking, it may so happen that
355          * _all_ extent locks are held by the OST. If client wants to obtain
356          * current file size it calls ll{,u}_glimpse_size(), and (as locks are
357          * on the server), dummy glimpse callback fires and does
358          * nothing. Client still receives correct file size due to the
359          * following fragment in filter_intent_policy():
360          *
361          * rc = l->l_glimpse_ast(l, NULL); // this will update the LVB
362          * if (rc != 0 && res->lr_namespace->ns_lvbo &&
363          *     res->lr_namespace->ns_lvbo->lvbo_update) {
364          *         res->lr_namespace->ns_lvbo->lvbo_update(res, NULL, 0, 1);
365          * }
366          *
367          * that is, after glimpse_ast() fails, filter_lvbo_update() runs, and
368          * returns correct file size to the client.
369          */
370         return -ELDLM_NO_LOCK_DATA;
371 }
372
373 int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
374                            const struct ldlm_res_id *res_id,
375                            ldlm_type_t type, ldlm_policy_data_t *policy,
376                            ldlm_mode_t mode, int *flags,
377                            ldlm_blocking_callback blocking,
378                            ldlm_completion_callback completion,
379                            ldlm_glimpse_callback glimpse,
380                            void *data, __u32 lvb_len,
381                            const __u64 *client_cookie,
382                            struct lustre_handle *lockh)
383 {
384         struct ldlm_lock *lock;
385         int err;
386         const struct ldlm_callback_suite cbs = { .lcs_completion = completion,
387                                                  .lcs_blocking   = blocking,
388                                                  .lcs_glimpse    = glimpse,
389         };
390         ENTRY;
391
392         LASSERT(!(*flags & LDLM_FL_REPLAY));
393         if (unlikely(ns_is_client(ns))) {
394                 CERROR("Trying to enqueue local lock in a shadow namespace\n");
395                 LBUG();
396         }
397
398         lock = ldlm_lock_create(ns, res_id, type, mode, &cbs, data, lvb_len);
399         if (unlikely(!lock))
400                 GOTO(out_nolock, err = -ENOMEM);
401         LDLM_DEBUG(lock, "client-side local enqueue handler, new lock created");
402
403         ldlm_lock_addref_internal(lock, mode);
404         ldlm_lock2handle(lock, lockh);
405         lock_res_and_lock(lock);
406         lock->l_flags |= LDLM_FL_LOCAL;
407         if (*flags & LDLM_FL_ATOMIC_CB)
408                 lock->l_flags |= LDLM_FL_ATOMIC_CB;
409         unlock_res_and_lock(lock);
410         if (policy != NULL)
411                 lock->l_policy_data = *policy;
412         if (client_cookie != NULL)
413                 lock->l_client_cookie = *client_cookie;
414         if (type == LDLM_EXTENT)
415                 lock->l_req_extent = policy->l_extent;
416
417         err = ldlm_lock_enqueue(ns, &lock, policy, flags);
418         if (unlikely(err != ELDLM_OK))
419                 GOTO(out, err);
420
421         if (policy != NULL)
422                 *policy = lock->l_policy_data;
423
424         LDLM_DEBUG_NOLOCK("client-side local enqueue handler END (lock %p)",
425                           lock);
426
427         if (lock->l_completion_ast)
428                 lock->l_completion_ast(lock, *flags, NULL);
429
430         LDLM_DEBUG(lock, "client-side local enqueue END");
431         EXIT;
432  out:
433         LDLM_LOCK_RELEASE(lock);
434  out_nolock:
435         return err;
436 }
437
438 static void failed_lock_cleanup(struct ldlm_namespace *ns,
439                                 struct ldlm_lock *lock,
440                                 struct lustre_handle *lockh, int mode)
441 {
442         int need_cancel = 0;
443
444         /* Set a flag to prevent us from sending a CANCEL (bug 407) */
445         lock_res_and_lock(lock);
446         /* Check that lock is not granted or failed, we might race. */
447         if ((lock->l_req_mode != lock->l_granted_mode) &&
448             !(lock->l_flags & LDLM_FL_FAILED)) {
449                 /* Make sure that this lock will not be found by raced
450                  * bl_ast and -EINVAL reply is sent to server anyways.
451                  * bug 17645 */
452                 lock->l_flags |= LDLM_FL_LOCAL_ONLY | LDLM_FL_FAILED |
453                                  LDLM_FL_ATOMIC_CB;
454                 need_cancel = 1;
455         }
456         unlock_res_and_lock(lock);
457
458         if (need_cancel) {
459                 LDLM_DEBUG(lock,
460                            "setting FL_LOCAL_ONLY | LDLM_FL_FAILED | "
461                            "LDLM_FL_ATOMIC_CB");
462                 ldlm_lock_decref_and_cancel(lockh, mode);
463         } else {
464                 LDLM_DEBUG(lock, "lock was granted or failed in race");
465                 ldlm_lock_decref(lockh, mode);
466         }
467
468         /* XXX - HACK because we shouldn't call ldlm_lock_destroy()
469          *       from llite/file.c/ll_file_flock(). */
470         if (lock->l_resource->lr_type == LDLM_FLOCK) {
471                 ldlm_lock_destroy(lock);
472         }
473 }
474
475 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
476                           ldlm_type_t type, __u8 with_policy, ldlm_mode_t mode,
477                           int *flags, void *lvb, __u32 lvb_len,
478                           struct lustre_handle *lockh,int rc)
479 {
480         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
481         int is_replay = *flags & LDLM_FL_REPLAY;
482         struct lustre_handle old_hash_key;
483         struct ldlm_lock *lock;
484         struct ldlm_reply *reply;
485         int cleanup_phase = 1;
486         ENTRY;
487
488         lock = ldlm_handle2lock(lockh);
489         /* ldlm_cli_enqueue is holding a reference on this lock. */
490         if (!lock) {
491                 LASSERT(type == LDLM_FLOCK);
492                 RETURN(-ENOLCK);
493         }
494
495         if (rc != ELDLM_OK) {
496                 LASSERT(!is_replay);
497                 LDLM_DEBUG(lock, "client-side enqueue END (%s)",
498                            rc == ELDLM_LOCK_ABORTED ? "ABORTED" : "FAILED");
499                 if (rc == ELDLM_LOCK_ABORTED) {
500                         /* Before we return, swab the reply */
501                         reply = req_capsule_server_get(&req->rq_pill,
502                                                        &RMF_DLM_REP);
503                         if (reply == NULL)
504                                 rc = -EPROTO;
505                         if (lvb_len) {
506                                 struct ost_lvb *tmplvb;
507
508                                 req_capsule_set_size(&req->rq_pill,
509                                                      &RMF_DLM_LVB, RCL_SERVER,
510                                                      lvb_len);
511                             tmplvb = req_capsule_server_get(&req->rq_pill,
512                                                                  &RMF_DLM_LVB);
513                                 if (tmplvb == NULL)
514                                         GOTO(cleanup, rc = -EPROTO);
515                                 if (lvb != NULL)
516                                         memcpy(lvb, tmplvb, lvb_len);
517                         }
518                 }
519                 GOTO(cleanup, rc);
520         }
521
522         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
523         if (reply == NULL)
524                 GOTO(cleanup, rc = -EPROTO);
525
526         /* lock enqueued on the server */
527         cleanup_phase = 0;
528
529         lock_res_and_lock(lock);
530         old_hash_key = lock->l_remote_handle;
531         lock->l_remote_handle = reply->lock_handle;
532
533         /* Key change rehash lock in per-export hash with new key */
534         if (exp->exp_lock_hash)
535                 cfs_hash_rehash_key(exp->exp_lock_hash, &old_hash_key,
536                                     &lock->l_remote_handle,
537                                     &lock->l_exp_hash);
538
539         *flags = reply->lock_flags;
540         lock->l_flags |= reply->lock_flags & LDLM_INHERIT_FLAGS;
541         /* move NO_TIMEOUT flag to the lock to force ldlm_lock_match()
542          * to wait with no timeout as well */
543         lock->l_flags |= reply->lock_flags & LDLM_FL_NO_TIMEOUT;
544         unlock_res_and_lock(lock);
545
546         CDEBUG(D_INFO, "local: %p, remote cookie: "LPX64", flags: 0x%x\n",
547                lock, reply->lock_handle.cookie, *flags);
548
549         /* If enqueue returned a blocked lock but the completion handler has
550          * already run, then it fixed up the resource and we don't need to do it
551          * again. */
552         if ((*flags) & LDLM_FL_LOCK_CHANGED) {
553                 int newmode = reply->lock_desc.l_req_mode;
554                 LASSERT(!is_replay);
555                 if (newmode && newmode != lock->l_req_mode) {
556                         LDLM_DEBUG(lock, "server returned different mode %s",
557                                    ldlm_lockname[newmode]);
558                         lock->l_req_mode = newmode;
559                 }
560
561                 if (memcmp(reply->lock_desc.l_resource.lr_name.name,
562                           lock->l_resource->lr_name.name,
563                           sizeof(struct ldlm_res_id))) {
564                         CDEBUG(D_INFO, "remote intent success, locking "
565                                         "(%ld,%ld,%ld) instead of "
566                                         "(%ld,%ld,%ld)\n",
567                               (long)reply->lock_desc.l_resource.lr_name.name[0],
568                               (long)reply->lock_desc.l_resource.lr_name.name[1],
569                               (long)reply->lock_desc.l_resource.lr_name.name[2],
570                               (long)lock->l_resource->lr_name.name[0],
571                               (long)lock->l_resource->lr_name.name[1],
572                               (long)lock->l_resource->lr_name.name[2]);
573
574                         rc = ldlm_lock_change_resource(ns, lock,
575                                         &reply->lock_desc.l_resource.lr_name);
576                         if (rc || lock->l_resource == NULL)
577                                 GOTO(cleanup, rc = -ENOMEM);
578                         LDLM_DEBUG(lock, "client-side enqueue, new resource");
579                 }
580                 if (with_policy)
581                         if (!(type == LDLM_IBITS && !(exp->exp_connect_flags &
582                                                     OBD_CONNECT_IBITS)))
583                                 lock->l_policy_data =
584                                                  reply->lock_desc.l_policy_data;
585                 if (type != LDLM_PLAIN)
586                         LDLM_DEBUG(lock,"client-side enqueue, new policy data");
587         }
588
589         if ((*flags) & LDLM_FL_AST_SENT ||
590             /* Cancel extent locks as soon as possible on a liblustre client,
591              * because it cannot handle asynchronous ASTs robustly (see
592              * bug 7311). */
593             (LIBLUSTRE_CLIENT && type == LDLM_EXTENT)) {
594                 lock_res_and_lock(lock);
595                 lock->l_flags |= LDLM_FL_CBPENDING |  LDLM_FL_BL_AST;
596                 unlock_res_and_lock(lock);
597                 LDLM_DEBUG(lock, "enqueue reply includes blocking AST");
598         }
599
600         /* If the lock has already been granted by a completion AST, don't
601          * clobber the LVB with an older one. */
602         if (lvb_len && (lock->l_req_mode != lock->l_granted_mode)) {
603                 void *tmplvb;
604
605                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
606                                      lvb_len);
607                 tmplvb = req_capsule_server_get(&req->rq_pill,
608                                                      &RMF_DLM_LVB);
609                 if (tmplvb == NULL)
610                         GOTO(cleanup, rc = -EPROTO);
611                 memcpy(lock->l_lvb_data, tmplvb, lvb_len);
612         }
613
614         if (!is_replay) {
615                 rc = ldlm_lock_enqueue(ns, &lock, NULL, flags);
616                 if (lock->l_completion_ast != NULL) {
617                         int err = lock->l_completion_ast(lock, *flags, NULL);
618                         if (!rc)
619                                 rc = err;
620                         if (rc && type != LDLM_FLOCK) /* bug 9425, bug 10250 */
621                                 cleanup_phase = 1;
622                 }
623         }
624
625         if (lvb_len && lvb != NULL) {
626                 /* Copy the LVB here, and not earlier, because the completion
627                  * AST (if any) can override what we got in the reply */
628                 memcpy(lvb, lock->l_lvb_data, lvb_len);
629         }
630
631         LDLM_DEBUG(lock, "client-side enqueue END");
632         EXIT;
633 cleanup:
634         if (cleanup_phase == 1 && rc)
635                 failed_lock_cleanup(ns, lock, lockh, mode);
636         /* Put lock 2 times, the second reference is held by ldlm_cli_enqueue */
637         LDLM_LOCK_PUT(lock);
638         LDLM_LOCK_RELEASE(lock);
639         return rc;
640 }
641
642 /* PAGE_SIZE-512 is to allow TCP/IP and LNET headers to fit into
643  * a single page on the send/receive side. XXX: 512 should be changed
644  * to more adequate value. */
645 static inline int ldlm_req_handles_avail(int req_size, int off)
646 {
647         int avail;
648
649         avail = min_t(int, LDLM_MAXREQSIZE, CFS_PAGE_SIZE - 512) - req_size;
650         if (likely(avail >= 0))
651                 avail /= (int)sizeof(struct lustre_handle);
652         else
653                 avail = 0;
654         avail += LDLM_LOCKREQ_HANDLES - off;
655
656         return avail;
657 }
658
659 static inline int ldlm_capsule_handles_avail(struct req_capsule *pill,
660                                              enum req_location loc,
661                                              int off)
662 {
663         int size = req_capsule_msg_size(pill, loc);
664         return ldlm_req_handles_avail(size, off);
665 }
666
667 static inline int ldlm_format_handles_avail(struct obd_import *imp,
668                                             const struct req_format *fmt,
669                                             enum req_location loc, int off)
670 {
671         int size = req_capsule_fmt_size(imp->imp_msg_magic, fmt, loc);
672         return ldlm_req_handles_avail(size, off);
673 }
674
675 /* Cancel lru locks and pack them into the enqueue request. Pack there the given
676  * @count locks in @cancels. */
677 int ldlm_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
678                       int version, int opc, int canceloff,
679                       struct list_head *cancels, int count)
680 {
681         struct ldlm_namespace   *ns = exp->exp_obd->obd_namespace;
682         struct req_capsule      *pill = &req->rq_pill;
683         struct ldlm_request     *dlm = NULL;
684         int flags, avail, to_free, bufcount, pack = 0;
685         CFS_LIST_HEAD(head);
686         int rc;
687         ENTRY;
688
689         if (cancels == NULL)
690                 cancels = &head;
691         if (exp_connect_cancelset(exp)) {
692                 /* Estimate the amount of available space in the request. */
693                 bufcount = req_capsule_filled_sizes(pill, RCL_CLIENT);
694                 avail = ldlm_capsule_handles_avail(pill, RCL_CLIENT, canceloff);
695
696                 flags = ns_connect_lru_resize(ns) ?
697                         LDLM_CANCEL_LRUR : LDLM_CANCEL_AGED;
698                 to_free = !ns_connect_lru_resize(ns) &&
699                           opc == LDLM_ENQUEUE ? 1 : 0;
700
701                 /* Cancel lru locks here _only_ if the server supports
702                  * EARLY_CANCEL. Otherwise we have to send extra CANCEL
703                  * rpc, what will make us slower. */
704                 if (avail > count)
705                         count += ldlm_cancel_lru_local(ns, cancels, to_free,
706                                                        avail - count, 0, flags);
707                 if (avail > count)
708                         pack = count;
709                 else
710                         pack = avail;
711                 req_capsule_set_size(pill, &RMF_DLM_REQ, RCL_CLIENT,
712                                      ldlm_request_bufsize(pack, opc));
713         }
714
715         rc = ptlrpc_request_pack(req, version, opc);
716         if (rc) {
717                 ldlm_lock_list_put(cancels, l_bl_ast, count);
718                 RETURN(rc);
719         }
720
721         if (exp_connect_cancelset(exp)) {
722                 if (canceloff) {
723                         dlm = req_capsule_client_get(pill, &RMF_DLM_REQ);
724                         LASSERT(dlm);
725                         /* Skip first lock handler in ldlm_request_pack(),
726                          * this method will incrment @lock_count according
727                          * to the lock handle amount actually written to
728                          * the buffer. */
729                         dlm->lock_count = canceloff;
730                 }
731                 /* Pack into the request @pack lock handles. */
732                 ldlm_cli_cancel_list(cancels, pack, req, 0);
733                 /* Prepare and send separate cancel rpc for others. */
734                 ldlm_cli_cancel_list(cancels, count - pack, NULL, 0);
735         } else {
736                 ldlm_lock_list_put(cancels, l_bl_ast, count);
737         }
738         RETURN(0);
739 }
740
741 int ldlm_prep_enqueue_req(struct obd_export *exp, struct ptlrpc_request *req,
742                           struct list_head *cancels, int count)
743 {
744         return ldlm_prep_elc_req(exp, req, LUSTRE_DLM_VERSION, LDLM_ENQUEUE,
745                                  LDLM_ENQUEUE_CANCEL_OFF, cancels, count);
746 }
747
748 /* If a request has some specific initialisation it is passed in @reqp,
749  * otherwise it is created in ldlm_cli_enqueue.
750  *
751  * Supports sync and async requests, pass @async flag accordingly. If a
752  * request was created in ldlm_cli_enqueue and it is the async request,
753  * pass it to the caller in @reqp. */
754 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
755                      struct ldlm_enqueue_info *einfo,
756                      const struct ldlm_res_id *res_id,
757                      ldlm_policy_data_t *policy, int *flags,
758                      void *lvb, __u32 lvb_len, struct lustre_handle *lockh,
759                      int async)
760 {
761         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
762         struct ldlm_lock      *lock;
763         struct ldlm_request   *body;
764         int                    is_replay = *flags & LDLM_FL_REPLAY;
765         int                    req_passed_in = 1;
766         int                    rc, err;
767         struct ptlrpc_request *req;
768         ENTRY;
769
770         LASSERT(exp != NULL);
771
772         /* If we're replaying this lock, just check some invariants.
773          * If we're creating a new lock, get everything all setup nice. */
774         if (is_replay) {
775                 lock = ldlm_handle2lock_long(lockh, 0);
776                 LASSERT(lock != NULL);
777                 LDLM_DEBUG(lock, "client-side enqueue START");
778                 LASSERT(exp == lock->l_conn_export);
779         } else {
780                 const struct ldlm_callback_suite cbs = {
781                         .lcs_completion = einfo->ei_cb_cp,
782                         .lcs_blocking   = einfo->ei_cb_bl,
783                         .lcs_glimpse    = einfo->ei_cb_gl,
784                         .lcs_weigh      = einfo->ei_cb_wg
785                 };
786                 lock = ldlm_lock_create(ns, res_id, einfo->ei_type,
787                                         einfo->ei_mode, &cbs, einfo->ei_cbdata,
788                                         lvb_len);
789                 if (lock == NULL)
790                         RETURN(-ENOMEM);
791                 /* for the local lock, add the reference */
792                 ldlm_lock_addref_internal(lock, einfo->ei_mode);
793                 ldlm_lock2handle(lock, lockh);
794                 if (policy != NULL) {
795                         /* INODEBITS_INTEROP: If the server does not support
796                          * inodebits, we will request a plain lock in the
797                          * descriptor (ldlm_lock2desc() below) but use an
798                          * inodebits lock internally with both bits set.
799                          */
800                         if (einfo->ei_type == LDLM_IBITS &&
801                             !(exp->exp_connect_flags & OBD_CONNECT_IBITS))
802                                 lock->l_policy_data.l_inodebits.bits =
803                                         MDS_INODELOCK_LOOKUP |
804                                         MDS_INODELOCK_UPDATE;
805                         else
806                                 lock->l_policy_data = *policy;
807                 }
808
809                 if (einfo->ei_type == LDLM_EXTENT)
810                         lock->l_req_extent = policy->l_extent;
811                 LDLM_DEBUG(lock, "client-side enqueue START");
812         }
813
814         /* lock not sent to server yet */
815
816         if (reqp == NULL || *reqp == NULL) {
817                 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
818                                                 &RQF_LDLM_ENQUEUE,
819                                                 LUSTRE_DLM_VERSION,
820                                                 LDLM_ENQUEUE);
821                 if (req == NULL) {
822                         failed_lock_cleanup(ns, lock, lockh, einfo->ei_mode);
823                         LDLM_LOCK_RELEASE(lock);
824                         RETURN(-ENOMEM);
825                 }
826                 req_passed_in = 0;
827                 if (reqp)
828                         *reqp = req;
829         } else {
830                 int len;
831
832                 req = *reqp;
833                 len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ,
834                                            RCL_CLIENT);
835                 LASSERTF(len >= sizeof(*body), "buflen[%d] = %d, not %d\n",
836                          DLM_LOCKREQ_OFF, len, (int)sizeof(*body));
837         }
838
839         lock->l_conn_export = exp;
840         lock->l_export = NULL;
841         lock->l_blocking_ast = einfo->ei_cb_bl;
842
843         /* Dump lock data into the request buffer */
844         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
845         ldlm_lock2desc(lock, &body->lock_desc);
846         body->lock_flags = *flags;
847         body->lock_handle[0] = *lockh;
848
849         /* Continue as normal. */
850         if (!req_passed_in) {
851                 if (lvb_len > 0) {
852                         req_capsule_extend(&req->rq_pill,
853                                            &RQF_LDLM_ENQUEUE_LVB);
854                         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB,
855                                              RCL_SERVER, lvb_len);
856                 }
857                 ptlrpc_request_set_replen(req);
858         }
859
860         /*
861          * Liblustre client doesn't get extent locks, except for O_APPEND case
862          * where [0, OBD_OBJECT_EOF] lock is taken, or truncate, where
863          * [i_size, OBD_OBJECT_EOF] lock is taken.
864          */
865         LASSERT(ergo(LIBLUSTRE_CLIENT, einfo->ei_type != LDLM_EXTENT ||
866                      policy->l_extent.end == OBD_OBJECT_EOF));
867
868         if (async) {
869                 LASSERT(reqp != NULL);
870                 RETURN(0);
871         }
872
873         LDLM_DEBUG(lock, "sending request");
874
875         rc = ptlrpc_queue_wait(req);
876
877         err = ldlm_cli_enqueue_fini(exp, req, einfo->ei_type, policy ? 1 : 0,
878                                     einfo->ei_mode, flags, lvb, lvb_len,
879                                     lockh, rc);
880
881         /* If ldlm_cli_enqueue_fini did not find the lock, we need to free
882          * one reference that we took */
883         if (err == -ENOLCK)
884                 LDLM_LOCK_RELEASE(lock);
885         else
886                 rc = err;
887
888         if (!req_passed_in && req != NULL) {
889                 ptlrpc_req_finished(req);
890                 if (reqp)
891                         *reqp = NULL;
892         }
893
894         RETURN(rc);
895 }
896
897 static int ldlm_cli_convert_local(struct ldlm_lock *lock, int new_mode,
898                                   __u32 *flags)
899 {
900         struct ldlm_resource *res;
901         int rc;
902         ENTRY;
903         if (ns_is_client(lock->l_resource->lr_namespace)) {
904                 CERROR("Trying to cancel local lock\n");
905                 LBUG();
906         }
907         LDLM_DEBUG(lock, "client-side local convert");
908
909         res = ldlm_lock_convert(lock, new_mode, flags);
910         if (res) {
911                 ldlm_reprocess_all(res);
912                 rc = 0;
913         } else {
914                 rc = EDEADLOCK;
915         }
916         LDLM_DEBUG(lock, "client-side local convert handler END");
917         LDLM_LOCK_PUT(lock);
918         RETURN(rc);
919 }
920
921 /* FIXME: one of ldlm_cli_convert or the server side should reject attempted
922  * conversion of locks which are on the waiting or converting queue */
923 /* Caller of this code is supposed to take care of lock readers/writers
924    accounting */
925 int ldlm_cli_convert(struct lustre_handle *lockh, int new_mode, __u32 *flags)
926 {
927         struct ldlm_request   *body;
928         struct ldlm_reply     *reply;
929         struct ldlm_lock      *lock;
930         struct ldlm_resource  *res;
931         struct ptlrpc_request *req;
932         int                    rc;
933         ENTRY;
934
935         lock = ldlm_handle2lock(lockh);
936         if (!lock) {
937                 LBUG();
938                 RETURN(-EINVAL);
939         }
940         *flags = 0;
941
942         if (lock->l_conn_export == NULL)
943                 RETURN(ldlm_cli_convert_local(lock, new_mode, flags));
944
945         LDLM_DEBUG(lock, "client-side convert");
946
947         req = ptlrpc_request_alloc_pack(class_exp2cliimp(lock->l_conn_export),
948                                         &RQF_LDLM_CONVERT, LUSTRE_DLM_VERSION,
949                                         LDLM_CONVERT);
950         if (req == NULL) {
951                 LDLM_LOCK_PUT(lock);
952                 RETURN(-ENOMEM);
953         }
954
955         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
956         body->lock_handle[0] = lock->l_remote_handle;
957
958         body->lock_desc.l_req_mode = new_mode;
959         body->lock_flags = *flags;
960
961
962         ptlrpc_request_set_replen(req);
963         rc = ptlrpc_queue_wait(req);
964         if (rc != ELDLM_OK)
965                 GOTO(out, rc);
966
967         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
968         if (reply == NULL)
969                 GOTO(out, rc = -EPROTO);
970
971         if (req->rq_status)
972                 GOTO(out, rc = req->rq_status);
973
974         res = ldlm_lock_convert(lock, new_mode, &reply->lock_flags);
975         if (res != NULL) {
976                 ldlm_reprocess_all(res);
977                 /* Go to sleep until the lock is granted. */
978                 /* FIXME: or cancelled. */
979                 if (lock->l_completion_ast) {
980                         rc = lock->l_completion_ast(lock, LDLM_FL_WAIT_NOREPROC,
981                                                     NULL);
982                         if (rc)
983                                 GOTO(out, rc);
984                 }
985         } else {
986                 rc = EDEADLOCK;
987         }
988         EXIT;
989  out:
990         LDLM_LOCK_PUT(lock);
991         ptlrpc_req_finished(req);
992         return rc;
993 }
994
995 /* Cancel locks locally.
996  * Returns:
997  * LDLM_FL_LOCAL_ONLY if tere is no need in a CANCEL rpc to the server;
998  * LDLM_FL_CANCELING otherwise;
999  * LDLM_FL_BL_AST if there is a need in a separate CANCEL rpc. */
1000 static int ldlm_cli_cancel_local(struct ldlm_lock *lock)
1001 {
1002         int rc = LDLM_FL_LOCAL_ONLY;
1003         ENTRY;
1004
1005         if (lock->l_conn_export) {
1006                 int local_only;
1007
1008                 LDLM_DEBUG(lock, "client-side cancel");
1009                 /* Set this flag to prevent others from getting new references*/
1010                 lock_res_and_lock(lock);
1011                 lock->l_flags |= LDLM_FL_CBPENDING;
1012                 local_only = (lock->l_flags &
1013                               (LDLM_FL_LOCAL_ONLY|LDLM_FL_CANCEL_ON_BLOCK));
1014                 ldlm_cancel_callback(lock);
1015                 rc = (lock->l_flags & LDLM_FL_BL_AST) ?
1016                         LDLM_FL_BL_AST : LDLM_FL_CANCELING;
1017                 unlock_res_and_lock(lock);
1018
1019                 if (local_only) {
1020                         CDEBUG(D_DLMTRACE, "not sending request (at caller's "
1021                                "instruction)\n");
1022                         rc = LDLM_FL_LOCAL_ONLY;
1023                 }
1024                 ldlm_lock_cancel(lock);
1025         } else {
1026                 if (ns_is_client(lock->l_resource->lr_namespace)) {
1027                         LDLM_ERROR(lock, "Trying to cancel local lock");
1028                         LBUG();
1029                 }
1030                 LDLM_DEBUG(lock, "server-side local cancel");
1031                 ldlm_lock_cancel(lock);
1032                 ldlm_reprocess_all(lock->l_resource);
1033                 LDLM_DEBUG(lock, "server-side local cancel handler END");
1034         }
1035
1036         RETURN(rc);
1037 }
1038
1039 /* Pack @count locks in @head into ldlm_request buffer at the offset @off,
1040    of the request @req. */
1041 static void ldlm_cancel_pack(struct ptlrpc_request *req,
1042                              struct list_head *head, int count)
1043 {
1044         struct ldlm_request *dlm;
1045         struct ldlm_lock *lock;
1046         int max, packed = 0;
1047         ENTRY;
1048
1049         dlm = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1050         LASSERT(dlm != NULL);
1051
1052         /* Check the room in the request buffer. */
1053         max = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT) -
1054                 sizeof(struct ldlm_request);
1055         max /= sizeof(struct lustre_handle);
1056         max += LDLM_LOCKREQ_HANDLES;
1057         LASSERT(max >= dlm->lock_count + count);
1058
1059         /* XXX: it would be better to pack lock handles grouped by resource.
1060          * so that the server cancel would call filter_lvbo_update() less
1061          * frequently. */
1062         list_for_each_entry(lock, head, l_bl_ast) {
1063                 if (!count--)
1064                         break;
1065                 LASSERT(lock->l_conn_export);
1066                 /* Pack the lock handle to the given request buffer. */
1067                 LDLM_DEBUG(lock, "packing");
1068                 dlm->lock_handle[dlm->lock_count++] = lock->l_remote_handle;
1069                 packed++;
1070         }
1071         CDEBUG(D_DLMTRACE, "%d locks packed\n", packed);
1072         EXIT;
1073 }
1074
1075 /* Prepare and send a batched cancel rpc, it will include count lock handles
1076  * of locks given in @head. */
1077 int ldlm_cli_cancel_req(struct obd_export *exp, struct list_head *cancels,
1078                         int count, int flags)
1079 {
1080         struct ptlrpc_request *req = NULL;
1081         struct obd_import *imp;
1082         int free, sent = 0;
1083         int rc = 0;
1084         ENTRY;
1085
1086         LASSERT(exp != NULL);
1087         LASSERT(count > 0);
1088
1089         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL, obd_fail_val);
1090
1091         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_RACE))
1092                 RETURN(count);
1093
1094         free = ldlm_format_handles_avail(class_exp2cliimp(exp),
1095                                          &RQF_LDLM_CANCEL, RCL_CLIENT, 0);
1096         if (count > free)
1097                 count = free;
1098
1099         while (1) {
1100                 int bufcount;
1101
1102                 imp = class_exp2cliimp(exp);
1103                 if (imp == NULL || imp->imp_invalid) {
1104                         CDEBUG(D_DLMTRACE,
1105                                "skipping cancel on invalid import %p\n", imp);
1106                         RETURN(count);
1107                 }
1108
1109                 req = ptlrpc_request_alloc(imp, &RQF_LDLM_CANCEL);
1110                 if (req == NULL)
1111                         GOTO(out, rc = -ENOMEM);
1112
1113                 bufcount = req_capsule_filled_sizes(&req->rq_pill, RCL_CLIENT);
1114                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT,
1115                                      ldlm_request_bufsize(count, LDLM_CANCEL));
1116
1117                 rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CANCEL);
1118                 if (rc) {
1119                         ptlrpc_request_free(req);
1120                         GOTO(out, rc);
1121                 }
1122                 req->rq_no_resend = 1;
1123                 req->rq_no_delay = 1;
1124
1125                 req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
1126                 req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
1127                 ptlrpc_at_set_req_timeout(req);
1128
1129                 ldlm_cancel_pack(req, cancels, count);
1130
1131                 ptlrpc_request_set_replen(req);
1132                 if (flags & LDLM_FL_ASYNC) {
1133                         ptlrpcd_add_req(req, PSCOPE_OTHER);
1134                         sent = count;
1135                         GOTO(out, 0);
1136                 } else {
1137                         rc = ptlrpc_queue_wait(req);
1138                 }
1139                 if (rc == ESTALE) {
1140                         CDEBUG(D_DLMTRACE, "client/server (nid %s) "
1141                                "out of sync -- not fatal\n",
1142                                libcfs_nid2str(req->rq_import->
1143                                               imp_connection->c_peer.nid));
1144                         rc = 0;
1145                 } else if (rc == -ETIMEDOUT && /* check there was no reconnect*/
1146                            req->rq_import_generation == imp->imp_generation) {
1147                         ptlrpc_req_finished(req);
1148                         continue;
1149                 } else if (rc != ELDLM_OK) {
1150                         CERROR("Got rc %d from cancel RPC: canceling "
1151                                "anyway\n", rc);
1152                         break;
1153                 }
1154                 sent = count;
1155                 break;
1156         }
1157
1158         ptlrpc_req_finished(req);
1159         EXIT;
1160 out:
1161         return sent ? sent : rc;
1162 }
1163
1164 static inline struct ldlm_pool *ldlm_imp2pl(struct obd_import *imp)
1165 {
1166         LASSERT(imp != NULL);
1167         return &imp->imp_obd->obd_namespace->ns_pool;
1168 }
1169
1170 /**
1171  * Update client's obd pool related fields with new SLV and Limit from \a req.
1172  */
1173 int ldlm_cli_update_pool(struct ptlrpc_request *req)
1174 {
1175         struct obd_device *obd;
1176         __u64 old_slv, new_slv;
1177         __u32 new_limit;
1178         ENTRY;
1179         if (unlikely(!req->rq_import || !req->rq_import->imp_obd ||
1180                      !imp_connect_lru_resize(req->rq_import)))
1181         {
1182                 /*
1183                  * Do nothing for corner cases.
1184                  */
1185                 RETURN(0);
1186         }
1187
1188         /*
1189          * In some cases RPC may contain slv and limit zeroed out. This is
1190          * the case when server does not support lru resize feature. This is
1191          * also possible in some recovery cases when server side reqs have no
1192          * ref to obd export and thus access to server side namespace is no
1193          * possible.
1194          */
1195         if (lustre_msg_get_slv(req->rq_repmsg) == 0 ||
1196             lustre_msg_get_limit(req->rq_repmsg) == 0) {
1197                 DEBUG_REQ(D_HA, req, "Zero SLV or Limit found "
1198                           "(SLV: "LPU64", Limit: %u)",
1199                           lustre_msg_get_slv(req->rq_repmsg),
1200                           lustre_msg_get_limit(req->rq_repmsg));
1201                 RETURN(0);
1202         }
1203
1204         new_limit = lustre_msg_get_limit(req->rq_repmsg);
1205         new_slv = lustre_msg_get_slv(req->rq_repmsg);
1206         obd = req->rq_import->imp_obd;
1207
1208         /*
1209          * Set new SLV and Limit to obd fields to make accessible for pool
1210          * thread. We do not access obd_namespace and pool directly here
1211          * as there is no reliable way to make sure that they are still
1212          * alive in cleanup time. Evil races are possible which may cause
1213          * oops in that time.
1214          */
1215         write_lock(&obd->obd_pool_lock);
1216         old_slv = obd->obd_pool_slv;
1217         obd->obd_pool_slv = new_slv;
1218         obd->obd_pool_limit = new_limit;
1219         write_unlock(&obd->obd_pool_lock);
1220
1221         RETURN(0);
1222 }
1223 EXPORT_SYMBOL(ldlm_cli_update_pool);
1224
1225 int ldlm_cli_cancel(struct lustre_handle *lockh)
1226 {
1227         struct obd_export *exp;
1228         int avail, flags, count = 1, rc = 0;
1229         struct ldlm_namespace *ns;
1230         struct ldlm_lock *lock;
1231         CFS_LIST_HEAD(cancels);
1232         ENTRY;
1233
1234         /* concurrent cancels on the same handle can happen */
1235         lock = ldlm_handle2lock_long(lockh, LDLM_FL_CANCELING);
1236         if (lock == NULL) {
1237                 LDLM_DEBUG_NOLOCK("lock is already being destroyed\n");
1238                 RETURN(0);
1239         }
1240
1241         rc = ldlm_cli_cancel_local(lock);
1242         if (rc < 0 || rc == LDLM_FL_LOCAL_ONLY) {
1243                 LDLM_LOCK_RELEASE(lock);
1244                 RETURN(rc < 0 ? rc : 0);
1245         }
1246         /* Even if the lock is marked as LDLM_FL_BL_AST, this is a LDLM_CANCEL
1247          * rpc which goes to canceld portal, so we can cancel other lru locks
1248          * here and send them all as one LDLM_CANCEL rpc. */
1249         LASSERT(list_empty(&lock->l_bl_ast));
1250         list_add(&lock->l_bl_ast, &cancels);
1251
1252         exp = lock->l_conn_export;
1253         if (exp_connect_cancelset(exp)) {
1254                 avail = ldlm_format_handles_avail(class_exp2cliimp(exp),
1255                                                   &RQF_LDLM_CANCEL,
1256                                                   RCL_CLIENT, 0);
1257                 LASSERT(avail > 0);
1258
1259                 ns = lock->l_resource->lr_namespace;
1260                 flags = ns_connect_lru_resize(ns) ?
1261                         LDLM_CANCEL_LRUR : LDLM_CANCEL_AGED;
1262                 count += ldlm_cancel_lru_local(ns, &cancels, 0, avail - 1,
1263                                                LDLM_FL_BL_AST, flags);
1264         }
1265         ldlm_cli_cancel_list(&cancels, count, NULL, 0);
1266         RETURN(0);
1267 }
1268
1269 /* XXX until we will have compound requests and can cut cancels from generic rpc
1270  * we need send cancels with LDLM_FL_BL_AST flag as separate rpc */
1271 static int ldlm_cancel_list(struct list_head *cancels, int count, int flags)
1272 {
1273         CFS_LIST_HEAD(head);
1274         struct ldlm_lock *lock, *next;
1275         int left = 0, bl_ast = 0, rc;
1276
1277         left = count;
1278         list_for_each_entry_safe(lock, next, cancels, l_bl_ast) {
1279                 if (left-- == 0)
1280                         break;
1281
1282                 if (flags & LDLM_FL_LOCAL_ONLY) {
1283                         rc = LDLM_FL_LOCAL_ONLY;
1284                         ldlm_lock_cancel(lock);
1285                 } else {
1286                         rc = ldlm_cli_cancel_local(lock);
1287                 }
1288                 if (!(flags & LDLM_FL_BL_AST) && (rc == LDLM_FL_BL_AST)) {
1289                         LDLM_DEBUG(lock, "Cancel lock separately");
1290                         list_del_init(&lock->l_bl_ast);
1291                         list_add(&lock->l_bl_ast, &head);
1292                         bl_ast ++;
1293                         continue;
1294                 }
1295                 if (rc == LDLM_FL_LOCAL_ONLY) {
1296                         /* CANCEL RPC should not be sent to server. */
1297                         list_del_init(&lock->l_bl_ast);
1298                         LDLM_LOCK_RELEASE(lock);
1299                         count--;
1300                 }
1301
1302         }
1303         if (bl_ast > 0) {
1304                 count -= bl_ast;
1305                 ldlm_cli_cancel_list(&head, bl_ast, NULL, 0);
1306         }
1307
1308         RETURN(count);
1309 }
1310
1311 /**
1312  * Callback function for lru-resize policy. Makes decision whether to keep
1313  * \a lock in LRU for current \a LRU size \a unused, added in current scan
1314  * \a added and number of locks to be preferably canceled \a count.
1315  *
1316  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1317  *
1318  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1319  */
1320 static ldlm_policy_res_t ldlm_cancel_lrur_policy(struct ldlm_namespace *ns,
1321                                                  struct ldlm_lock *lock,
1322                                                  int unused, int added,
1323                                                  int count)
1324 {
1325         cfs_time_t cur = cfs_time_current();
1326         struct ldlm_pool *pl = &ns->ns_pool;
1327         __u64 slv, lvf, lv;
1328         cfs_time_t la;
1329
1330         /*
1331          * Stop lru processing when we reached passed @count or checked all
1332          * locks in lru.
1333          */
1334         if (count && added >= count)
1335                 return LDLM_POLICY_KEEP_LOCK;
1336
1337         slv = ldlm_pool_get_slv(pl);
1338         lvf = ldlm_pool_get_lvf(pl);
1339         la = cfs_duration_sec(cfs_time_sub(cur,
1340                               lock->l_last_used));
1341
1342         /*
1343          * Stop when slv is not yet come from server or lv is smaller than
1344          * it is.
1345          */
1346         lv = lvf * la * unused;
1347
1348         /*
1349          * Inform pool about current CLV to see it via proc.
1350          */
1351         ldlm_pool_set_clv(pl, lv);
1352         return (slv == 1 || lv < slv) ?
1353                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1354 }
1355
1356 /**
1357  * Callback function for proc used policy. Makes decision whether to keep
1358  * \a lock in LRU for current \a LRU size \a unused, added in current scan
1359  * \a added and number of locks to be preferably canceled \a count.
1360  *
1361  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1362  *
1363  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1364  */
1365 static ldlm_policy_res_t ldlm_cancel_passed_policy(struct ldlm_namespace *ns,
1366                                                    struct ldlm_lock *lock,
1367                                                    int unused, int added,
1368                                                    int count)
1369 {
1370         /*
1371          * Stop lru processing when we reached passed @count or checked all
1372          * locks in lru.
1373          */
1374         return (added >= count) ?
1375                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1376 }
1377
1378 /**
1379  * Callback function for aged policy. Makes decision whether to keep
1380  * \a lock in LRU for current \a LRU size \a unused, added in current scan
1381  * \a added and number of locks to be preferably canceled \a count.
1382  *
1383  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1384  *
1385  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1386  */
1387 static ldlm_policy_res_t ldlm_cancel_aged_policy(struct ldlm_namespace *ns,
1388                                                  struct ldlm_lock *lock,
1389                                                  int unused, int added,
1390                                                  int count)
1391 {
1392         /*
1393          * Stop lru processing if young lock is found and we reached passed
1394          * @count.
1395          */
1396         return ((added >= count) &&
1397                 cfs_time_before(cfs_time_current(),
1398                                 cfs_time_add(lock->l_last_used,
1399                                              ns->ns_max_age))) ?
1400                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1401 }
1402
1403 /**
1404  * Callback function for default policy. Makes decision whether to keep
1405  * \a lock in LRU for current \a LRU size \a unused, added in current scan
1406  * \a added and number of locks to be preferably canceled \a count.
1407  *
1408  * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1409  *
1410  * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1411  */
1412 static ldlm_policy_res_t ldlm_cancel_default_policy(struct ldlm_namespace *ns,
1413                                                     struct ldlm_lock *lock,
1414                                                     int unused, int added,
1415                                                     int count)
1416 {
1417         /*
1418          * Stop lru processing when we reached passed @count or checked all
1419          * locks in lru.
1420          */
1421         return (added >= count) ?
1422                 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1423 }
1424
1425 typedef ldlm_policy_res_t (*ldlm_cancel_lru_policy_t)(struct ldlm_namespace *,
1426                                                       struct ldlm_lock *, int,
1427                                                       int, int);
1428
1429 static ldlm_cancel_lru_policy_t
1430 ldlm_cancel_lru_policy(struct ldlm_namespace *ns, int flags)
1431 {
1432         if (ns_connect_lru_resize(ns)) {
1433                 if (flags & LDLM_CANCEL_SHRINK)
1434                         /* We kill passed number of old locks. */
1435                         return ldlm_cancel_passed_policy;
1436                 else if (flags & LDLM_CANCEL_LRUR)
1437                         return ldlm_cancel_lrur_policy;
1438                 else if (flags & LDLM_CANCEL_PASSED)
1439                         return ldlm_cancel_passed_policy;
1440         } else {
1441                 if (flags & LDLM_CANCEL_AGED)
1442                         return ldlm_cancel_aged_policy;
1443         }
1444
1445         return ldlm_cancel_default_policy;
1446 }
1447
1448 /* - Free space in lru for @count new locks,
1449  *   redundant unused locks are canceled locally;
1450  * - also cancel locally unused aged locks;
1451  * - do not cancel more than @max locks;
1452  * - GET the found locks and add them into the @cancels list.
1453  *
1454  * A client lock can be added to the l_bl_ast list only when it is
1455  * marked LDLM_FL_CANCELING. Otherwise, somebody is already doing CANCEL.
1456  * There are the following use cases: ldlm_cancel_resource_local(),
1457  * ldlm_cancel_lru_local() and ldlm_cli_cancel(), which check&set this
1458  * flag properly. As any attempt to cancel a lock rely on this flag,
1459  * l_bl_ast list is accessed later without any special locking.
1460  *
1461  * Calling policies for enabled lru resize:
1462  * ----------------------------------------
1463  * flags & LDLM_CANCEL_LRUR - use lru resize policy (SLV from server) to
1464  *                            cancel not more than @count locks;
1465  *
1466  * flags & LDLM_CANCEL_PASSED - cancel @count number of old locks (located at
1467  *                              the beginning of lru list);
1468  *
1469  * flags & LDLM_CANCEL_SHRINK - cancel not more than @count locks according to
1470  *                              memory pressre policy function;
1471  *
1472  * flags & LDLM_CANCEL_AGED -   cancel alocks according to "aged policy".
1473  */
1474 int ldlm_cancel_lru_local(struct ldlm_namespace *ns, struct list_head *cancels,
1475                           int count, int max, int cancel_flags, int flags)
1476 {
1477         ldlm_cancel_lru_policy_t pf;
1478         struct ldlm_lock *lock, *next;
1479         int added = 0, unused;
1480         ENTRY;
1481
1482         spin_lock(&ns->ns_unused_lock);
1483         unused = ns->ns_nr_unused;
1484
1485         if (!ns_connect_lru_resize(ns))
1486                 count += unused - ns->ns_max_unused;
1487
1488         pf = ldlm_cancel_lru_policy(ns, flags);
1489         LASSERT(pf != NULL);
1490
1491         while (!list_empty(&ns->ns_unused_list)) {
1492                 /* For any flags, stop scanning if @max is reached. */
1493                 if (max && added >= max)
1494                         break;
1495
1496                 list_for_each_entry_safe(lock, next, &ns->ns_unused_list, l_lru){
1497                         /* No locks which got blocking requests. */
1498                         LASSERT(!(lock->l_flags & LDLM_FL_BL_AST));
1499
1500                         /* Somebody is already doing CANCEL. No need in this
1501                          * lock in lru, do not traverse it again. */
1502                         if (!(lock->l_flags & LDLM_FL_CANCELING))
1503                                 break;
1504
1505                         ldlm_lock_remove_from_lru_nolock(lock);
1506                 }
1507                 if (&lock->l_lru == &ns->ns_unused_list)
1508                         break;
1509
1510                 LDLM_LOCK_GET(lock);
1511                 spin_unlock(&ns->ns_unused_lock);
1512                 lu_ref_add(&lock->l_reference, __FUNCTION__, cfs_current());
1513
1514                 /* Pass the lock through the policy filter and see if it
1515                  * should stay in lru.
1516                  *
1517                  * Even for shrinker policy we stop scanning if
1518                  * we find a lock that should stay in the cache.
1519                  * We should take into account lock age anyway
1520                  * as new lock even if it is small of weight is
1521                  * valuable resource.
1522                  *
1523                  * That is, for shrinker policy we drop only
1524                  * old locks, but additionally chose them by
1525                  * their weight. Big extent locks will stay in
1526                  * the cache. */
1527                 if (pf(ns, lock, unused, added, count) ==
1528                     LDLM_POLICY_KEEP_LOCK) {
1529                         lu_ref_del(&lock->l_reference,
1530                                    __FUNCTION__, cfs_current());
1531                         LDLM_LOCK_RELEASE(lock);
1532                         spin_lock(&ns->ns_unused_lock);
1533                         break;
1534                 }
1535
1536                 lock_res_and_lock(lock);
1537                 /* Check flags again under the lock. */
1538                 if ((lock->l_flags & LDLM_FL_CANCELING) ||
1539                     (ldlm_lock_remove_from_lru(lock) == 0)) {
1540                         /* other thread is removing lock from lru or
1541                          * somebody is already doing CANCEL or
1542                          * there is a blocking request which will send
1543                          * cancel by itseft or the lock is matched
1544                          * is already not unused. */
1545                         unlock_res_and_lock(lock);
1546                         lu_ref_del(&lock->l_reference,
1547                                    __FUNCTION__, cfs_current());
1548                         LDLM_LOCK_RELEASE(lock);
1549                         spin_lock(&ns->ns_unused_lock);
1550                         continue;
1551                 }
1552                 LASSERT(!lock->l_readers && !lock->l_writers);
1553
1554                 /* If we have chosen to cancel this lock voluntarily, we
1555                  * better send cancel notification to server, so that it
1556                  * frees appropriate state. This might lead to a race
1557                  * where while we are doing cancel here, server is also
1558                  * silently cancelling this lock. */
1559                 lock->l_flags &= ~LDLM_FL_CANCEL_ON_BLOCK;
1560
1561                 /* Setting the CBPENDING flag is a little misleading,
1562                  * but prevents an important race; namely, once
1563                  * CBPENDING is set, the lock can accumulate no more
1564                  * readers/writers. Since readers and writers are
1565                  * already zero here, ldlm_lock_decref() won't see
1566                  * this flag and call l_blocking_ast */
1567                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING;
1568
1569                 /* We can't re-add to l_lru as it confuses the
1570                  * refcounting in ldlm_lock_remove_from_lru() if an AST
1571                  * arrives after we drop ns_lock below. We use l_bl_ast
1572                  * and can't use l_pending_chain as it is used both on
1573                  * server and client nevertheless bug 5666 says it is
1574                  * used only on server */
1575                 LASSERT(list_empty(&lock->l_bl_ast));
1576                 list_add(&lock->l_bl_ast, cancels);
1577                 unlock_res_and_lock(lock);
1578                 lu_ref_del(&lock->l_reference, __FUNCTION__, cfs_current());
1579                 spin_lock(&ns->ns_unused_lock);
1580                 added++;
1581                 unused--;
1582         }
1583         spin_unlock(&ns->ns_unused_lock);
1584         RETURN(ldlm_cancel_list(cancels, added, cancel_flags));
1585 }
1586
1587 /* when called with LDLM_ASYNC the blocking callback will be handled
1588  * in a thread and this function will return after the thread has been
1589  * asked to call the callback.  when called with LDLM_SYNC the blocking
1590  * callback will be performed in this function. */
1591 int ldlm_cancel_lru(struct ldlm_namespace *ns, int nr, ldlm_sync_t sync,
1592                     int flags)
1593 {
1594         CFS_LIST_HEAD(cancels);
1595         int count, rc;
1596         ENTRY;
1597
1598 #ifndef __KERNEL__
1599         sync = LDLM_SYNC; /* force to be sync in user space */
1600 #endif
1601         count = ldlm_cancel_lru_local(ns, &cancels, nr, 0, 0, flags);
1602         if (sync == LDLM_ASYNC) {
1603                 rc = ldlm_bl_to_thread_list(ns, NULL, &cancels, count);
1604                 if (rc == 0)
1605                         RETURN(count);
1606         }
1607
1608         /* If an error occured in ASYNC mode, or this is SYNC mode,
1609          * cancel the list. */
1610         ldlm_cli_cancel_list(&cancels, count, NULL, 0);
1611         RETURN(count);
1612 }
1613
1614 /* Find and cancel locally unused locks found on resource, matched to the
1615  * given policy, mode. GET the found locks and add them into the @cancels
1616  * list. */
1617 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1618                                struct list_head *cancels,
1619                                ldlm_policy_data_t *policy,
1620                                ldlm_mode_t mode, int lock_flags,
1621                                int cancel_flags, void *opaque)
1622 {
1623         struct ldlm_lock *lock;
1624         int count = 0;
1625         ENTRY;
1626
1627         lock_res(res);
1628         list_for_each_entry(lock, &res->lr_granted, l_res_link) {
1629                 if (opaque != NULL && lock->l_ast_data != opaque) {
1630                         LDLM_ERROR(lock, "data %p doesn't match opaque %p",
1631                                    lock->l_ast_data, opaque);
1632                         //LBUG();
1633                         continue;
1634                 }
1635
1636                 if (lock->l_readers || lock->l_writers) {
1637                         if (cancel_flags & LDLM_FL_WARN) {
1638                                 LDLM_ERROR(lock, "lock in use");
1639                                 //LBUG();
1640                         }
1641                         continue;
1642                 }
1643
1644                 /* If somebody is already doing CANCEL, or blocking ast came,
1645                  * skip this lock. */
1646                 if (lock->l_flags & LDLM_FL_BL_AST ||
1647                     lock->l_flags & LDLM_FL_CANCELING)
1648                         continue;
1649
1650                 if (lockmode_compat(lock->l_granted_mode, mode))
1651                         continue;
1652
1653                 /* If policy is given and this is IBITS lock, add to list only
1654                  * those locks that match by policy. */
1655                 if (policy && (lock->l_resource->lr_type == LDLM_IBITS) &&
1656                     !(lock->l_policy_data.l_inodebits.bits &
1657                       policy->l_inodebits.bits))
1658                         continue;
1659
1660                 /* See CBPENDING comment in ldlm_cancel_lru */
1661                 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING |
1662                                  lock_flags;
1663
1664                 LASSERT(list_empty(&lock->l_bl_ast));
1665                 list_add(&lock->l_bl_ast, cancels);
1666                 LDLM_LOCK_GET(lock);
1667                 count++;
1668         }
1669         unlock_res(res);
1670
1671         RETURN(ldlm_cancel_list(cancels, count, cancel_flags));
1672 }
1673
1674 /* If @req is NULL, send CANCEL request to server with handles of locks
1675  * in the @cancels. If EARLY_CANCEL is not supported, send CANCEL requests
1676  * separately per lock.
1677  * If @req is not NULL, put handles of locks in @cancels into the request
1678  * buffer at the offset @off.
1679  * Destroy @cancels at the end. */
1680 int ldlm_cli_cancel_list(struct list_head *cancels, int count,
1681                          struct ptlrpc_request *req, int flags)
1682 {
1683         struct ldlm_lock *lock;
1684         int res = 0;
1685         ENTRY;
1686
1687         if (list_empty(cancels) || count == 0)
1688                 RETURN(0);
1689
1690         /* XXX: requests (both batched and not) could be sent in parallel.
1691          * Usually it is enough to have just 1 RPC, but it is possible that
1692          * there are to many locks to be cancelled in LRU or on a resource.
1693          * It would also speed up the case when the server does not support
1694          * the feature. */
1695         while (count > 0) {
1696                 LASSERT(!list_empty(cancels));
1697                 lock = list_entry(cancels->next, struct ldlm_lock, l_bl_ast);
1698                 LASSERT(lock->l_conn_export);
1699
1700                 if (exp_connect_cancelset(lock->l_conn_export)) {
1701                         res = count;
1702                         if (req)
1703                                 ldlm_cancel_pack(req, cancels, count);
1704                         else
1705                                 res = ldlm_cli_cancel_req(lock->l_conn_export,
1706                                                           cancels, count,
1707                                                           flags);
1708                 } else {
1709                         res = ldlm_cli_cancel_req(lock->l_conn_export,
1710                                                   cancels, 1, flags);
1711                 }
1712
1713                 if (res < 0) {
1714                         CERROR("ldlm_cli_cancel_list: %d\n", res);
1715                         res = count;
1716                 }
1717
1718                 count -= res;
1719                 ldlm_lock_list_put(cancels, l_bl_ast, res);
1720         }
1721         LASSERT(count == 0);
1722         RETURN(0);
1723 }
1724
1725 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
1726                                     const struct ldlm_res_id *res_id,
1727                                     ldlm_policy_data_t *policy,
1728                                     ldlm_mode_t mode, int flags, void *opaque)
1729 {
1730         struct ldlm_resource *res;
1731         CFS_LIST_HEAD(cancels);
1732         int count;
1733         int rc;
1734         ENTRY;
1735
1736         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
1737         if (res == NULL) {
1738                 /* This is not a problem. */
1739                 CDEBUG(D_INFO, "No resource "LPU64"\n", res_id->name[0]);
1740                 RETURN(0);
1741         }
1742
1743         LDLM_RESOURCE_ADDREF(res);
1744         count = ldlm_cancel_resource_local(res, &cancels, policy, mode,
1745                                            0, flags, opaque);
1746         rc = ldlm_cli_cancel_list(&cancels, count, NULL, flags);
1747         if (rc != ELDLM_OK)
1748                 CERROR("ldlm_cli_cancel_unused_resource: %d\n", rc);
1749
1750         LDLM_RESOURCE_DELREF(res);
1751         ldlm_resource_putref(res);
1752         RETURN(0);
1753 }
1754
1755 static inline int have_no_nsresource(struct ldlm_namespace *ns)
1756 {
1757         int no_resource = 0;
1758
1759         spin_lock(&ns->ns_hash_lock);
1760         if (ns->ns_resources == 0)
1761                 no_resource = 1;
1762         spin_unlock(&ns->ns_hash_lock);
1763
1764         RETURN(no_resource);
1765 }
1766
1767 /* Cancel all locks on a namespace (or a specific resource, if given)
1768  * that have 0 readers/writers.
1769  *
1770  * If flags & LDLM_FL_LOCAL_ONLY, throw the locks away without trying
1771  * to notify the server. */
1772 int ldlm_cli_cancel_unused(struct ldlm_namespace *ns,
1773                            const struct ldlm_res_id *res_id,
1774                            int flags, void *opaque)
1775 {
1776         int i;
1777         ENTRY;
1778
1779         if (ns == NULL)
1780                 RETURN(ELDLM_OK);
1781
1782         if (res_id)
1783                 RETURN(ldlm_cli_cancel_unused_resource(ns, res_id, NULL,
1784                                                        LCK_MINMODE, flags,
1785                                                        opaque));
1786
1787         spin_lock(&ns->ns_hash_lock);
1788         for (i = 0; i < RES_HASH_SIZE; i++) {
1789                 struct list_head *tmp;
1790                 tmp = ns->ns_hash[i].next;
1791                 while (tmp != &(ns->ns_hash[i])) {
1792                         struct ldlm_resource *res;
1793                         int rc;
1794
1795                         res = list_entry(tmp, struct ldlm_resource, lr_hash);
1796                         ldlm_resource_getref(res);
1797                         spin_unlock(&ns->ns_hash_lock);
1798
1799                         LDLM_RESOURCE_ADDREF(res);
1800                         rc = ldlm_cli_cancel_unused_resource(ns, &res->lr_name,
1801                                                              NULL, LCK_MINMODE,
1802                                                              flags, opaque);
1803
1804                         if (rc)
1805                                 CERROR("ldlm_cli_cancel_unused ("LPU64"): %d\n",
1806                                        res->lr_name.name[0], rc);
1807
1808                         LDLM_RESOURCE_DELREF(res);
1809                         spin_lock(&ns->ns_hash_lock);
1810                         tmp = tmp->next;
1811                         ldlm_resource_putref_locked(res);
1812                 }
1813         }
1814         spin_unlock(&ns->ns_hash_lock);
1815
1816         RETURN(ELDLM_OK);
1817 }
1818
1819 /* Lock iterators. */
1820
1821 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
1822                           void *closure)
1823 {
1824         struct list_head *tmp, *next;
1825         struct ldlm_lock *lock;
1826         int rc = LDLM_ITER_CONTINUE;
1827
1828         ENTRY;
1829
1830         if (!res)
1831                 RETURN(LDLM_ITER_CONTINUE);
1832
1833         lock_res(res);
1834         list_for_each_safe(tmp, next, &res->lr_granted) {
1835                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
1836
1837                 if (iter(lock, closure) == LDLM_ITER_STOP)
1838                         GOTO(out, rc = LDLM_ITER_STOP);
1839         }
1840
1841         list_for_each_safe(tmp, next, &res->lr_converting) {
1842                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
1843
1844                 if (iter(lock, closure) == LDLM_ITER_STOP)
1845                         GOTO(out, rc = LDLM_ITER_STOP);
1846         }
1847
1848         list_for_each_safe(tmp, next, &res->lr_waiting) {
1849                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
1850
1851                 if (iter(lock, closure) == LDLM_ITER_STOP)
1852                         GOTO(out, rc = LDLM_ITER_STOP);
1853         }
1854  out:
1855         unlock_res(res);
1856         RETURN(rc);
1857 }
1858
1859 struct iter_helper_data {
1860         ldlm_iterator_t iter;
1861         void *closure;
1862 };
1863
1864 static int ldlm_iter_helper(struct ldlm_lock *lock, void *closure)
1865 {
1866         struct iter_helper_data *helper = closure;
1867         return helper->iter(lock, helper->closure);
1868 }
1869
1870 static int ldlm_res_iter_helper(struct ldlm_resource *res, void *closure)
1871 {
1872         return ldlm_resource_foreach(res, ldlm_iter_helper, closure);
1873 }
1874
1875 int ldlm_namespace_foreach(struct ldlm_namespace *ns, ldlm_iterator_t iter,
1876                            void *closure)
1877 {
1878         struct iter_helper_data helper = { iter: iter, closure: closure };
1879         return ldlm_namespace_foreach_res(ns, ldlm_res_iter_helper, &helper);
1880 }
1881
1882 int ldlm_namespace_foreach_res(struct ldlm_namespace *ns,
1883                                ldlm_res_iterator_t iter, void *closure)
1884 {
1885         int i, rc = LDLM_ITER_CONTINUE;
1886         struct ldlm_resource *res;
1887         struct list_head *tmp;
1888
1889         ENTRY;
1890         spin_lock(&ns->ns_hash_lock);
1891         for (i = 0; i < RES_HASH_SIZE; i++) {
1892                 tmp = ns->ns_hash[i].next;
1893                 while (tmp != &(ns->ns_hash[i])) {
1894                         res = list_entry(tmp, struct ldlm_resource, lr_hash);
1895                         ldlm_resource_getref(res);
1896                         spin_unlock(&ns->ns_hash_lock);
1897                         LDLM_RESOURCE_ADDREF(res);
1898
1899                         rc = iter(res, closure);
1900
1901                         LDLM_RESOURCE_DELREF(res);
1902                         spin_lock(&ns->ns_hash_lock);
1903                         tmp = tmp->next;
1904                         ldlm_resource_putref_locked(res);
1905                         if (rc == LDLM_ITER_STOP)
1906                                 GOTO(out, rc);
1907                 }
1908         }
1909  out:
1910         spin_unlock(&ns->ns_hash_lock);
1911         RETURN(rc);
1912 }
1913
1914 /* non-blocking function to manipulate a lock whose cb_data is being put away.*/
1915 void ldlm_resource_iterate(struct ldlm_namespace *ns,
1916                            const struct ldlm_res_id *res_id,
1917                            ldlm_iterator_t iter, void *data)
1918 {
1919         struct ldlm_resource *res;
1920         ENTRY;
1921
1922         if (ns == NULL) {
1923                 CERROR("must pass in namespace\n");
1924                 LBUG();
1925         }
1926
1927         res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
1928         if (res == NULL) {
1929                 EXIT;
1930                 return;
1931         }
1932
1933         LDLM_RESOURCE_ADDREF(res);
1934         ldlm_resource_foreach(res, iter, data);
1935         LDLM_RESOURCE_DELREF(res);
1936         ldlm_resource_putref(res);
1937         EXIT;
1938 }
1939
1940 /* Lock replay */
1941
1942 static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
1943 {
1944         struct list_head *list = closure;
1945
1946         /* we use l_pending_chain here, because it's unused on clients. */
1947         LASSERTF(list_empty(&lock->l_pending_chain),"lock %p next %p prev %p\n",
1948                  lock, &lock->l_pending_chain.next,&lock->l_pending_chain.prev);
1949         /* bug 9573: don't replay locks left after eviction, or
1950          * bug 17614: locks being actively cancelled. Get a reference
1951          * on a lock so that it does not disapear under us (e.g. due to cancel)
1952          */
1953         if (!(lock->l_flags & (LDLM_FL_FAILED|LDLM_FL_CANCELING))) {
1954                 list_add(&lock->l_pending_chain, list);
1955                 LDLM_LOCK_GET(lock);
1956         }
1957
1958         return LDLM_ITER_CONTINUE;
1959 }
1960
1961 static int replay_lock_interpret(const struct lu_env *env,
1962                                  struct ptlrpc_request *req,
1963                                  struct ldlm_async_args *aa, int rc)
1964 {
1965         struct lustre_handle  old_hash_key;
1966         struct ldlm_lock     *lock;
1967         struct ldlm_reply    *reply;
1968         struct obd_export    *exp;
1969
1970         ENTRY;
1971         atomic_dec(&req->rq_import->imp_replay_inflight);
1972         if (rc != ELDLM_OK)
1973                 GOTO(out, rc);
1974
1975
1976         reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1977         if (reply == NULL)
1978                 GOTO(out, rc = -EPROTO);
1979
1980         lock = ldlm_handle2lock(&aa->lock_handle);
1981         if (!lock) {
1982                 CERROR("received replay ack for unknown local cookie "LPX64
1983                        " remote cookie "LPX64 " from server %s id %s\n",
1984                        aa->lock_handle.cookie, reply->lock_handle.cookie,
1985                        req->rq_export->exp_client_uuid.uuid,
1986                        libcfs_id2str(req->rq_peer));
1987                 GOTO(out, rc = -ESTALE);
1988         }
1989
1990         old_hash_key = lock->l_remote_handle;
1991         lock->l_remote_handle = reply->lock_handle;
1992
1993         /* Key change rehash lock in per-export hash with new key */
1994         exp = req->rq_export;
1995         if (exp && exp->exp_lock_hash)
1996                 cfs_hash_rehash_key(exp->exp_lock_hash, &old_hash_key,
1997                                     &lock->l_remote_handle,
1998                                     &lock->l_exp_hash);
1999
2000         LDLM_DEBUG(lock, "replayed lock:");
2001         ptlrpc_import_recovery_state_machine(req->rq_import);
2002         LDLM_LOCK_PUT(lock);
2003 out:
2004         if (rc != ELDLM_OK)
2005                 ptlrpc_connect_import(req->rq_import, NULL);
2006
2007         RETURN(rc);
2008 }
2009
2010 static int replay_one_lock(struct obd_import *imp, struct ldlm_lock *lock)
2011 {
2012         struct ptlrpc_request *req;
2013         struct ldlm_async_args *aa;
2014         struct ldlm_request   *body;
2015         int flags;
2016         ENTRY;
2017
2018
2019         /* Bug 11974: Do not replay a lock which is actively being canceled */
2020         if (lock->l_flags & LDLM_FL_CANCELING) {
2021                 LDLM_DEBUG(lock, "Not replaying canceled lock:");
2022                 RETURN(0);
2023         }
2024
2025         /* If this is reply-less callback lock, we cannot replay it, since
2026          * server might have long dropped it, but notification of that event was
2027          * lost by network. (and server granted conflicting lock already) */
2028         if (lock->l_flags & LDLM_FL_CANCEL_ON_BLOCK) {
2029                 LDLM_DEBUG(lock, "Not replaying reply-less lock:");
2030                 ldlm_lock_cancel(lock);
2031                 RETURN(0);
2032         }
2033         /*
2034          * If granted mode matches the requested mode, this lock is granted.
2035          *
2036          * If they differ, but we have a granted mode, then we were granted
2037          * one mode and now want another: ergo, converting.
2038          *
2039          * If we haven't been granted anything and are on a resource list,
2040          * then we're blocked/waiting.
2041          *
2042          * If we haven't been granted anything and we're NOT on a resource list,
2043          * then we haven't got a reply yet and don't have a known disposition.
2044          * This happens whenever a lock enqueue is the request that triggers
2045          * recovery.
2046          */
2047         if (lock->l_granted_mode == lock->l_req_mode)
2048                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_GRANTED;
2049         else if (lock->l_granted_mode)
2050                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_CONV;
2051         else if (!list_empty(&lock->l_res_link))
2052                 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_WAIT;
2053         else
2054                 flags = LDLM_FL_REPLAY;
2055
2056         req = ptlrpc_request_alloc_pack(imp, &RQF_LDLM_ENQUEUE,
2057                                         LUSTRE_DLM_VERSION, LDLM_ENQUEUE);
2058         if (req == NULL)
2059                 RETURN(-ENOMEM);
2060
2061         /* We're part of recovery, so don't wait for it. */
2062         req->rq_send_state = LUSTRE_IMP_REPLAY_LOCKS;
2063
2064         body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2065         ldlm_lock2desc(lock, &body->lock_desc);
2066         body->lock_flags = flags;
2067
2068         ldlm_lock2handle(lock, &body->lock_handle[0]);
2069         if (lock->l_lvb_len != 0) {
2070                 req_capsule_extend(&req->rq_pill, &RQF_LDLM_ENQUEUE_LVB);
2071                 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
2072                                      lock->l_lvb_len);
2073         }
2074         ptlrpc_request_set_replen(req);
2075         /* notify the server we've replayed all requests.
2076          * also, we mark the request to be put on a dedicated
2077          * queue to be processed after all request replayes.
2078          * bug 6063 */
2079         lustre_msg_set_flags(req->rq_reqmsg, MSG_REQ_REPLAY_DONE);
2080
2081         LDLM_DEBUG(lock, "replaying lock:");
2082
2083         atomic_inc(&req->rq_import->imp_replay_inflight);
2084         CLASSERT(sizeof(*aa) <= sizeof(req->rq_async_args));
2085         aa = ptlrpc_req_async_args(req);
2086         aa->lock_handle = body->lock_handle[0];
2087         req->rq_interpret_reply = (ptlrpc_interpterer_t)replay_lock_interpret;
2088         ptlrpcd_add_req(req, PSCOPE_OTHER);
2089
2090         RETURN(0);
2091 }
2092
2093 int ldlm_replay_locks(struct obd_import *imp)
2094 {
2095         struct ldlm_namespace *ns = imp->imp_obd->obd_namespace;
2096         CFS_LIST_HEAD(list);
2097         struct ldlm_lock *lock, *next;
2098         int rc = 0;
2099
2100         ENTRY;
2101
2102         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
2103
2104         /* ensure this doesn't fall to 0 before all have been queued */
2105         atomic_inc(&imp->imp_replay_inflight);
2106
2107         (void)ldlm_namespace_foreach(ns, ldlm_chain_lock_for_replay, &list);
2108
2109         list_for_each_entry_safe(lock, next, &list, l_pending_chain) {
2110                 list_del_init(&lock->l_pending_chain);
2111                 if (rc) {
2112                         LDLM_LOCK_PUT(lock);
2113                         continue; /* or try to do the rest? */
2114                 }
2115                 rc = replay_one_lock(imp, lock);
2116                 LDLM_LOCK_PUT(lock);
2117         }
2118
2119         atomic_dec(&imp->imp_replay_inflight);
2120
2121         RETURN(rc);
2122 }