Whamcloud - gitweb
LU-2237 tests: new test for re-recreating last_rcvd
[fs/lustre-release.git] / lustre / mdd / mdd_lock.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lustre/mdd/mdd_lock.c
35  *
36  * Lustre Metadata Server (mdd) routines
37  *
38  * Author: Mike Pershin <tappro@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_MDS
42
43 #include <linux/module.h>
44 #include <lustre_ver.h>
45 #include "mdd_internal.h"
46
47 void mdd_write_lock(const struct lu_env *env, struct mdd_object *obj,
48                     enum mdd_object_role role)
49 {
50         struct dt_object  *next = mdd_object_child(obj);
51
52         next->do_ops->do_write_lock(env, next, role);
53 }
54
55 void mdd_read_lock(const struct lu_env *env, struct mdd_object *obj,
56                    enum mdd_object_role role)
57 {
58         struct dt_object  *next = mdd_object_child(obj);
59
60         next->do_ops->do_read_lock(env, next, role);
61 }
62
63 void mdd_write_unlock(const struct lu_env *env, struct mdd_object *obj)
64 {
65         struct dt_object  *next = mdd_object_child(obj);
66
67         next->do_ops->do_write_unlock(env, next);
68 }
69
70 void mdd_read_unlock(const struct lu_env *env, struct mdd_object *obj)
71 {
72         struct dt_object  *next = mdd_object_child(obj);
73
74         next->do_ops->do_read_unlock(env, next);
75 }
76
77 int mdd_write_locked(const struct lu_env *env, struct mdd_object *obj)
78 {
79         struct dt_object  *next = mdd_object_child(obj);
80
81         return next->do_ops->do_write_locked(env, next);
82 }
83
84 unsigned long mdd_name2hash(const char *name)
85 {
86         return full_name_hash((unsigned char*)name, strlen(name));
87 }
88
89 /* Methods for parallel directory locking */
90 #if MDD_DISABLE_PDO_LOCK
91
92 static void *pdo_handle = (void *)0xbabecafe;
93
94 void mdd_pdlock_init(struct mdd_object *obj)
95 {
96 }
97
98 void *mdd_pdo_write_lock(const struct lu_env *env, struct mdd_object *obj,
99                          const char *name, enum mdd_object_role role)
100 {
101         return pdo_handle;
102 }
103
104 void *mdd_pdo_read_lock(const struct lu_env *env, struct mdd_object *obj,
105                         const char *name, enum mdd_object_role role)
106 {
107         return pdo_handle;
108 }
109
110 void mdd_pdo_write_unlock(const struct lu_env *env, struct mdd_object *obj,
111                           void *dlh)
112 {
113         LASSERT(dlh == pdo_handle);
114 }
115
116 void mdd_pdo_read_unlock(const struct lu_env *env, struct mdd_object *obj,
117                          void *dlh)
118 {
119         LASSERT(dlh == pdo_handle);
120 }
121
122 #else /* !MDD_DISABLE_PDO_LOCK */
123
124 #ifdef CONFIG_LOCKDEP
125 static struct lock_class_key mdd_pdirop_key;
126
127 #define RETIP ((unsigned long)__builtin_return_address(0))
128
129 static void mdd_lockdep_init(struct mdd_object *obj)
130 {
131         lockdep_set_class_and_name(obj, &mdd_pdirop_key, "pdir");
132 }
133
134 static void mdd_lockdep_pd_acquire(struct mdd_object *obj,
135                                    enum mdd_object_role role)
136 {
137 #ifdef HAVE_LOCK_MAP_ACQUIRE
138         lock_map_acquire(&obj->dep_map);
139 #else
140         lock_acquire(&obj->dep_map, role, 0, 1, 2, RETIP);
141 #endif
142 }
143
144 static void mdd_lockdep_pd_release(struct mdd_object *obj)
145 {
146 #ifdef HAVE_LOCK_MAP_ACQUIRE
147         lock_map_release(&obj->dep_map);
148 #else
149         lock_release(&obj->dep_map, 0, RETIP);
150 #endif
151 }
152
153 #else /* !CONFIG_LOCKDEP */
154
155 static void mdd_lockdep_init(struct mdd_object *obj)
156 {}
157 static void mdd_lockdep_pd_acquire(struct mdd_object *obj,
158                                    enum mdd_object_role role)
159 {}
160 static void mdd_lockdep_pd_release(struct mdd_object *obj)
161 {}
162
163 #endif /* !CONFIG_LOCKDEP */
164
165 void mdd_pdlock_init(struct mdd_object *obj)
166 {
167         dynlock_init(&obj->mod_pdlock);
168         mdd_lockdep_init(obj);
169 }
170
171 void *mdd_pdo_write_lock(const struct lu_env *env, struct mdd_object *obj,
172                          const char *name, enum mdd_object_role role)
173 {
174         struct dynlock_handle *handle;
175         unsigned long value = mdd_name2hash(name);
176
177         handle = dynlock_lock(&obj->mod_pdlock, value, DLT_WRITE, GFP_NOFS);
178         if (handle != NULL)
179                 mdd_lockdep_pd_acquire(obj, role);
180         return handle;
181 }
182
183 void *mdd_pdo_read_lock(const struct lu_env *env, struct mdd_object *obj,
184                         const char *name, enum mdd_object_role role)
185 {
186         struct dynlock_handle *handle;
187         unsigned long value = mdd_name2hash(name);
188         handle = dynlock_lock(&obj->mod_pdlock, value, DLT_READ, GFP_NOFS);
189         if (handle != NULL)
190                 mdd_lockdep_pd_acquire(obj, role);
191         return handle;
192 }
193
194 void mdd_pdo_write_unlock(const struct lu_env *env, struct mdd_object *obj,
195                           void *dlh)
196 {
197         mdd_lockdep_pd_release(obj);
198         return dynlock_unlock(&obj->mod_pdlock, dlh);
199 }
200
201 void mdd_pdo_read_unlock(const struct lu_env *env, struct mdd_object *obj,
202                          void *dlh)
203 {
204         mdd_lockdep_pd_release(obj);
205         return dynlock_unlock(&obj->mod_pdlock, dlh);
206 }
207
208 #endif /* MDD_DISABLE_PDO_LOCK */