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.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2014, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
33 * Author: Nikita Danilov <nikita.danilov@sun.com>
34 * Author: Jinshan Xiong <jinshan.xiong@intel.com>
37 #define DEBUG_SUBSYSTEM S_CLASS
39 #include <linux/list.h>
40 #include <libcfs/libcfs.h>
41 #include <obd_class.h>
42 #include <obd_support.h>
43 #include <lustre_fid.h>
44 #include <cl_object.h>
45 #include "cl_internal.h"
47 static void cl_lock_trace0(int level, const struct lu_env *env,
48 const char *prefix, const struct cl_lock *lock,
49 const char *func, const int line)
51 struct cl_object_header *h = cl_object_header(lock->cll_descr.cld_obj);
52 CDEBUG(level, "%s: %p (%p/%d) at %s():%d\n",
53 prefix, lock, env, h->coh_nesting, func, line);
55 #define cl_lock_trace(level, env, prefix, lock) \
56 cl_lock_trace0(level, env, prefix, lock, __FUNCTION__, __LINE__)
59 * Adds lock slice to the compound lock.
61 * This is called by cl_object_operations::coo_lock_init() methods to add a
62 * per-layer state to the lock. New state is added at the end of
63 * cl_lock::cll_layers list, that is, it is at the bottom of the stack.
65 * \see cl_req_slice_add(), cl_page_slice_add(), cl_io_slice_add()
67 void cl_lock_slice_add(struct cl_lock *lock, struct cl_lock_slice *slice,
68 struct cl_object *obj,
69 const struct cl_lock_operations *ops)
72 slice->cls_lock = lock;
73 list_add_tail(&slice->cls_linkage, &lock->cll_layers);
78 EXPORT_SYMBOL(cl_lock_slice_add);
80 void cl_lock_fini(const struct lu_env *env, struct cl_lock *lock)
84 cl_lock_trace(D_DLMTRACE, env, "destroy lock", lock);
86 while (!list_empty(&lock->cll_layers)) {
87 struct cl_lock_slice *slice;
89 slice = list_entry(lock->cll_layers.next,
90 struct cl_lock_slice, cls_linkage);
91 list_del_init(lock->cll_layers.next);
92 slice->cls_ops->clo_fini(env, slice);
94 POISON(lock, 0x5a, sizeof(*lock));
97 EXPORT_SYMBOL(cl_lock_fini);
99 int cl_lock_init(const struct lu_env *env, struct cl_lock *lock,
100 const struct cl_io *io)
102 struct cl_object *obj = lock->cll_descr.cld_obj;
103 struct cl_object *scan;
107 /* Make sure cl_lock::cll_descr is initialized. */
108 LASSERT(obj != NULL);
110 INIT_LIST_HEAD(&lock->cll_layers);
111 cl_object_for_each(scan, obj) {
112 if (scan->co_ops->coo_lock_init != NULL)
113 result = scan->co_ops->coo_lock_init(env, scan, lock,
117 cl_lock_fini(env, lock);
123 EXPORT_SYMBOL(cl_lock_init);
126 * Returns a slice with a lock, corresponding to the given layer in the
131 const struct cl_lock_slice *cl_lock_at(const struct cl_lock *lock,
132 const struct lu_device_type *dtype)
134 const struct cl_lock_slice *slice;
138 list_for_each_entry(slice, &lock->cll_layers, cls_linkage) {
139 if (slice->cls_obj->co_lu.lo_dev->ld_type == dtype)
144 EXPORT_SYMBOL(cl_lock_at);
146 void cl_lock_cancel(const struct lu_env *env, struct cl_lock *lock)
148 const struct cl_lock_slice *slice;
151 cl_lock_trace(D_DLMTRACE, env, "cancel lock", lock);
152 list_for_each_entry_reverse(slice, &lock->cll_layers, cls_linkage) {
153 if (slice->cls_ops->clo_cancel != NULL)
154 slice->cls_ops->clo_cancel(env, slice);
159 EXPORT_SYMBOL(cl_lock_cancel);
163 * \param anchor: if we need to wait for resources before getting the lock,
164 * use @anchor for the purpose.
165 * \retval 0 enqueue successfully
166 * \retval <0 error code
168 int cl_lock_enqueue(const struct lu_env *env, struct cl_io *io,
169 struct cl_lock *lock, struct cl_sync_io *anchor)
171 const struct cl_lock_slice *slice;
176 list_for_each_entry(slice, &lock->cll_layers, cls_linkage) {
177 if (slice->cls_ops->clo_enqueue == NULL)
180 rc = slice->cls_ops->clo_enqueue(env, slice, io, anchor);
186 EXPORT_SYMBOL(cl_lock_enqueue);
189 * Main high-level entry point of cl_lock interface that finds existing or
190 * enqueues new lock matching given description.
192 int cl_lock_request(const struct lu_env *env, struct cl_io *io,
193 struct cl_lock *lock)
195 struct cl_sync_io *anchor = NULL;
196 __u32 enq_flags = lock->cll_descr.cld_enq_flags;
200 rc = cl_lock_init(env, lock, io);
204 if ((enq_flags & CEF_GLIMPSE) && !(enq_flags & CEF_SPECULATIVE)) {
205 anchor = &cl_env_info(env)->clt_anchor;
206 cl_sync_io_init(anchor, 1);
209 rc = cl_lock_enqueue(env, io, lock, anchor);
211 if (anchor != NULL) {
214 /* drop the reference count held at initialization time */
215 cl_sync_io_note(env, anchor, 0);
216 rc2 = cl_sync_io_wait(env, anchor, 0);
217 if (rc2 < 0 && rc == 0)
222 cl_lock_release(env, lock);
225 EXPORT_SYMBOL(cl_lock_request);
228 * Releases a hold and a reference on a lock, obtained by cl_lock_hold().
230 void cl_lock_release(const struct lu_env *env, struct cl_lock *lock)
234 cl_lock_trace(D_DLMTRACE, env, "release lock", lock);
235 cl_lock_cancel(env, lock);
236 cl_lock_fini(env, lock);
239 EXPORT_SYMBOL(cl_lock_release);
241 const char *cl_lock_mode_name(const enum cl_lock_mode mode)
243 static const char * const names[] = {
248 BUILD_BUG_ON(CLM_MAX != ARRAY_SIZE(names));
251 EXPORT_SYMBOL(cl_lock_mode_name);
254 * Prints human readable representation of a lock description.
256 void cl_lock_descr_print(const struct lu_env *env, void *cookie,
257 lu_printer_t printer,
258 const struct cl_lock_descr *descr)
260 const struct lu_fid *fid;
262 fid = lu_object_fid(&descr->cld_obj->co_lu);
263 (*printer)(env, cookie, DDESCR"@"DFID, PDESCR(descr), PFID(fid));
265 EXPORT_SYMBOL(cl_lock_descr_print);
268 * Prints human readable representation of \a lock to the \a f.
270 void cl_lock_print(const struct lu_env *env, void *cookie,
271 lu_printer_t printer, const struct cl_lock *lock)
273 const struct cl_lock_slice *slice;
275 (*printer)(env, cookie, "lock@%p", lock);
276 cl_lock_descr_print(env, cookie, printer, &lock->cll_descr);
277 (*printer)(env, cookie, " {\n");
279 list_for_each_entry(slice, &lock->cll_layers, cls_linkage) {
280 (*printer)(env, cookie, " %s@%p: ",
281 slice->cls_obj->co_lu.lo_dev->ld_type->ldt_name,
283 if (slice->cls_ops->clo_print != NULL)
284 slice->cls_ops->clo_print(env, cookie, printer, slice);
285 (*printer)(env, cookie, "\n");
287 (*printer)(env, cookie, "} lock@%p\n", lock);
289 EXPORT_SYMBOL(cl_lock_print);