Whamcloud - gitweb
LU-6142 ldlm: remove ldlm typedef usage from code
[fs/lustre-release.git] / lustre / ldlm / ldlm_plain.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
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
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ldlm/ldlm_plain.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  */
41
42 /**
43  * This file contains implementation of PLAIN lock type.
44  *
45  * PLAIN locks are the simplest form of LDLM locking, and are used when
46  * there only needs to be a single lock on a resource. This avoids some
47  * of the complexity of EXTENT and IBITS lock types, but doesn't allow
48  * different "parts" of a resource to be locked concurrently.  Example
49  * use cases for PLAIN locks include locking of MGS configuration logs
50  * and (as of Lustre 2.4) quota records.
51  */
52
53 #define DEBUG_SUBSYSTEM S_LDLM
54
55 #include <lustre_dlm.h>
56 #include <obd_support.h>
57 #include <lustre_lib.h>
58
59 #include "ldlm_internal.h"
60
61 #ifdef HAVE_SERVER_SUPPORT
62 /**
63  * Determine if the lock is compatible with all locks on the queue.
64  *
65  * If \a work_list is provided, conflicting locks are linked there.
66  * If \a work_list is not provided, we exit this function on first conflict.
67  *
68  * \retval 0 if there are conflicting locks in the \a queue
69  * \retval 1 if the lock is compatible to all locks in \a queue
70  */
71 static inline int
72 ldlm_plain_compat_queue(struct list_head *queue, struct ldlm_lock *req,
73                         struct list_head *work_list)
74 {
75         enum ldlm_mode req_mode = req->l_req_mode;
76         struct ldlm_lock *lock;
77         struct list_head *tmp;
78         int compat = 1;
79         ENTRY;
80
81         lockmode_verify(req_mode);
82
83         list_for_each_entry(lock, queue, l_res_link) {
84                 /* We stop walking the queue if we hit ourselves so we don't
85                  * take conflicting locks enqueued after us into account,
86                  * or we'd wait forever. */
87                 if (req == lock)
88                         RETURN(compat);
89
90                 /* Advance loop cursor to last lock of mode group. */
91                 tmp = &list_entry(lock->l_sl_mode.prev, struct ldlm_lock,
92                                   l_sl_mode)->l_res_link;
93
94                 if (lockmode_compat(lock->l_req_mode, req_mode))
95                         continue;
96
97                 if (!work_list)
98                         RETURN(0);
99
100                 compat = 0;
101
102                 /* Add locks of the mode group to \a work_list as
103                  * blocking locks for \a req. */
104                 if (lock->l_blocking_ast)
105                         ldlm_add_ast_work_item(lock, req, work_list);
106
107                 {
108                         struct list_head *head;
109
110                         head = &lock->l_sl_mode;
111                         list_for_each_entry(lock, head, l_sl_mode)
112                                 if (lock->l_blocking_ast)
113                                         ldlm_add_ast_work_item(lock, req,
114                                                                work_list);
115                 }
116         }
117
118         RETURN(compat);
119 }
120
121 /**
122  * Process a granting attempt for plain lock.
123  * Must be called with ns lock held.
124  *
125  * This function looks for any conflicts for \a lock in the granted or
126  * waiting queues. The lock is granted if no conflicts are found in
127  * either queue.
128  *
129  * If \a first_enq is 0 (ie, called from ldlm_reprocess_queue):
130  *   - blocking ASTs have already been sent
131  *
132  * If \a first_enq is 1 (ie, called from ldlm_lock_enqueue):
133  *   - blocking ASTs have not been sent yet, so list of conflicting locks
134  *     would be collected and ASTs sent.
135  */
136 int ldlm_process_plain_lock(struct ldlm_lock *lock, __u64 *flags,
137                             int first_enq, enum ldlm_error *err,
138                             struct list_head *work_list)
139 {
140         struct ldlm_resource *res = lock->l_resource;
141         struct list_head rpc_list;
142         int rc;
143         ENTRY;
144
145         LASSERT(lock->l_granted_mode != lock->l_req_mode);
146         check_res_locked(res);
147         LASSERT(list_empty(&res->lr_converting));
148         INIT_LIST_HEAD(&rpc_list);
149
150         if (!first_enq) {
151                 LASSERT(work_list != NULL);
152                 rc = ldlm_plain_compat_queue(&res->lr_granted, lock, NULL);
153                 if (!rc)
154                         RETURN(LDLM_ITER_STOP);
155                 rc = ldlm_plain_compat_queue(&res->lr_waiting, lock, NULL);
156                 if (!rc)
157                         RETURN(LDLM_ITER_STOP);
158
159                 ldlm_resource_unlink_lock(lock);
160                 ldlm_grant_lock(lock, work_list);
161                 RETURN(LDLM_ITER_CONTINUE);
162         }
163
164  restart:
165         rc = ldlm_plain_compat_queue(&res->lr_granted, lock, &rpc_list);
166         rc += ldlm_plain_compat_queue(&res->lr_waiting, lock, &rpc_list);
167
168         if (rc != 2) {
169                 /* If either of the compat_queue()s returned 0, then we
170                  * have ASTs to send and must go onto the waiting list.
171                  *
172                  * bug 2322: we used to unlink and re-add here, which was a
173                  * terrible folly -- if we goto restart, we could get
174                  * re-ordered!  Causes deadlock, because ASTs aren't sent! */
175                 if (list_empty(&lock->l_res_link))
176                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
177                 unlock_res(res);
178                 rc = ldlm_run_ast_work(ldlm_res_to_ns(res), &rpc_list,
179                                        LDLM_WORK_BL_AST);
180                 lock_res(res);
181                 if (rc == -ERESTART)
182                         GOTO(restart, rc);
183                 *flags |= LDLM_FL_BLOCK_GRANTED;
184         } else {
185                 ldlm_resource_unlink_lock(lock);
186                 ldlm_grant_lock(lock, NULL);
187         }
188         RETURN(0);
189 }
190 #endif /* HAVE_SERVER_SUPPORT */
191
192 void ldlm_plain_policy_wire_to_local(const union ldlm_wire_policy_data *wpolicy,
193                                      union ldlm_policy_data *lpolicy)
194 {
195         /* No policy for plain locks */
196 }
197
198 void ldlm_plain_policy_local_to_wire(const union ldlm_policy_data *lpolicy,
199                                      union ldlm_wire_policy_data *wpolicy)
200 {
201         /* No policy for plain locks */
202 }