4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2010, 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 * This file contains Asynchronous System Trap (AST) handlers and related
38 * LDLM request-processing routines.
40 * An AST is a callback issued on a lock when its state is changed. There are
41 * several different types of ASTs (callbacks) registered for each lock:
43 * - completion AST: when a lock is enqueued by some process, but cannot be
44 * granted immediately due to other conflicting locks on the same resource,
45 * the completion AST is sent to notify the caller when the lock is
48 * - blocking AST: when a lock is granted to some process, if another process
49 * enqueues a conflicting (blocking) lock on a resource, a blocking AST is
50 * sent to notify the holder(s) of the lock(s) of the conflicting lock
51 * request. The lock holder(s) must release their lock(s) on that resource in
52 * a timely manner or be evicted by the server.
54 * - glimpse AST: this is used when a process wants information about a lock
55 * (i.e. the lock value block (LVB)) but does not necessarily require holding
56 * the lock. If the resource is locked, the lock holder(s) are sent glimpse
57 * ASTs and the LVB is returned to the caller, and lock holder(s) may CANCEL
58 * their lock(s) if they are idle. If the resource is not locked, the server
62 #define DEBUG_SUBSYSTEM S_LDLM
65 #include <liblustre.h>
68 #include <lustre_dlm.h>
69 #include <obd_class.h>
72 #include "ldlm_internal.h"
74 int ldlm_enqueue_min = OBD_TIMEOUT_DEFAULT;
75 CFS_MODULE_PARM(ldlm_enqueue_min, "i", int, 0644,
76 "lock enqueue timeout minimum");
78 /* in client side, whether the cached locks will be canceled before replay */
79 unsigned int ldlm_cancel_unused_locks_before_replay = 1;
81 static void interrupted_completion_wait(void *data)
85 struct lock_wait_data {
86 struct ldlm_lock *lwd_lock;
90 struct ldlm_async_args {
91 struct lustre_handle lock_handle;
94 int ldlm_expired_completion_wait(void *data)
96 struct lock_wait_data *lwd = data;
97 struct ldlm_lock *lock = lwd->lwd_lock;
98 struct obd_import *imp;
99 struct obd_device *obd;
102 if (lock->l_conn_export == NULL) {
103 static cfs_time_t next_dump = 0, last_dump = 0;
105 LCONSOLE_WARN("lock timed out (enqueued at "CFS_TIME_T", "
106 CFS_DURATION_T"s ago)\n",
107 lock->l_last_activity,
108 cfs_time_sub(cfs_time_current_sec(),
109 lock->l_last_activity));
110 LDLM_DEBUG(lock, "lock timed out (enqueued at "CFS_TIME_T", "
111 CFS_DURATION_T"s ago); not entering recovery in "
112 "server code, just going back to sleep",
113 lock->l_last_activity,
114 cfs_time_sub(cfs_time_current_sec(),
115 lock->l_last_activity));
116 if (cfs_time_after(cfs_time_current(), next_dump)) {
117 last_dump = next_dump;
118 next_dump = cfs_time_shift(300);
119 ldlm_namespace_dump(D_DLMTRACE,
120 ldlm_lock_to_ns(lock));
122 libcfs_debug_dumplog();
127 obd = lock->l_conn_export->exp_obd;
128 imp = obd->u.cli.cl_import;
129 ptlrpc_fail_import(imp, lwd->lwd_conn_cnt);
130 LDLM_ERROR(lock, "lock timed out (enqueued at "CFS_TIME_T", "
131 CFS_DURATION_T"s ago), entering recovery for %s@%s",
132 lock->l_last_activity,
133 cfs_time_sub(cfs_time_current_sec(), lock->l_last_activity),
134 obd2cli_tgt(obd), imp->imp_connection->c_remote_uuid.uuid);
138 EXPORT_SYMBOL(ldlm_expired_completion_wait);
140 /* We use the same basis for both server side and client side functions
141 from a single node. */
142 int ldlm_get_enq_timeout(struct ldlm_lock *lock)
144 int timeout = at_get(ldlm_lock_to_ns_at(lock));
146 return obd_timeout / 2;
147 /* Since these are non-updating timeouts, we should be conservative.
148 It would be nice to have some kind of "early reply" mechanism for
149 lock callbacks too... */
150 timeout = min_t(int, at_max, timeout + (timeout >> 1)); /* 150% */
151 return max(timeout, ldlm_enqueue_min);
153 EXPORT_SYMBOL(ldlm_get_enq_timeout);
156 * Helper function for ldlm_completion_ast(), updating timings when lock is
159 static int ldlm_completion_tail(struct ldlm_lock *lock)
164 if (ldlm_is_destroyed(lock) || ldlm_is_failed(lock)) {
165 LDLM_DEBUG(lock, "client-side enqueue: destroyed");
168 delay = cfs_time_sub(cfs_time_current_sec(),
169 lock->l_last_activity);
170 LDLM_DEBUG(lock, "client-side enqueue: granted after "
171 CFS_DURATION_T"s", delay);
173 /* Update our time estimate */
174 at_measured(ldlm_lock_to_ns_at(lock),
182 * Implementation of ->l_completion_ast() for a client, that doesn't wait
183 * until lock is granted. Suitable for locks enqueued through ptlrpcd, of
184 * other threads that cannot block for long.
186 int ldlm_completion_ast_async(struct ldlm_lock *lock, __u64 flags, void *data)
190 if (flags == LDLM_FL_WAIT_NOREPROC) {
191 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
195 if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
196 LDLM_FL_BLOCK_CONV))) {
197 wake_up(&lock->l_waitq);
198 RETURN(ldlm_completion_tail(lock));
201 LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
203 ldlm_reprocess_all(lock->l_resource);
206 EXPORT_SYMBOL(ldlm_completion_ast_async);
209 * Generic LDLM "completion" AST. This is called in several cases:
211 * - when a reply to an ENQUEUE RPC is received from the server
212 * (ldlm_cli_enqueue_fini()). Lock might be granted or not granted at
213 * this point (determined by flags);
215 * - when LDLM_CP_CALLBACK RPC comes to client to notify it that lock has
218 * - when ldlm_lock_match(LDLM_FL_LVB_READY) is about to wait until lock
221 * - to force all locks when resource is destroyed (cleanup_resource());
223 * - during lock conversion (not used currently).
225 * If lock is not granted in the first case, this function waits until second
226 * or penultimate cases happen in some other thread.
229 int ldlm_completion_ast(struct ldlm_lock *lock, __u64 flags, void *data)
231 /* XXX ALLOCATE - 160 bytes */
232 struct lock_wait_data lwd;
233 struct obd_device *obd;
234 struct obd_import *imp = NULL;
235 struct l_wait_info lwi;
240 if (flags == LDLM_FL_WAIT_NOREPROC) {
241 LDLM_DEBUG(lock, "client-side enqueue waiting on pending lock");
245 if (!(flags & (LDLM_FL_BLOCK_WAIT | LDLM_FL_BLOCK_GRANTED |
246 LDLM_FL_BLOCK_CONV))) {
247 wake_up(&lock->l_waitq);
251 LDLM_DEBUG(lock, "client-side enqueue returned a blocked lock, "
256 obd = class_exp2obd(lock->l_conn_export);
258 /* if this is a local lock, then there is no import */
260 imp = obd->u.cli.cl_import;
263 /* Wait a long time for enqueue - server may have to callback a
264 lock from another client. Server will evict the other client if it
265 doesn't respond reasonably, and then give us the lock. */
266 timeout = ldlm_get_enq_timeout(lock) * 2;
270 if (ldlm_is_no_timeout(lock)) {
271 LDLM_DEBUG(lock, "waiting indefinitely because of NO_TIMEOUT");
272 lwi = LWI_INTR(interrupted_completion_wait, &lwd);
274 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout),
275 ldlm_expired_completion_wait,
276 interrupted_completion_wait, &lwd);
280 spin_lock(&imp->imp_lock);
281 lwd.lwd_conn_cnt = imp->imp_conn_cnt;
282 spin_unlock(&imp->imp_lock);
285 if (ns_is_client(ldlm_lock_to_ns(lock)) &&
286 OBD_FAIL_CHECK_RESET(OBD_FAIL_LDLM_INTR_CP_AST,
287 OBD_FAIL_LDLM_CP_BL_RACE | OBD_FAIL_ONCE)) {
288 ldlm_set_fail_loc(lock);
291 /* Go to sleep until the lock is granted or cancelled. */
292 rc = l_wait_event(lock->l_waitq,
293 is_granted_or_cancelled(lock), &lwi);
297 LDLM_DEBUG(lock, "client-side enqueue waking up: failed (%d)",
302 RETURN(ldlm_completion_tail(lock));
304 EXPORT_SYMBOL(ldlm_completion_ast);
307 * A helper to build a blocking AST function
309 * Perform a common operation for blocking ASTs:
310 * defferred lock cancellation.
312 * \param lock the lock blocking or canceling AST was called on
314 * \see mdt_blocking_ast
315 * \see ldlm_blocking_ast
317 int ldlm_blocking_ast_nocheck(struct ldlm_lock *lock)
322 ldlm_set_cbpending(lock);
323 do_ast = (!lock->l_readers && !lock->l_writers);
324 unlock_res_and_lock(lock);
327 struct lustre_handle lockh;
330 LDLM_DEBUG(lock, "already unused, calling ldlm_cli_cancel");
331 ldlm_lock2handle(lock, &lockh);
332 rc = ldlm_cli_cancel(&lockh, LCF_ASYNC);
334 CERROR("ldlm_cli_cancel: %d\n", rc);
336 LDLM_DEBUG(lock, "Lock still has references, will be "
341 EXPORT_SYMBOL(ldlm_blocking_ast_nocheck);
344 * Server blocking AST
346 * ->l_blocking_ast() callback for LDLM locks acquired by server-side
349 * \param lock the lock which blocks a request or cancelling lock
352 * \param flag indicates whether this cancelling or blocking callback
354 * \see ldlm_blocking_ast_nocheck
356 int ldlm_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
357 void *data, int flag)
361 if (flag == LDLM_CB_CANCELING) {
362 /* Don't need to do anything here. */
366 lock_res_and_lock(lock);
367 /* Get this: if ldlm_blocking_ast is racing with intent_policy, such
368 * that ldlm_blocking_ast is called just before intent_policy method
369 * takes the lr_lock, then by the time we get the lock, we might not
370 * be the correct blocking function anymore. So check, and return
372 if (lock->l_blocking_ast != ldlm_blocking_ast) {
373 unlock_res_and_lock(lock);
376 RETURN(ldlm_blocking_ast_nocheck(lock));
378 EXPORT_SYMBOL(ldlm_blocking_ast);
381 * ->l_glimpse_ast() for DLM extent locks acquired on the server-side. See
382 * comment in filter_intent_policy() on why you may need this.
384 int ldlm_glimpse_ast(struct ldlm_lock *lock, void *reqp)
387 * Returning -ELDLM_NO_LOCK_DATA actually works, but the reason for
388 * that is rather subtle: with OST-side locking, it may so happen that
389 * _all_ extent locks are held by the OST. If client wants to obtain
390 * current file size it calls ll{,u}_glimpse_size(), and (as locks are
391 * on the server), dummy glimpse callback fires and does
392 * nothing. Client still receives correct file size due to the
393 * following fragment in filter_intent_policy():
395 * rc = l->l_glimpse_ast(l, NULL); // this will update the LVB
396 * if (rc != 0 && res->lr_namespace->ns_lvbo &&
397 * res->lr_namespace->ns_lvbo->lvbo_update) {
398 * res->lr_namespace->ns_lvbo->lvbo_update(res, NULL, 0, 1);
401 * that is, after glimpse_ast() fails, filter_lvbo_update() runs, and
402 * returns correct file size to the client.
404 return -ELDLM_NO_LOCK_DATA;
406 EXPORT_SYMBOL(ldlm_glimpse_ast);
409 * Enqueue a local lock (typically on a server).
411 int ldlm_cli_enqueue_local(struct ldlm_namespace *ns,
412 const struct ldlm_res_id *res_id,
413 ldlm_type_t type, ldlm_policy_data_t *policy,
414 ldlm_mode_t mode, __u64 *flags,
415 ldlm_blocking_callback blocking,
416 ldlm_completion_callback completion,
417 ldlm_glimpse_callback glimpse,
418 void *data, __u32 lvb_len, enum lvb_type lvb_type,
419 const __u64 *client_cookie,
420 struct lustre_handle *lockh)
422 struct ldlm_lock *lock;
424 const struct ldlm_callback_suite cbs = { .lcs_completion = completion,
425 .lcs_blocking = blocking,
426 .lcs_glimpse = glimpse,
430 LASSERT(!(*flags & LDLM_FL_REPLAY));
431 if (unlikely(ns_is_client(ns))) {
432 CERROR("Trying to enqueue local lock in a shadow namespace\n");
436 lock = ldlm_lock_create(ns, res_id, type, mode, &cbs, data, lvb_len,
439 GOTO(out_nolock, err = -ENOMEM);
441 ldlm_lock2handle(lock, lockh);
443 /* NB: we don't have any lock now (lock_res_and_lock)
444 * because it's a new lock */
445 ldlm_lock_addref_internal_nolock(lock, mode);
446 ldlm_set_local(lock);
447 if (*flags & LDLM_FL_ATOMIC_CB)
448 ldlm_set_atomic_cb(lock);
451 lock->l_policy_data = *policy;
452 if (client_cookie != NULL)
453 lock->l_client_cookie = *client_cookie;
454 if (type == LDLM_EXTENT) {
455 /* extent lock without policy is a bug */
459 lock->l_req_extent = policy->l_extent;
462 err = ldlm_lock_enqueue(ns, &lock, policy, flags);
463 if (unlikely(err != ELDLM_OK))
467 *policy = lock->l_policy_data;
469 if (lock->l_completion_ast)
470 lock->l_completion_ast(lock, *flags, NULL);
472 LDLM_DEBUG(lock, "client-side local enqueue handler, new lock created");
475 LDLM_LOCK_RELEASE(lock);
479 EXPORT_SYMBOL(ldlm_cli_enqueue_local);
481 static void failed_lock_cleanup(struct ldlm_namespace *ns,
482 struct ldlm_lock *lock, int mode)
486 /* Set a flag to prevent us from sending a CANCEL (bug 407) */
487 lock_res_and_lock(lock);
488 /* Check that lock is not granted or failed, we might race. */
489 if ((lock->l_req_mode != lock->l_granted_mode) &&
490 !ldlm_is_failed(lock)) {
491 /* Make sure that this lock will not be found by raced
492 * bl_ast and -EINVAL reply is sent to server anyways.
494 lock->l_flags |= LDLM_FL_LOCAL_ONLY | LDLM_FL_FAILED |
495 LDLM_FL_ATOMIC_CB | LDLM_FL_CBPENDING;
498 unlock_res_and_lock(lock);
502 "setting FL_LOCAL_ONLY | LDLM_FL_FAILED | "
503 "LDLM_FL_ATOMIC_CB | LDLM_FL_CBPENDING");
505 LDLM_DEBUG(lock, "lock was granted or failed in race");
507 ldlm_lock_decref_internal(lock, mode);
509 /* XXX - HACK because we shouldn't call ldlm_lock_destroy()
510 * from llite/file.c/ll_file_flock(). */
511 /* This code makes for the fact that we do not have blocking handler on
512 * a client for flock locks. As such this is the place where we must
513 * completely kill failed locks. (interrupted and those that
514 * were waiting to be granted when server evicted us. */
515 if (lock->l_resource->lr_type == LDLM_FLOCK) {
516 lock_res_and_lock(lock);
517 ldlm_resource_unlink_lock(lock);
518 ldlm_lock_destroy_nolock(lock);
519 unlock_res_and_lock(lock);
524 * Finishing portion of client lock enqueue code.
526 * Called after receiving reply from server.
528 int ldlm_cli_enqueue_fini(struct obd_export *exp, struct ptlrpc_request *req,
529 ldlm_type_t type, __u8 with_policy, ldlm_mode_t mode,
530 __u64 *flags, void *lvb, __u32 lvb_len,
531 struct lustre_handle *lockh,int rc)
533 struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
534 int is_replay = *flags & LDLM_FL_REPLAY;
535 struct ldlm_lock *lock;
536 struct ldlm_reply *reply;
537 int cleanup_phase = 1;
541 lock = ldlm_handle2lock(lockh);
542 /* ldlm_cli_enqueue is holding a reference on this lock. */
544 LASSERT(type == LDLM_FLOCK);
548 LASSERTF(ergo(lvb_len != 0, lvb_len == lock->l_lvb_len),
549 "lvb_len = %d, l_lvb_len = %d\n", lvb_len, lock->l_lvb_len);
551 if (rc != ELDLM_OK) {
553 LDLM_DEBUG(lock, "client-side enqueue END (%s)",
554 rc == ELDLM_LOCK_ABORTED ? "ABORTED" : "FAILED");
556 if (rc != ELDLM_LOCK_ABORTED)
560 /* Before we return, swab the reply */
561 reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
563 GOTO(cleanup, rc = -EPROTO);
566 LASSERT(lvb != NULL);
568 size = req_capsule_get_size(&req->rq_pill, &RMF_DLM_LVB,
571 LDLM_ERROR(lock, "Fail to get lvb_len, rc = %d", size);
572 GOTO(cleanup, rc = size);
573 } else if (unlikely(size > lvb_len)) {
574 LDLM_ERROR(lock, "Replied LVB is larger than "
575 "expectation, expected = %d, replied = %d",
577 GOTO(cleanup, rc = -EINVAL);
581 if (rc == ELDLM_LOCK_ABORTED) {
583 rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
585 GOTO(cleanup, rc = (rc != 0 ? rc : ELDLM_LOCK_ABORTED));
588 /* lock enqueued on the server */
591 lock_res_and_lock(lock);
592 /* Key change rehash lock in per-export hash with new key */
593 if (exp->exp_lock_hash) {
594 /* In the function below, .hs_keycmp resolves to
595 * ldlm_export_lock_keycmp() */
596 /* coverity[overrun-buffer-val] */
597 cfs_hash_rehash_key(exp->exp_lock_hash,
598 &lock->l_remote_handle,
602 lock->l_remote_handle = reply->lock_handle;
605 *flags = ldlm_flags_from_wire(reply->lock_flags);
606 lock->l_flags |= ldlm_flags_from_wire(reply->lock_flags &
607 LDLM_FL_INHERIT_MASK);
608 /* move NO_TIMEOUT flag to the lock to force ldlm_lock_match()
609 * to wait with no timeout as well */
610 lock->l_flags |= ldlm_flags_from_wire(reply->lock_flags &
612 unlock_res_and_lock(lock);
614 CDEBUG(D_INFO, "local: %p, remote cookie: "LPX64", flags: 0x%llx\n",
615 lock, reply->lock_handle.cookie, *flags);
617 /* If enqueue returned a blocked lock but the completion handler has
618 * already run, then it fixed up the resource and we don't need to do it
620 if ((*flags) & LDLM_FL_LOCK_CHANGED) {
621 int newmode = reply->lock_desc.l_req_mode;
623 if (newmode && newmode != lock->l_req_mode) {
624 LDLM_DEBUG(lock, "server returned different mode %s",
625 ldlm_lockname[newmode]);
626 lock->l_req_mode = newmode;
629 if (!ldlm_res_eq(&reply->lock_desc.l_resource.lr_name,
630 &lock->l_resource->lr_name)) {
631 CDEBUG(D_INFO, "remote intent success, locking "DLDLMRES
632 " instead of "DLDLMRES"\n",
633 PLDLMRES(&reply->lock_desc.l_resource),
634 PLDLMRES(lock->l_resource));
636 rc = ldlm_lock_change_resource(ns, lock,
637 &reply->lock_desc.l_resource.lr_name);
638 if (rc || lock->l_resource == NULL)
639 GOTO(cleanup, rc = -ENOMEM);
640 LDLM_DEBUG(lock, "client-side enqueue, new resource");
643 if (!(type == LDLM_IBITS &&
644 !(exp_connect_flags(exp) & OBD_CONNECT_IBITS)))
645 /* We assume lock type cannot change on server*/
646 ldlm_convert_policy_to_local(exp,
647 lock->l_resource->lr_type,
648 &reply->lock_desc.l_policy_data,
649 &lock->l_policy_data);
650 if (type != LDLM_PLAIN)
651 LDLM_DEBUG(lock,"client-side enqueue, new policy data");
654 if ((*flags) & LDLM_FL_AST_SENT ||
655 /* Cancel extent locks as soon as possible on a liblustre client,
656 * because it cannot handle asynchronous ASTs robustly (see
658 (LIBLUSTRE_CLIENT && type == LDLM_EXTENT)) {
659 lock_res_and_lock(lock);
660 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_BL_AST;
661 unlock_res_and_lock(lock);
662 LDLM_DEBUG(lock, "enqueue reply includes blocking AST");
665 /* If the lock has already been granted by a completion AST, don't
666 * clobber the LVB with an older one. */
668 /* We must lock or a racing completion might update lvb without
669 * letting us know and we'll clobber the correct value.
670 * Cannot unlock after the check either, a that still leaves
671 * a tiny window for completion to get in */
672 lock_res_and_lock(lock);
673 if (lock->l_req_mode != lock->l_granted_mode)
674 rc = ldlm_fill_lvb(lock, &req->rq_pill, RCL_SERVER,
675 lock->l_lvb_data, size);
676 unlock_res_and_lock(lock);
684 rc = ldlm_lock_enqueue(ns, &lock, NULL, flags);
685 if (lock->l_completion_ast != NULL) {
686 int err = lock->l_completion_ast(lock, *flags, NULL);
694 if (lvb_len && lvb != NULL) {
695 /* Copy the LVB here, and not earlier, because the completion
696 * AST (if any) can override what we got in the reply */
697 memcpy(lvb, lock->l_lvb_data, lvb_len);
700 LDLM_DEBUG(lock, "client-side enqueue END");
703 if (cleanup_phase == 1 && rc)
704 failed_lock_cleanup(ns, lock, mode);
705 /* Put lock 2 times, the second reference is held by ldlm_cli_enqueue */
707 LDLM_LOCK_RELEASE(lock);
710 EXPORT_SYMBOL(ldlm_cli_enqueue_fini);
713 * Estimate number of lock handles that would fit into request of given
714 * size. PAGE_SIZE-512 is to allow TCP/IP and LNET headers to fit into
715 * a single page on the send/receive side. XXX: 512 should be changed to
716 * more adequate value.
718 static inline int ldlm_req_handles_avail(int req_size, int off)
722 avail = min_t(int, LDLM_MAXREQSIZE, PAGE_CACHE_SIZE - 512) - req_size;
723 if (likely(avail >= 0))
724 avail /= (int)sizeof(struct lustre_handle);
727 avail += LDLM_LOCKREQ_HANDLES - off;
732 static inline int ldlm_capsule_handles_avail(struct req_capsule *pill,
733 enum req_location loc,
736 int size = req_capsule_msg_size(pill, loc);
737 return ldlm_req_handles_avail(size, off);
740 static inline int ldlm_format_handles_avail(struct obd_import *imp,
741 const struct req_format *fmt,
742 enum req_location loc, int off)
744 int size = req_capsule_fmt_size(imp->imp_msg_magic, fmt, loc);
745 return ldlm_req_handles_avail(size, off);
749 * Cancel LRU locks and pack them into the enqueue request. Pack there the given
750 * \a count locks in \a cancels.
752 * This is to be called by functions preparing their own requests that
753 * might contain lists of locks to cancel in addition to actual operation
754 * that needs to be performed.
756 int ldlm_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
757 int version, int opc, int canceloff,
758 cfs_list_t *cancels, int count)
760 struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
761 struct req_capsule *pill = &req->rq_pill;
762 struct ldlm_request *dlm = NULL;
763 int flags, avail, to_free, pack = 0;
770 if (ns_connect_cancelset(ns)) {
771 /* Estimate the amount of available space in the request. */
772 req_capsule_filled_sizes(pill, RCL_CLIENT);
773 avail = ldlm_capsule_handles_avail(pill, RCL_CLIENT, canceloff);
775 flags = ns_connect_lru_resize(ns) ?
776 LDLM_CANCEL_LRUR : LDLM_CANCEL_AGED;
777 to_free = !ns_connect_lru_resize(ns) &&
778 opc == LDLM_ENQUEUE ? 1 : 0;
780 /* Cancel LRU locks here _only_ if the server supports
781 * EARLY_CANCEL. Otherwise we have to send extra CANCEL
782 * RPC, which will make us slower. */
784 count += ldlm_cancel_lru_local(ns, cancels, to_free,
785 avail - count, 0, flags);
790 req_capsule_set_size(pill, &RMF_DLM_REQ, RCL_CLIENT,
791 ldlm_request_bufsize(pack, opc));
794 rc = ptlrpc_request_pack(req, version, opc);
796 ldlm_lock_list_put(cancels, l_bl_ast, count);
800 if (ns_connect_cancelset(ns)) {
802 dlm = req_capsule_client_get(pill, &RMF_DLM_REQ);
804 /* Skip first lock handler in ldlm_request_pack(),
805 * this method will incrment @lock_count according
806 * to the lock handle amount actually written to
808 dlm->lock_count = canceloff;
810 /* Pack into the request @pack lock handles. */
811 ldlm_cli_cancel_list(cancels, pack, req, 0);
812 /* Prepare and send separate cancel RPC for others. */
813 ldlm_cli_cancel_list(cancels, count - pack, NULL, 0);
815 ldlm_lock_list_put(cancels, l_bl_ast, count);
819 EXPORT_SYMBOL(ldlm_prep_elc_req);
821 int ldlm_prep_enqueue_req(struct obd_export *exp, struct ptlrpc_request *req,
822 cfs_list_t *cancels, int count)
824 return ldlm_prep_elc_req(exp, req, LUSTRE_DLM_VERSION, LDLM_ENQUEUE,
825 LDLM_ENQUEUE_CANCEL_OFF, cancels, count);
827 EXPORT_SYMBOL(ldlm_prep_enqueue_req);
829 struct ptlrpc_request *ldlm_enqueue_pack(struct obd_export *exp, int lvb_len)
831 struct ptlrpc_request *req;
835 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_LDLM_ENQUEUE);
837 RETURN(ERR_PTR(-ENOMEM));
839 rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
841 ptlrpc_request_free(req);
845 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER, lvb_len);
846 ptlrpc_request_set_replen(req);
849 EXPORT_SYMBOL(ldlm_enqueue_pack);
852 * Client-side lock enqueue.
854 * If a request has some specific initialisation it is passed in \a reqp,
855 * otherwise it is created in ldlm_cli_enqueue.
857 * Supports sync and async requests, pass \a async flag accordingly. If a
858 * request was created in ldlm_cli_enqueue and it is the async request,
859 * pass it to the caller in \a reqp.
861 int ldlm_cli_enqueue(struct obd_export *exp, struct ptlrpc_request **reqp,
862 struct ldlm_enqueue_info *einfo,
863 const struct ldlm_res_id *res_id,
864 ldlm_policy_data_t const *policy, __u64 *flags,
865 void *lvb, __u32 lvb_len, enum lvb_type lvb_type,
866 struct lustre_handle *lockh, int async)
868 struct ldlm_namespace *ns;
869 struct ldlm_lock *lock;
870 struct ldlm_request *body;
871 int is_replay = *flags & LDLM_FL_REPLAY;
872 int req_passed_in = 1;
874 struct ptlrpc_request *req;
877 LASSERT(exp != NULL);
879 ns = exp->exp_obd->obd_namespace;
881 /* If we're replaying this lock, just check some invariants.
882 * If we're creating a new lock, get everything all setup nice. */
884 lock = ldlm_handle2lock_long(lockh, 0);
885 LASSERT(lock != NULL);
886 LDLM_DEBUG(lock, "client-side enqueue START");
887 LASSERT(exp == lock->l_conn_export);
889 const struct ldlm_callback_suite cbs = {
890 .lcs_completion = einfo->ei_cb_cp,
891 .lcs_blocking = einfo->ei_cb_bl,
892 .lcs_glimpse = einfo->ei_cb_gl
894 lock = ldlm_lock_create(ns, res_id, einfo->ei_type,
895 einfo->ei_mode, &cbs, einfo->ei_cbdata,
899 /* for the local lock, add the reference */
900 ldlm_lock_addref_internal(lock, einfo->ei_mode);
901 ldlm_lock2handle(lock, lockh);
902 if (policy != NULL) {
903 /* INODEBITS_INTEROP: If the server does not support
904 * inodebits, we will request a plain lock in the
905 * descriptor (ldlm_lock2desc() below) but use an
906 * inodebits lock internally with both bits set.
908 if (einfo->ei_type == LDLM_IBITS &&
909 !(exp_connect_flags(exp) &
911 lock->l_policy_data.l_inodebits.bits =
912 MDS_INODELOCK_LOOKUP |
913 MDS_INODELOCK_UPDATE;
915 lock->l_policy_data = *policy;
918 if (einfo->ei_type == LDLM_EXTENT) {
919 /* extent lock without policy is a bug */
923 lock->l_req_extent = policy->l_extent;
925 LDLM_DEBUG(lock, "client-side enqueue START, flags %llx\n",
929 lock->l_conn_export = exp;
930 lock->l_export = NULL;
931 lock->l_blocking_ast = einfo->ei_cb_bl;
932 lock->l_flags |= (*flags & (LDLM_FL_NO_LRU | LDLM_FL_EXCL));
934 /* lock not sent to server yet */
936 if (reqp == NULL || *reqp == NULL) {
937 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
942 failed_lock_cleanup(ns, lock, einfo->ei_mode);
943 LDLM_LOCK_RELEASE(lock);
953 len = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ,
955 LASSERTF(len >= sizeof(*body), "buflen[%d] = %d, not %d\n",
956 DLM_LOCKREQ_OFF, len, (int)sizeof(*body));
959 /* Dump lock data into the request buffer */
960 body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
961 ldlm_lock2desc(lock, &body->lock_desc);
962 body->lock_flags = ldlm_flags_to_wire(*flags);
963 body->lock_handle[0] = *lockh;
965 /* Continue as normal. */
966 if (!req_passed_in) {
968 req_capsule_extend(&req->rq_pill,
969 &RQF_LDLM_ENQUEUE_LVB);
970 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
972 ptlrpc_request_set_replen(req);
976 * Liblustre client doesn't get extent locks, except for O_APPEND case
977 * where [0, OBD_OBJECT_EOF] lock is taken, or truncate, where
978 * [i_size, OBD_OBJECT_EOF] lock is taken.
980 LASSERT(ergo(LIBLUSTRE_CLIENT, einfo->ei_type != LDLM_EXTENT ||
981 policy->l_extent.end == OBD_OBJECT_EOF));
984 LASSERT(reqp != NULL);
988 LDLM_DEBUG(lock, "sending request");
990 rc = ptlrpc_queue_wait(req);
992 err = ldlm_cli_enqueue_fini(exp, req, einfo->ei_type, policy ? 1 : 0,
993 einfo->ei_mode, flags, lvb, lvb_len,
996 /* If ldlm_cli_enqueue_fini did not find the lock, we need to free
997 * one reference that we took */
999 LDLM_LOCK_RELEASE(lock);
1003 if (!req_passed_in && req != NULL) {
1004 ptlrpc_req_finished(req);
1011 EXPORT_SYMBOL(ldlm_cli_enqueue);
1013 static int ldlm_cli_convert_local(struct ldlm_lock *lock, int new_mode,
1016 struct ldlm_resource *res;
1019 if (ns_is_client(ldlm_lock_to_ns(lock))) {
1020 CERROR("Trying to cancel local lock\n");
1023 LDLM_DEBUG(lock, "client-side local convert");
1025 res = ldlm_lock_convert(lock, new_mode, flags);
1027 ldlm_reprocess_all(res);
1030 rc = LUSTRE_EDEADLK;
1032 LDLM_DEBUG(lock, "client-side local convert handler END");
1033 LDLM_LOCK_PUT(lock);
1037 /* FIXME: one of ldlm_cli_convert or the server side should reject attempted
1038 * conversion of locks which are on the waiting or converting queue */
1039 /* Caller of this code is supposed to take care of lock readers/writers
1041 int ldlm_cli_convert(struct lustre_handle *lockh, int new_mode, __u32 *flags)
1043 struct ldlm_request *body;
1044 struct ldlm_reply *reply;
1045 struct ldlm_lock *lock;
1046 struct ldlm_resource *res;
1047 struct ptlrpc_request *req;
1051 lock = ldlm_handle2lock(lockh);
1058 if (lock->l_conn_export == NULL)
1059 RETURN(ldlm_cli_convert_local(lock, new_mode, flags));
1061 LDLM_DEBUG(lock, "client-side convert");
1063 req = ptlrpc_request_alloc_pack(class_exp2cliimp(lock->l_conn_export),
1064 &RQF_LDLM_CONVERT, LUSTRE_DLM_VERSION,
1067 LDLM_LOCK_PUT(lock);
1071 body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1072 body->lock_handle[0] = lock->l_remote_handle;
1074 body->lock_desc.l_req_mode = new_mode;
1075 body->lock_flags = ldlm_flags_to_wire(*flags);
1078 ptlrpc_request_set_replen(req);
1079 rc = ptlrpc_queue_wait(req);
1083 reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1085 GOTO(out, rc = -EPROTO);
1088 GOTO(out, rc = req->rq_status);
1090 res = ldlm_lock_convert(lock, new_mode, &reply->lock_flags);
1092 ldlm_reprocess_all(res);
1093 /* Go to sleep until the lock is granted. */
1094 /* FIXME: or cancelled. */
1095 if (lock->l_completion_ast) {
1096 rc = lock->l_completion_ast(lock, LDLM_FL_WAIT_NOREPROC,
1102 rc = LUSTRE_EDEADLK;
1106 LDLM_LOCK_PUT(lock);
1107 ptlrpc_req_finished(req);
1110 EXPORT_SYMBOL(ldlm_cli_convert);
1113 * Cancel locks locally.
1115 * \retval LDLM_FL_LOCAL_ONLY if there is no need for a CANCEL RPC to the server
1116 * \retval LDLM_FL_CANCELING otherwise;
1117 * \retval LDLM_FL_BL_AST if there is a need for a separate CANCEL RPC.
1119 static __u64 ldlm_cli_cancel_local(struct ldlm_lock *lock)
1121 __u64 rc = LDLM_FL_LOCAL_ONLY;
1124 if (lock->l_conn_export) {
1127 LDLM_DEBUG(lock, "client-side cancel");
1128 /* Set this flag to prevent others from getting new references*/
1129 lock_res_and_lock(lock);
1130 ldlm_set_cbpending(lock);
1131 local_only = !!(lock->l_flags &
1132 (LDLM_FL_LOCAL_ONLY|LDLM_FL_CANCEL_ON_BLOCK));
1133 ldlm_cancel_callback(lock);
1134 rc = (ldlm_is_bl_ast(lock)) ?
1135 LDLM_FL_BL_AST : LDLM_FL_CANCELING;
1136 unlock_res_and_lock(lock);
1139 CDEBUG(D_DLMTRACE, "not sending request (at caller's "
1141 rc = LDLM_FL_LOCAL_ONLY;
1143 ldlm_lock_cancel(lock);
1145 if (ns_is_client(ldlm_lock_to_ns(lock))) {
1146 LDLM_ERROR(lock, "Trying to cancel local lock");
1149 LDLM_DEBUG(lock, "server-side local cancel");
1150 ldlm_lock_cancel(lock);
1151 ldlm_reprocess_all(lock->l_resource);
1158 * Pack \a count locks in \a head into ldlm_request buffer of request \a req.
1160 static void ldlm_cancel_pack(struct ptlrpc_request *req,
1161 cfs_list_t *head, int count)
1163 struct ldlm_request *dlm;
1164 struct ldlm_lock *lock;
1165 int max, packed = 0;
1168 dlm = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
1169 LASSERT(dlm != NULL);
1171 /* Check the room in the request buffer. */
1172 max = req_capsule_get_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT) -
1173 sizeof(struct ldlm_request);
1174 max /= sizeof(struct lustre_handle);
1175 max += LDLM_LOCKREQ_HANDLES;
1176 LASSERT(max >= dlm->lock_count + count);
1178 /* XXX: it would be better to pack lock handles grouped by resource.
1179 * so that the server cancel would call filter_lvbo_update() less
1181 cfs_list_for_each_entry(lock, head, l_bl_ast) {
1184 LASSERT(lock->l_conn_export);
1185 /* Pack the lock handle to the given request buffer. */
1186 LDLM_DEBUG(lock, "packing");
1187 dlm->lock_handle[dlm->lock_count++] = lock->l_remote_handle;
1190 CDEBUG(D_DLMTRACE, "%d locks packed\n", packed);
1195 * Prepare and send a batched cancel RPC. It will include \a count lock
1196 * handles of locks given in \a cancels list. */
1197 int ldlm_cli_cancel_req(struct obd_export *exp, cfs_list_t *cancels,
1198 int count, ldlm_cancel_flags_t flags)
1200 struct ptlrpc_request *req = NULL;
1201 struct obd_import *imp;
1206 LASSERT(exp != NULL);
1209 CFS_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL, cfs_fail_val);
1211 if (CFS_FAIL_CHECK(OBD_FAIL_LDLM_CANCEL_RACE))
1214 free = ldlm_format_handles_avail(class_exp2cliimp(exp),
1215 &RQF_LDLM_CANCEL, RCL_CLIENT, 0);
1220 imp = class_exp2cliimp(exp);
1221 if (imp == NULL || imp->imp_invalid) {
1223 "skipping cancel on invalid import %p\n", imp);
1227 req = ptlrpc_request_alloc(imp, &RQF_LDLM_CANCEL);
1229 GOTO(out, rc = -ENOMEM);
1231 req_capsule_filled_sizes(&req->rq_pill, RCL_CLIENT);
1232 req_capsule_set_size(&req->rq_pill, &RMF_DLM_REQ, RCL_CLIENT,
1233 ldlm_request_bufsize(count, LDLM_CANCEL));
1235 rc = ptlrpc_request_pack(req, LUSTRE_DLM_VERSION, LDLM_CANCEL);
1237 ptlrpc_request_free(req);
1241 req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
1242 req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
1243 ptlrpc_at_set_req_timeout(req);
1245 ldlm_cancel_pack(req, cancels, count);
1247 ptlrpc_request_set_replen(req);
1248 if (flags & LCF_ASYNC) {
1249 ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
1253 rc = ptlrpc_queue_wait(req);
1255 if (rc == LUSTRE_ESTALE) {
1256 CDEBUG(D_DLMTRACE, "client/server (nid %s) "
1257 "out of sync -- not fatal\n",
1258 libcfs_nid2str(req->rq_import->
1259 imp_connection->c_peer.nid));
1261 } else if (rc == -ETIMEDOUT && /* check there was no reconnect*/
1262 req->rq_import_generation == imp->imp_generation) {
1263 ptlrpc_req_finished(req);
1265 } else if (rc != ELDLM_OK) {
1266 /* -ESHUTDOWN is common on umount */
1267 CDEBUG_LIMIT(rc == -ESHUTDOWN ? D_DLMTRACE : D_ERROR,
1268 "Got rc %d from cancel RPC: "
1269 "canceling anyway\n", rc);
1276 ptlrpc_req_finished(req);
1279 return sent ? sent : rc;
1281 EXPORT_SYMBOL(ldlm_cli_cancel_req);
1283 static inline struct ldlm_pool *ldlm_imp2pl(struct obd_import *imp)
1285 LASSERT(imp != NULL);
1286 return &imp->imp_obd->obd_namespace->ns_pool;
1290 * Update client's OBD pool related fields with new SLV and Limit from \a req.
1292 int ldlm_cli_update_pool(struct ptlrpc_request *req)
1294 struct obd_device *obd;
1298 if (unlikely(!req->rq_import || !req->rq_import->imp_obd ||
1299 !imp_connect_lru_resize(req->rq_import)))
1302 * Do nothing for corner cases.
1307 /* In some cases RPC may contain SLV and limit zeroed out. This
1308 * is the case when server does not support LRU resize feature.
1309 * This is also possible in some recovery cases when server-side
1310 * reqs have no reference to the OBD export and thus access to
1311 * server-side namespace is not possible. */
1312 if (lustre_msg_get_slv(req->rq_repmsg) == 0 ||
1313 lustre_msg_get_limit(req->rq_repmsg) == 0) {
1314 DEBUG_REQ(D_HA, req, "Zero SLV or Limit found "
1315 "(SLV: "LPU64", Limit: %u)",
1316 lustre_msg_get_slv(req->rq_repmsg),
1317 lustre_msg_get_limit(req->rq_repmsg));
1321 new_limit = lustre_msg_get_limit(req->rq_repmsg);
1322 new_slv = lustre_msg_get_slv(req->rq_repmsg);
1323 obd = req->rq_import->imp_obd;
1325 /* Set new SLV and limit in OBD fields to make them accessible
1326 * to the pool thread. We do not access obd_namespace and pool
1327 * directly here as there is no reliable way to make sure that
1328 * they are still alive at cleanup time. Evil races are possible
1329 * which may cause Oops at that time. */
1330 write_lock(&obd->obd_pool_lock);
1331 obd->obd_pool_slv = new_slv;
1332 obd->obd_pool_limit = new_limit;
1333 write_unlock(&obd->obd_pool_lock);
1337 EXPORT_SYMBOL(ldlm_cli_update_pool);
1340 * Client side lock cancel.
1342 * Lock must not have any readers or writers by this time.
1344 int ldlm_cli_cancel(struct lustre_handle *lockh,
1345 ldlm_cancel_flags_t cancel_flags)
1347 struct obd_export *exp;
1348 int avail, flags, count = 1;
1350 struct ldlm_namespace *ns;
1351 struct ldlm_lock *lock;
1352 CFS_LIST_HEAD(cancels);
1355 /* concurrent cancels on the same handle can happen */
1356 lock = ldlm_handle2lock_long(lockh, LDLM_FL_CANCELING);
1358 LDLM_DEBUG_NOLOCK("lock is already being destroyed\n");
1362 rc = ldlm_cli_cancel_local(lock);
1363 if (rc == LDLM_FL_LOCAL_ONLY || cancel_flags & LCF_LOCAL) {
1364 LDLM_LOCK_RELEASE(lock);
1367 /* Even if the lock is marked as LDLM_FL_BL_AST, this is a LDLM_CANCEL
1368 * RPC which goes to canceld portal, so we can cancel other LRU locks
1369 * here and send them all as one LDLM_CANCEL RPC. */
1370 LASSERT(cfs_list_empty(&lock->l_bl_ast));
1371 cfs_list_add(&lock->l_bl_ast, &cancels);
1373 exp = lock->l_conn_export;
1374 if (exp_connect_cancelset(exp)) {
1375 avail = ldlm_format_handles_avail(class_exp2cliimp(exp),
1380 ns = ldlm_lock_to_ns(lock);
1381 flags = ns_connect_lru_resize(ns) ?
1382 LDLM_CANCEL_LRUR : LDLM_CANCEL_AGED;
1383 count += ldlm_cancel_lru_local(ns, &cancels, 0, avail - 1,
1386 ldlm_cli_cancel_list(&cancels, count, NULL, cancel_flags);
1389 EXPORT_SYMBOL(ldlm_cli_cancel);
1392 * Locally cancel up to \a count locks in list \a cancels.
1393 * Return the number of cancelled locks.
1395 int ldlm_cli_cancel_list_local(cfs_list_t *cancels, int count,
1396 ldlm_cancel_flags_t flags)
1398 CFS_LIST_HEAD(head);
1399 struct ldlm_lock *lock, *next;
1400 int left = 0, bl_ast = 0;
1404 cfs_list_for_each_entry_safe(lock, next, cancels, l_bl_ast) {
1408 if (flags & LCF_LOCAL) {
1409 rc = LDLM_FL_LOCAL_ONLY;
1410 ldlm_lock_cancel(lock);
1412 rc = ldlm_cli_cancel_local(lock);
1414 /* Until we have compound requests and can send LDLM_CANCEL
1415 * requests batched with generic RPCs, we need to send cancels
1416 * with the LDLM_FL_BL_AST flag in a separate RPC from
1417 * the one being generated now. */
1418 if (!(flags & LCF_BL_AST) && (rc == LDLM_FL_BL_AST)) {
1419 LDLM_DEBUG(lock, "Cancel lock separately");
1420 cfs_list_del_init(&lock->l_bl_ast);
1421 cfs_list_add(&lock->l_bl_ast, &head);
1425 if (rc == LDLM_FL_LOCAL_ONLY) {
1426 /* CANCEL RPC should not be sent to server. */
1427 cfs_list_del_init(&lock->l_bl_ast);
1428 LDLM_LOCK_RELEASE(lock);
1434 ldlm_cli_cancel_list(&head, bl_ast, NULL, 0);
1439 EXPORT_SYMBOL(ldlm_cli_cancel_list_local);
1442 * Cancel as many locks as possible w/o sending any RPCs (e.g. to write back
1443 * dirty data, to close a file, ...) or waiting for any RPCs in-flight (e.g.
1444 * readahead requests, ...)
1446 static ldlm_policy_res_t ldlm_cancel_no_wait_policy(struct ldlm_namespace *ns,
1447 struct ldlm_lock *lock,
1448 int unused, int added,
1451 ldlm_policy_res_t result = LDLM_POLICY_CANCEL_LOCK;
1452 ldlm_cancel_for_recovery cb = ns->ns_cancel_for_recovery;
1453 lock_res_and_lock(lock);
1455 /* don't check added & count since we want to process all locks
1456 * from unused list */
1457 switch (lock->l_resource->lr_type) {
1463 result = LDLM_POLICY_SKIP_LOCK;
1464 ldlm_set_skipped(lock);
1468 unlock_res_and_lock(lock);
1473 * Callback function for LRU-resize policy. Decides whether to keep
1474 * \a lock in LRU for current \a LRU size \a unused, added in current
1475 * scan \a added and number of locks to be preferably canceled \a count.
1477 * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1479 * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1481 static ldlm_policy_res_t ldlm_cancel_lrur_policy(struct ldlm_namespace *ns,
1482 struct ldlm_lock *lock,
1483 int unused, int added,
1486 cfs_time_t cur = cfs_time_current();
1487 struct ldlm_pool *pl = &ns->ns_pool;
1491 /* Stop LRU processing when we reach past @count or have checked all
1493 if (count && added >= count)
1494 return LDLM_POLICY_KEEP_LOCK;
1496 slv = ldlm_pool_get_slv(pl);
1497 lvf = ldlm_pool_get_lvf(pl);
1498 la = cfs_duration_sec(cfs_time_sub(cur,
1499 lock->l_last_used));
1500 lv = lvf * la * unused;
1502 /* Inform pool about current CLV to see it via proc. */
1503 ldlm_pool_set_clv(pl, lv);
1505 /* Stop when SLV is not yet come from server or lv is smaller than
1507 return (slv == 0 || lv < slv) ?
1508 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1512 * Callback function for proc used policy. Makes decision whether to keep
1513 * \a lock in LRU for current \a LRU size \a unused, added in current scan \a
1514 * added and number of locks to be preferably canceled \a count.
1516 * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1518 * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1520 static ldlm_policy_res_t ldlm_cancel_passed_policy(struct ldlm_namespace *ns,
1521 struct ldlm_lock *lock,
1522 int unused, int added,
1525 /* Stop LRU processing when we reach past @count or have checked all
1527 return (added >= count) ?
1528 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1532 * Callback function for aged policy. Makes decision whether to keep \a lock in
1533 * LRU for current LRU size \a unused, added in current scan \a added and
1534 * number of locks to be preferably canceled \a count.
1536 * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1538 * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1540 static ldlm_policy_res_t ldlm_cancel_aged_policy(struct ldlm_namespace *ns,
1541 struct ldlm_lock *lock,
1542 int unused, int added,
1545 /* Stop LRU processing if young lock is found and we reach past count */
1546 return ((added >= count) &&
1547 cfs_time_before(cfs_time_current(),
1548 cfs_time_add(lock->l_last_used,
1550 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1554 * Callback function for default policy. Makes decision whether to keep \a lock
1555 * in LRU for current LRU size \a unused, added in current scan \a added and
1556 * number of locks to be preferably canceled \a count.
1558 * \retval LDLM_POLICY_KEEP_LOCK keep lock in LRU in stop scanning
1560 * \retval LDLM_POLICY_CANCEL_LOCK cancel lock from LRU
1562 static ldlm_policy_res_t ldlm_cancel_default_policy(struct ldlm_namespace *ns,
1563 struct ldlm_lock *lock,
1564 int unused, int added,
1567 /* Stop LRU processing when we reach past count or have checked all
1569 return (added >= count) ?
1570 LDLM_POLICY_KEEP_LOCK : LDLM_POLICY_CANCEL_LOCK;
1573 typedef ldlm_policy_res_t (*ldlm_cancel_lru_policy_t)(struct ldlm_namespace *,
1574 struct ldlm_lock *, int,
1577 static ldlm_cancel_lru_policy_t
1578 ldlm_cancel_lru_policy(struct ldlm_namespace *ns, int flags)
1580 if (flags & LDLM_CANCEL_NO_WAIT)
1581 return ldlm_cancel_no_wait_policy;
1583 if (ns_connect_lru_resize(ns)) {
1584 if (flags & LDLM_CANCEL_SHRINK)
1585 /* We kill passed number of old locks. */
1586 return ldlm_cancel_passed_policy;
1587 else if (flags & LDLM_CANCEL_LRUR)
1588 return ldlm_cancel_lrur_policy;
1589 else if (flags & LDLM_CANCEL_PASSED)
1590 return ldlm_cancel_passed_policy;
1592 if (flags & LDLM_CANCEL_AGED)
1593 return ldlm_cancel_aged_policy;
1596 return ldlm_cancel_default_policy;
1600 * - Free space in LRU for \a count new locks,
1601 * redundant unused locks are canceled locally;
1602 * - also cancel locally unused aged locks;
1603 * - do not cancel more than \a max locks;
1604 * - GET the found locks and add them into the \a cancels list.
1606 * A client lock can be added to the l_bl_ast list only when it is
1607 * marked LDLM_FL_CANCELING. Otherwise, somebody is already doing
1608 * CANCEL. There are the following use cases:
1609 * ldlm_cancel_resource_local(), ldlm_cancel_lru_local() and
1610 * ldlm_cli_cancel(), which check and set this flag properly. As any
1611 * attempt to cancel a lock rely on this flag, l_bl_ast list is accessed
1612 * later without any special locking.
1614 * Calling policies for enabled LRU resize:
1615 * ----------------------------------------
1616 * flags & LDLM_CANCEL_LRUR - use LRU resize policy (SLV from server) to
1617 * cancel not more than \a count locks;
1619 * flags & LDLM_CANCEL_PASSED - cancel \a count number of old locks (located at
1620 * the beginning of LRU list);
1622 * flags & LDLM_CANCEL_SHRINK - cancel not more than \a count locks according to
1623 * memory pressre policy function;
1625 * flags & LDLM_CANCEL_AGED - cancel \a count locks according to "aged policy".
1627 * flags & LDLM_CANCEL_NO_WAIT - cancel as many unused locks as possible
1628 * (typically before replaying locks) w/o
1629 * sending any RPCs or waiting for any
1630 * outstanding RPC to complete.
1632 static int ldlm_prepare_lru_list(struct ldlm_namespace *ns, cfs_list_t *cancels,
1633 int count, int max, int flags)
1635 ldlm_cancel_lru_policy_t pf;
1636 struct ldlm_lock *lock, *next;
1637 int added = 0, unused, remained;
1640 spin_lock(&ns->ns_lock);
1641 unused = ns->ns_nr_unused;
1644 if (!ns_connect_lru_resize(ns))
1645 count += unused - ns->ns_max_unused;
1647 pf = ldlm_cancel_lru_policy(ns, flags);
1648 LASSERT(pf != NULL);
1650 while (!cfs_list_empty(&ns->ns_unused_list)) {
1651 ldlm_policy_res_t result;
1653 /* all unused locks */
1654 if (remained-- <= 0)
1657 /* For any flags, stop scanning if @max is reached. */
1658 if (max && added >= max)
1661 cfs_list_for_each_entry_safe(lock, next, &ns->ns_unused_list,
1663 /* No locks which got blocking requests. */
1664 LASSERT(!ldlm_is_bl_ast(lock));
1666 if (flags & LDLM_CANCEL_NO_WAIT &&
1667 ldlm_is_skipped(lock))
1668 /* already processed */
1671 /* Somebody is already doing CANCEL. No need for this
1672 * lock in LRU, do not traverse it again. */
1673 if (!ldlm_is_canceling(lock))
1676 ldlm_lock_remove_from_lru_nolock(lock);
1678 if (&lock->l_lru == &ns->ns_unused_list)
1681 LDLM_LOCK_GET(lock);
1682 spin_unlock(&ns->ns_lock);
1683 lu_ref_add(&lock->l_reference, __FUNCTION__, current);
1685 /* Pass the lock through the policy filter and see if it
1686 * should stay in LRU.
1688 * Even for shrinker policy we stop scanning if
1689 * we find a lock that should stay in the cache.
1690 * We should take into account lock age anyway
1691 * as a new lock is a valuable resource even if
1692 * it has a low weight.
1694 * That is, for shrinker policy we drop only
1695 * old locks, but additionally choose them by
1696 * their weight. Big extent locks will stay in
1698 result = pf(ns, lock, unused, added, count);
1699 if (result == LDLM_POLICY_KEEP_LOCK) {
1700 lu_ref_del(&lock->l_reference,
1701 __FUNCTION__, current);
1702 LDLM_LOCK_RELEASE(lock);
1703 spin_lock(&ns->ns_lock);
1706 if (result == LDLM_POLICY_SKIP_LOCK) {
1707 lu_ref_del(&lock->l_reference,
1709 LDLM_LOCK_RELEASE(lock);
1710 spin_lock(&ns->ns_lock);
1714 lock_res_and_lock(lock);
1715 /* Check flags again under the lock. */
1716 if (ldlm_is_canceling(lock) ||
1717 (ldlm_lock_remove_from_lru(lock) == 0)) {
1718 /* Another thread is removing lock from LRU, or
1719 * somebody is already doing CANCEL, or there
1720 * is a blocking request which will send cancel
1721 * by itself, or the lock is no longer unused. */
1722 unlock_res_and_lock(lock);
1723 lu_ref_del(&lock->l_reference, __FUNCTION__, current);
1724 LDLM_LOCK_RELEASE(lock);
1725 spin_lock(&ns->ns_lock);
1728 LASSERT(!lock->l_readers && !lock->l_writers);
1730 /* If we have chosen to cancel this lock voluntarily, we
1731 * better send cancel notification to server, so that it
1732 * frees appropriate state. This might lead to a race
1733 * where while we are doing cancel here, server is also
1734 * silently cancelling this lock. */
1735 ldlm_clear_cancel_on_block(lock);
1737 /* Setting the CBPENDING flag is a little misleading,
1738 * but prevents an important race; namely, once
1739 * CBPENDING is set, the lock can accumulate no more
1740 * readers/writers. Since readers and writers are
1741 * already zero here, ldlm_lock_decref() won't see
1742 * this flag and call l_blocking_ast */
1743 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING;
1745 /* We can't re-add to l_lru as it confuses the
1746 * refcounting in ldlm_lock_remove_from_lru() if an AST
1747 * arrives after we drop lr_lock below. We use l_bl_ast
1748 * and can't use l_pending_chain as it is used both on
1749 * server and client nevertheless bug 5666 says it is
1750 * used only on server */
1751 LASSERT(cfs_list_empty(&lock->l_bl_ast));
1752 cfs_list_add(&lock->l_bl_ast, cancels);
1753 unlock_res_and_lock(lock);
1754 lu_ref_del(&lock->l_reference, __FUNCTION__, current);
1755 spin_lock(&ns->ns_lock);
1759 spin_unlock(&ns->ns_lock);
1763 int ldlm_cancel_lru_local(struct ldlm_namespace *ns, cfs_list_t *cancels,
1764 int count, int max, ldlm_cancel_flags_t cancel_flags,
1768 added = ldlm_prepare_lru_list(ns, cancels, count, max, flags);
1771 return ldlm_cli_cancel_list_local(cancels, added, cancel_flags);
1775 * Cancel at least \a nr locks from given namespace LRU.
1777 * When called with LCF_ASYNC the blocking callback will be handled
1778 * in a thread and this function will return after the thread has been
1779 * asked to call the callback. When called with LCF_ASYNC the blocking
1780 * callback will be performed in this function.
1782 int ldlm_cancel_lru(struct ldlm_namespace *ns, int nr,
1783 ldlm_cancel_flags_t cancel_flags,
1786 CFS_LIST_HEAD(cancels);
1791 cancel_flags &= ~LCF_ASYNC; /* force to be sync in user space */
1793 /* Just prepare the list of locks, do not actually cancel them yet.
1794 * Locks are cancelled later in a separate thread. */
1795 count = ldlm_prepare_lru_list(ns, &cancels, nr, 0, flags);
1796 rc = ldlm_bl_to_thread_list(ns, NULL, &cancels, count, cancel_flags);
1804 * Find and cancel locally unused locks found on resource, matched to the
1805 * given policy, mode. GET the found locks and add them into the \a cancels
1808 int ldlm_cancel_resource_local(struct ldlm_resource *res,
1809 cfs_list_t *cancels,
1810 ldlm_policy_data_t *policy,
1811 ldlm_mode_t mode, __u64 lock_flags,
1812 ldlm_cancel_flags_t cancel_flags, void *opaque)
1814 struct ldlm_lock *lock;
1819 cfs_list_for_each_entry(lock, &res->lr_granted, l_res_link) {
1820 if (opaque != NULL && lock->l_ast_data != opaque) {
1821 LDLM_ERROR(lock, "data %p doesn't match opaque %p",
1822 lock->l_ast_data, opaque);
1827 if (lock->l_readers || lock->l_writers)
1830 /* If somebody is already doing CANCEL, or blocking AST came,
1831 * skip this lock. */
1832 if (ldlm_is_bl_ast(lock) || ldlm_is_canceling(lock))
1835 if (lockmode_compat(lock->l_granted_mode, mode))
1838 /* If policy is given and this is IBITS lock, add to list only
1839 * those locks that match by policy. */
1840 if (policy && (lock->l_resource->lr_type == LDLM_IBITS) &&
1841 !(lock->l_policy_data.l_inodebits.bits &
1842 policy->l_inodebits.bits))
1845 /* See CBPENDING comment in ldlm_cancel_lru */
1846 lock->l_flags |= LDLM_FL_CBPENDING | LDLM_FL_CANCELING |
1849 LASSERT(cfs_list_empty(&lock->l_bl_ast));
1850 cfs_list_add(&lock->l_bl_ast, cancels);
1851 LDLM_LOCK_GET(lock);
1856 RETURN(ldlm_cli_cancel_list_local(cancels, count, cancel_flags));
1858 EXPORT_SYMBOL(ldlm_cancel_resource_local);
1861 * Cancel client-side locks from a list and send/prepare cancel RPCs to the
1863 * If \a req is NULL, send CANCEL request to server with handles of locks
1864 * in the \a cancels. If EARLY_CANCEL is not supported, send CANCEL requests
1865 * separately per lock.
1866 * If \a req is not NULL, put handles of locks in \a cancels into the request
1867 * buffer at the offset \a off.
1868 * Destroy \a cancels at the end.
1870 int ldlm_cli_cancel_list(cfs_list_t *cancels, int count,
1871 struct ptlrpc_request *req, ldlm_cancel_flags_t flags)
1873 struct ldlm_lock *lock;
1877 if (cfs_list_empty(cancels) || count == 0)
1880 /* XXX: requests (both batched and not) could be sent in parallel.
1881 * Usually it is enough to have just 1 RPC, but it is possible that
1882 * there are too many locks to be cancelled in LRU or on a resource.
1883 * It would also speed up the case when the server does not support
1886 LASSERT(!cfs_list_empty(cancels));
1887 lock = cfs_list_entry(cancels->next, struct ldlm_lock,
1889 LASSERT(lock->l_conn_export);
1891 if (exp_connect_cancelset(lock->l_conn_export)) {
1894 ldlm_cancel_pack(req, cancels, count);
1896 res = ldlm_cli_cancel_req(lock->l_conn_export,
1900 res = ldlm_cli_cancel_req(lock->l_conn_export,
1905 CDEBUG_LIMIT(res == -ESHUTDOWN ? D_DLMTRACE : D_ERROR,
1906 "ldlm_cli_cancel_list: %d\n", res);
1911 ldlm_lock_list_put(cancels, l_bl_ast, res);
1913 LASSERT(count == 0);
1916 EXPORT_SYMBOL(ldlm_cli_cancel_list);
1919 * Cancel all locks on a resource that have 0 readers/writers.
1921 * If flags & LDLM_FL_LOCAL_ONLY, throw the locks away without trying
1922 * to notify the server. */
1923 int ldlm_cli_cancel_unused_resource(struct ldlm_namespace *ns,
1924 const struct ldlm_res_id *res_id,
1925 ldlm_policy_data_t *policy,
1927 ldlm_cancel_flags_t flags,
1930 struct ldlm_resource *res;
1931 CFS_LIST_HEAD(cancels);
1936 res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
1938 /* This is not a problem. */
1939 CDEBUG(D_INFO, "No resource "LPU64"\n", res_id->name[0]);
1943 LDLM_RESOURCE_ADDREF(res);
1944 count = ldlm_cancel_resource_local(res, &cancels, policy, mode,
1945 0, flags | LCF_BL_AST, opaque);
1946 rc = ldlm_cli_cancel_list(&cancels, count, NULL, flags);
1948 CERROR("canceling unused lock "DLDLMRES": rc = %d\n",
1951 LDLM_RESOURCE_DELREF(res);
1952 ldlm_resource_putref(res);
1955 EXPORT_SYMBOL(ldlm_cli_cancel_unused_resource);
1957 struct ldlm_cli_cancel_arg {
1962 static int ldlm_cli_hash_cancel_unused(cfs_hash_t *hs, cfs_hash_bd_t *bd,
1963 cfs_hlist_node_t *hnode, void *arg)
1965 struct ldlm_resource *res = cfs_hash_object(hs, hnode);
1966 struct ldlm_cli_cancel_arg *lc = arg;
1968 ldlm_cli_cancel_unused_resource(ldlm_res_to_ns(res), &res->lr_name,
1969 NULL, LCK_MINMODE, lc->lc_flags,
1971 /* must return 0 for hash iteration */
1976 * Cancel all locks on a namespace (or a specific resource, if given)
1977 * that have 0 readers/writers.
1979 * If flags & LCF_LOCAL, throw the locks away without trying
1980 * to notify the server. */
1981 int ldlm_cli_cancel_unused(struct ldlm_namespace *ns,
1982 const struct ldlm_res_id *res_id,
1983 ldlm_cancel_flags_t flags, void *opaque)
1985 struct ldlm_cli_cancel_arg arg = {
1987 .lc_opaque = opaque,
1995 if (res_id != NULL) {
1996 RETURN(ldlm_cli_cancel_unused_resource(ns, res_id, NULL,
2000 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2001 ldlm_cli_hash_cancel_unused, &arg);
2005 EXPORT_SYMBOL(ldlm_cli_cancel_unused);
2007 /* Lock iterators. */
2009 int ldlm_resource_foreach(struct ldlm_resource *res, ldlm_iterator_t iter,
2012 cfs_list_t *tmp, *next;
2013 struct ldlm_lock *lock;
2014 int rc = LDLM_ITER_CONTINUE;
2019 RETURN(LDLM_ITER_CONTINUE);
2022 cfs_list_for_each_safe(tmp, next, &res->lr_granted) {
2023 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
2025 if (iter(lock, closure) == LDLM_ITER_STOP)
2026 GOTO(out, rc = LDLM_ITER_STOP);
2029 cfs_list_for_each_safe(tmp, next, &res->lr_converting) {
2030 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
2032 if (iter(lock, closure) == LDLM_ITER_STOP)
2033 GOTO(out, rc = LDLM_ITER_STOP);
2036 cfs_list_for_each_safe(tmp, next, &res->lr_waiting) {
2037 lock = cfs_list_entry(tmp, struct ldlm_lock, l_res_link);
2039 if (iter(lock, closure) == LDLM_ITER_STOP)
2040 GOTO(out, rc = LDLM_ITER_STOP);
2046 EXPORT_SYMBOL(ldlm_resource_foreach);
2048 struct iter_helper_data {
2049 ldlm_iterator_t iter;
2053 static int ldlm_iter_helper(struct ldlm_lock *lock, void *closure)
2055 struct iter_helper_data *helper = closure;
2056 return helper->iter(lock, helper->closure);
2059 static int ldlm_res_iter_helper(cfs_hash_t *hs, cfs_hash_bd_t *bd,
2060 cfs_hlist_node_t *hnode, void *arg)
2063 struct ldlm_resource *res = cfs_hash_object(hs, hnode);
2065 return ldlm_resource_foreach(res, ldlm_iter_helper, arg) ==
2069 void ldlm_namespace_foreach(struct ldlm_namespace *ns,
2070 ldlm_iterator_t iter, void *closure)
2073 struct iter_helper_data helper = { iter: iter, closure: closure };
2075 cfs_hash_for_each_nolock(ns->ns_rs_hash,
2076 ldlm_res_iter_helper, &helper);
2079 EXPORT_SYMBOL(ldlm_namespace_foreach);
2081 /* non-blocking function to manipulate a lock whose cb_data is being put away.
2082 * return 0: find no resource
2083 * > 0: must be LDLM_ITER_STOP/LDLM_ITER_CONTINUE.
2086 int ldlm_resource_iterate(struct ldlm_namespace *ns,
2087 const struct ldlm_res_id *res_id,
2088 ldlm_iterator_t iter, void *data)
2090 struct ldlm_resource *res;
2095 CERROR("must pass in namespace\n");
2099 res = ldlm_resource_get(ns, NULL, res_id, 0, 0);
2103 LDLM_RESOURCE_ADDREF(res);
2104 rc = ldlm_resource_foreach(res, iter, data);
2105 LDLM_RESOURCE_DELREF(res);
2106 ldlm_resource_putref(res);
2109 EXPORT_SYMBOL(ldlm_resource_iterate);
2113 static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
2115 cfs_list_t *list = closure;
2117 /* we use l_pending_chain here, because it's unused on clients. */
2118 LASSERTF(cfs_list_empty(&lock->l_pending_chain),
2119 "lock %p next %p prev %p\n",
2120 lock, &lock->l_pending_chain.next,&lock->l_pending_chain.prev);
2121 /* bug 9573: don't replay locks left after eviction, or
2122 * bug 17614: locks being actively cancelled. Get a reference
2123 * on a lock so that it does not disapear under us (e.g. due to cancel)
2125 if (!(lock->l_flags & (LDLM_FL_FAILED|LDLM_FL_CANCELING))) {
2126 cfs_list_add(&lock->l_pending_chain, list);
2127 LDLM_LOCK_GET(lock);
2130 return LDLM_ITER_CONTINUE;
2133 static int replay_lock_interpret(const struct lu_env *env,
2134 struct ptlrpc_request *req,
2135 struct ldlm_async_args *aa, int rc)
2137 struct ldlm_lock *lock;
2138 struct ldlm_reply *reply;
2139 struct obd_export *exp;
2142 cfs_atomic_dec(&req->rq_import->imp_replay_inflight);
2147 reply = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
2149 GOTO(out, rc = -EPROTO);
2151 lock = ldlm_handle2lock(&aa->lock_handle);
2153 CERROR("received replay ack for unknown local cookie "LPX64
2154 " remote cookie "LPX64 " from server %s id %s\n",
2155 aa->lock_handle.cookie, reply->lock_handle.cookie,
2156 req->rq_export->exp_client_uuid.uuid,
2157 libcfs_id2str(req->rq_peer));
2158 GOTO(out, rc = -ESTALE);
2161 /* Key change rehash lock in per-export hash with new key */
2162 exp = req->rq_export;
2163 if (exp && exp->exp_lock_hash) {
2164 /* In the function below, .hs_keycmp resolves to
2165 * ldlm_export_lock_keycmp() */
2166 /* coverity[overrun-buffer-val] */
2167 cfs_hash_rehash_key(exp->exp_lock_hash,
2168 &lock->l_remote_handle,
2169 &reply->lock_handle,
2172 lock->l_remote_handle = reply->lock_handle;
2175 LDLM_DEBUG(lock, "replayed lock:");
2176 ptlrpc_import_recovery_state_machine(req->rq_import);
2177 LDLM_LOCK_PUT(lock);
2180 ptlrpc_connect_import(req->rq_import);
2185 static int replay_one_lock(struct obd_import *imp, struct ldlm_lock *lock)
2187 struct ptlrpc_request *req;
2188 struct ldlm_async_args *aa;
2189 struct ldlm_request *body;
2194 /* Bug 11974: Do not replay a lock which is actively being canceled */
2195 if (ldlm_is_canceling(lock)) {
2196 LDLM_DEBUG(lock, "Not replaying canceled lock:");
2200 /* If this is reply-less callback lock, we cannot replay it, since
2201 * server might have long dropped it, but notification of that event was
2202 * lost by network. (and server granted conflicting lock already) */
2203 if (ldlm_is_cancel_on_block(lock)) {
2204 LDLM_DEBUG(lock, "Not replaying reply-less lock:");
2205 ldlm_lock_cancel(lock);
2210 * If granted mode matches the requested mode, this lock is granted.
2212 * If they differ, but we have a granted mode, then we were granted
2213 * one mode and now want another: ergo, converting.
2215 * If we haven't been granted anything and are on a resource list,
2216 * then we're blocked/waiting.
2218 * If we haven't been granted anything and we're NOT on a resource list,
2219 * then we haven't got a reply yet and don't have a known disposition.
2220 * This happens whenever a lock enqueue is the request that triggers
2223 if (lock->l_granted_mode == lock->l_req_mode)
2224 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_GRANTED;
2225 else if (lock->l_granted_mode)
2226 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_CONV;
2227 else if (!cfs_list_empty(&lock->l_res_link))
2228 flags = LDLM_FL_REPLAY | LDLM_FL_BLOCK_WAIT;
2230 flags = LDLM_FL_REPLAY;
2232 req = ptlrpc_request_alloc_pack(imp, &RQF_LDLM_ENQUEUE,
2233 LUSTRE_DLM_VERSION, LDLM_ENQUEUE);
2237 /* We're part of recovery, so don't wait for it. */
2238 req->rq_send_state = LUSTRE_IMP_REPLAY_LOCKS;
2240 body = req_capsule_client_get(&req->rq_pill, &RMF_DLM_REQ);
2241 ldlm_lock2desc(lock, &body->lock_desc);
2242 body->lock_flags = ldlm_flags_to_wire(flags);
2244 ldlm_lock2handle(lock, &body->lock_handle[0]);
2245 if (lock->l_lvb_len > 0)
2246 req_capsule_extend(&req->rq_pill, &RQF_LDLM_ENQUEUE_LVB);
2247 req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
2249 ptlrpc_request_set_replen(req);
2250 /* notify the server we've replayed all requests.
2251 * also, we mark the request to be put on a dedicated
2252 * queue to be processed after all request replayes.
2254 lustre_msg_set_flags(req->rq_reqmsg, MSG_REQ_REPLAY_DONE);
2256 LDLM_DEBUG(lock, "replaying lock:");
2258 cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2259 CLASSERT(sizeof(*aa) <= sizeof(req->rq_async_args));
2260 aa = ptlrpc_req_async_args(req);
2261 aa->lock_handle = body->lock_handle[0];
2262 req->rq_interpret_reply = (ptlrpc_interpterer_t)replay_lock_interpret;
2263 ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
2269 * Cancel as many unused locks as possible before replay. since we are
2270 * in recovery, we can't wait for any outstanding RPCs to send any RPC
2273 * Called only in recovery before replaying locks. there is no need to
2274 * replay locks that are unused. since the clients may hold thousands of
2275 * cached unused locks, dropping the unused locks can greatly reduce the
2276 * load on the servers at recovery time.
2278 static void ldlm_cancel_unused_locks_for_replay(struct ldlm_namespace *ns)
2281 CFS_LIST_HEAD(cancels);
2283 CDEBUG(D_DLMTRACE, "Dropping as many unused locks as possible before"
2284 "replay for namespace %s (%d)\n",
2285 ldlm_ns_name(ns), ns->ns_nr_unused);
2287 /* We don't need to care whether or not LRU resize is enabled
2288 * because the LDLM_CANCEL_NO_WAIT policy doesn't use the
2289 * count parameter */
2290 canceled = ldlm_cancel_lru_local(ns, &cancels, ns->ns_nr_unused, 0,
2291 LCF_LOCAL, LDLM_CANCEL_NO_WAIT);
2293 CDEBUG(D_DLMTRACE, "Canceled %d unused locks from namespace %s\n",
2294 canceled, ldlm_ns_name(ns));
2297 int ldlm_replay_locks(struct obd_import *imp)
2299 struct ldlm_namespace *ns = imp->imp_obd->obd_namespace;
2300 CFS_LIST_HEAD(list);
2301 struct ldlm_lock *lock, *next;
2306 LASSERT(cfs_atomic_read(&imp->imp_replay_inflight) == 0);
2308 /* don't replay locks if import failed recovery */
2309 if (imp->imp_vbr_failed)
2312 /* ensure this doesn't fall to 0 before all have been queued */
2313 cfs_atomic_inc(&imp->imp_replay_inflight);
2315 if (ldlm_cancel_unused_locks_before_replay)
2316 ldlm_cancel_unused_locks_for_replay(ns);
2318 ldlm_namespace_foreach(ns, ldlm_chain_lock_for_replay, &list);
2320 cfs_list_for_each_entry_safe(lock, next, &list, l_pending_chain) {
2321 cfs_list_del_init(&lock->l_pending_chain);
2323 LDLM_LOCK_RELEASE(lock);
2324 continue; /* or try to do the rest? */
2326 rc = replay_one_lock(imp, lock);
2327 LDLM_LOCK_RELEASE(lock);
2330 cfs_atomic_dec(&imp->imp_replay_inflight);
2334 EXPORT_SYMBOL(ldlm_replay_locks);