Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / ldlm / ldlm_resource.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Phil Schwan <phil@clusterfs.com>
6  *   Author: Peter Braam <braam@clusterfs.com>
7  *
8  *   This file is part of the Lustre file system, http://www.lustre.org
9  *   Lustre is a trademark of Cluster File Systems, Inc.
10  *
11  *   You may have signed or agreed to another license before downloading
12  *   this software.  If so, you are bound by the terms and conditions
13  *   of that agreement, and the following does not apply to you.  See the
14  *   LICENSE file included with this distribution for more information.
15  *
16  *   If you did not agree to a different license, then this copy of Lustre
17  *   is open source software; you can redistribute it and/or modify it
18  *   under the terms of version 2 of the GNU General Public License as
19  *   published by the Free Software Foundation.
20  *
21  *   In either case, Lustre is distributed in the hope that it will be
22  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
23  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  *   license text for more details.
25  */
26
27 #define DEBUG_SUBSYSTEM S_LDLM
28 #ifdef __KERNEL__
29 # include <lustre_dlm.h>
30 #else
31 # include <liblustre.h>
32 #endif
33
34 #include <obd_class.h>
35 #include "ldlm_internal.h"
36
37 cfs_mem_cache_t *ldlm_resource_slab, *ldlm_lock_slab;
38
39 atomic_t ldlm_srv_namespace_nr = ATOMIC_INIT(0);
40 atomic_t ldlm_cli_namespace_nr = ATOMIC_INIT(0);
41
42 struct semaphore ldlm_srv_namespace_lock;
43 CFS_LIST_HEAD(ldlm_srv_namespace_list);
44
45 struct semaphore ldlm_cli_namespace_lock;
46 CFS_LIST_HEAD(ldlm_cli_namespace_list);
47
48 cfs_proc_dir_entry_t *ldlm_type_proc_dir = NULL;
49 cfs_proc_dir_entry_t *ldlm_ns_proc_dir = NULL;
50 cfs_proc_dir_entry_t *ldlm_svc_proc_dir = NULL;
51
52 #ifdef LPROCFS
53 static int ldlm_proc_dump_ns(struct file *file, const char *buffer,
54                              unsigned long count, void *data)
55 {
56         ldlm_dump_all_namespaces(LDLM_NAMESPACE_SERVER, D_DLMTRACE);
57         ldlm_dump_all_namespaces(LDLM_NAMESPACE_CLIENT, D_DLMTRACE);
58         RETURN(count);
59 }
60
61 int ldlm_proc_setup(void)
62 {
63         int rc;
64         struct lprocfs_vars list[] = {
65                 { "dump_namespaces", NULL, ldlm_proc_dump_ns, NULL },
66                 { NULL }};
67         ENTRY;
68         LASSERT(ldlm_ns_proc_dir == NULL);
69
70         ldlm_type_proc_dir = lprocfs_register(OBD_LDLM_DEVICENAME,
71                                               proc_lustre_root,
72                                               NULL, NULL);
73         if (IS_ERR(ldlm_type_proc_dir)) {
74                 CERROR("LProcFS failed in ldlm-init\n");
75                 rc = PTR_ERR(ldlm_type_proc_dir);
76                 GOTO(err, rc);
77         }
78
79         ldlm_ns_proc_dir = lprocfs_register("namespaces",
80                                             ldlm_type_proc_dir,
81                                             NULL, NULL);
82         if (IS_ERR(ldlm_ns_proc_dir)) {
83                 CERROR("LProcFS failed in ldlm-init\n");
84                 rc = PTR_ERR(ldlm_ns_proc_dir);
85                 GOTO(err_type, rc);
86         }
87
88         ldlm_svc_proc_dir = lprocfs_register("services",
89                                             ldlm_type_proc_dir,
90                                             NULL, NULL);
91         if (IS_ERR(ldlm_svc_proc_dir)) {
92                 CERROR("LProcFS failed in ldlm-init\n");
93                 rc = PTR_ERR(ldlm_svc_proc_dir);
94                 GOTO(err_ns, rc);
95         }
96
97         rc = lprocfs_add_vars(ldlm_type_proc_dir, list, NULL);
98
99         RETURN(0);
100
101 err_ns:
102         lprocfs_remove(&ldlm_ns_proc_dir);
103 err_type:
104         lprocfs_remove(&ldlm_type_proc_dir);
105 err:
106         ldlm_svc_proc_dir = NULL;
107         RETURN(rc);
108 }
109
110 void ldlm_proc_cleanup(void)
111 {
112         if (ldlm_svc_proc_dir)
113                 lprocfs_remove(&ldlm_svc_proc_dir);
114
115         if (ldlm_ns_proc_dir)
116                 lprocfs_remove(&ldlm_ns_proc_dir);
117
118         if (ldlm_type_proc_dir)
119                 lprocfs_remove(&ldlm_type_proc_dir);
120 }
121
122 static int lprocfs_rd_lru_size(char *page, char **start, off_t off,
123                                int count, int *eof, void *data)
124 {
125         struct ldlm_namespace *ns = data;
126         __u32 *nr = &ns->ns_max_unused;
127
128         if (ns_connect_lru_resize(ns))
129                 nr = &ns->ns_nr_unused;
130         return lprocfs_rd_uint(page, start, off, count, eof, nr);
131 }
132
133 static int lprocfs_wr_lru_size(struct file *file, const char *buffer,
134                                unsigned long count, void *data)
135 {
136         struct ldlm_namespace *ns = data;
137         char dummy[MAX_STRING_SIZE + 1], *end;
138         unsigned long tmp;
139         int lru_resize;
140
141         dummy[MAX_STRING_SIZE] = '\0';
142         if (copy_from_user(dummy, buffer, MAX_STRING_SIZE))
143                 return -EFAULT;
144
145         if (count == 6 && memcmp(dummy, "clear", 5) == 0) {
146                 CDEBUG(D_DLMTRACE,
147                        "dropping all unused locks from namespace %s\n",
148                        ns->ns_name);
149                 if (ns_connect_lru_resize(ns)) {
150                         int canceled, unused  = ns->ns_nr_unused;
151                         
152                         /* Try to cancel all @ns_nr_unused locks. */
153                         canceled = ldlm_cancel_lru(ns, unused, LDLM_SYNC, 
154                                                    LDLM_CANCEL_PASSED);
155                         if (canceled < unused) {
156                                 CERROR("not all requested locks are canceled, "
157                                        "requested: %d, canceled: %d\n", unused, 
158                                        canceled);
159                                 return -EINVAL;
160                         }
161                 } else {
162                         tmp = ns->ns_max_unused;
163                         ns->ns_max_unused = 0;
164                         ldlm_cancel_lru(ns, 0, LDLM_SYNC, LDLM_CANCEL_PASSED);
165                         ns->ns_max_unused = tmp;
166                 }
167                 return count;
168         }
169
170         tmp = simple_strtoul(dummy, &end, 0);
171         if (dummy == end) {
172                 CERROR("invalid value written\n");
173                 return -EINVAL;
174         }
175         lru_resize = (tmp == 0);
176         
177         if (ns_connect_lru_resize(ns)) {
178                 if (!lru_resize)
179                         ns->ns_max_unused = (unsigned int)tmp;
180                         
181                 if (tmp > ns->ns_nr_unused)
182                         tmp = ns->ns_nr_unused;
183                 tmp = ns->ns_nr_unused - tmp;
184                 
185                 CDEBUG(D_DLMTRACE, "changing namespace %s unused locks from %u to %u\n", 
186                        ns->ns_name, ns->ns_nr_unused, (unsigned int)tmp);
187                 ldlm_cancel_lru(ns, (unsigned int)tmp, LDLM_ASYNC, LDLM_CANCEL_PASSED);
188                 
189                 if (!lru_resize) {
190                         CDEBUG(D_DLMTRACE, "disable lru_resize for namespace %s\n", 
191                                ns->ns_name);
192                         ns->ns_connect_flags &= ~OBD_CONNECT_LRU_RESIZE;
193                 }
194         } else {
195                 CDEBUG(D_DLMTRACE, "changing namespace %s max_unused from %u to %u\n",
196                        ns->ns_name, ns->ns_max_unused, (unsigned int)tmp);
197                 ns->ns_max_unused = (unsigned int)tmp;
198                 ldlm_cancel_lru(ns, 0, LDLM_ASYNC, LDLM_CANCEL_PASSED);
199                 
200                 /* Make sure that originally lru resize was supported before 
201                  * turning it on here. */
202                 if (lru_resize && 
203                     (ns->ns_orig_connect_flags & OBD_CONNECT_LRU_RESIZE)) {
204                         CDEBUG(D_DLMTRACE, "enable lru_resize for namespace %s\n", 
205                                ns->ns_name);
206                         ns->ns_connect_flags |= OBD_CONNECT_LRU_RESIZE;
207                 }
208         }
209
210         return count;
211 }
212
213 void ldlm_proc_namespace(struct ldlm_namespace *ns)
214 {
215         struct lprocfs_vars lock_vars[2];
216         char lock_name[MAX_STRING_SIZE + 1];
217
218         LASSERT(ns != NULL);
219         LASSERT(ns->ns_name != NULL);
220
221         lock_name[MAX_STRING_SIZE] = '\0';
222
223         memset(lock_vars, 0, sizeof(lock_vars));
224         lock_vars[0].name = lock_name;
225
226         snprintf(lock_name, MAX_STRING_SIZE, "%s/resource_count", ns->ns_name);
227         lock_vars[0].data = &ns->ns_refcount;
228         lock_vars[0].read_fptr = lprocfs_rd_atomic;
229         lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
230
231         snprintf(lock_name, MAX_STRING_SIZE, "%s/lock_count", ns->ns_name);
232         lock_vars[0].data = &ns->ns_locks;
233         lock_vars[0].read_fptr = lprocfs_rd_atomic;
234         lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
235
236         if (ns_is_client(ns)) {
237                 snprintf(lock_name, MAX_STRING_SIZE, "%s/lock_unused_count",
238                          ns->ns_name);
239                 lock_vars[0].data = &ns->ns_nr_unused;
240                 lock_vars[0].read_fptr = lprocfs_rd_uint;
241                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
242
243                 snprintf(lock_name, MAX_STRING_SIZE, "%s/lru_size",
244                          ns->ns_name);
245                 lock_vars[0].data = ns;
246                 lock_vars[0].read_fptr = lprocfs_rd_lru_size;
247                 lock_vars[0].write_fptr = lprocfs_wr_lru_size;
248                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
249
250                 snprintf(lock_name, MAX_STRING_SIZE, "%s/shrink_thumb",
251                          ns->ns_name);
252                 lock_vars[0].data = ns;
253                 lock_vars[0].read_fptr = lprocfs_rd_uint;
254                 lock_vars[0].write_fptr = lprocfs_wr_uint;
255                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
256
257                 snprintf(lock_name, MAX_STRING_SIZE, "%s/lru_max_age",
258                          ns->ns_name);
259                 lock_vars[0].data = &ns->ns_max_age;
260                 lock_vars[0].read_fptr = lprocfs_rd_uint;
261                 lock_vars[0].write_fptr = lprocfs_wr_uint;
262                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
263         } else {
264                 snprintf(lock_name, MAX_STRING_SIZE, "%s/ctime_age_limit",
265                          ns->ns_name);
266                 lock_vars[0].data = &ns->ns_ctime_age_limit;
267                 lock_vars[0].read_fptr = lprocfs_rd_uint;
268                 lock_vars[0].write_fptr = lprocfs_wr_uint;
269                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
270
271                 snprintf(lock_name, MAX_STRING_SIZE, "%s/max_nolock_bytes",
272                          ns->ns_name);
273                 lock_vars[0].data = &ns->ns_max_nolock_size;
274                 lock_vars[0].read_fptr = lprocfs_rd_uint;
275                 lock_vars[0].write_fptr = lprocfs_wr_uint;
276                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
277
278                 snprintf(lock_name, MAX_STRING_SIZE, "%s/contention_seconds",
279                          ns->ns_name);
280                 lock_vars[0].data = &ns->ns_contention_time;
281                 lock_vars[0].read_fptr = lprocfs_rd_uint;
282                 lock_vars[0].write_fptr = lprocfs_wr_uint;
283                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
284
285                 snprintf(lock_name, MAX_STRING_SIZE, "%s/contended_locks",
286                          ns->ns_name);
287                 lock_vars[0].data = &ns->ns_contended_locks;
288                 lock_vars[0].read_fptr = lprocfs_rd_uint;
289                 lock_vars[0].write_fptr = lprocfs_wr_uint;
290                 lprocfs_add_vars(ldlm_ns_proc_dir, lock_vars, 0);
291         }
292 }
293 #undef MAX_STRING_SIZE
294 #else
295 #define ldlm_proc_namespace(ns) do {} while (0)
296 #endif /* LPROCFS */
297
298 struct ldlm_namespace *ldlm_namespace_new(char *name, ldlm_side_t client, 
299                                           ldlm_appetite_t apt)
300 {
301         struct ldlm_namespace *ns = NULL;
302         struct list_head *bucket;
303         int rc, idx, namelen;
304         ENTRY;
305
306         rc = ldlm_get_ref();
307         if (rc) {
308                 CERROR("ldlm_get_ref failed: %d\n", rc);
309                 RETURN(NULL);
310         }
311
312         OBD_ALLOC_PTR(ns);
313         if (!ns)
314                 GOTO(out_ref, NULL);
315
316         OBD_VMALLOC(ns->ns_hash, sizeof(*ns->ns_hash) * RES_HASH_SIZE);
317         if (!ns->ns_hash)
318                 GOTO(out_ns, NULL);
319
320         ns->ns_shrink_thumb = LDLM_LOCK_SHRINK_THUMB;
321         ns->ns_appetite = apt;
322         namelen = strlen(name);
323         OBD_ALLOC(ns->ns_name, namelen + 1);
324         if (!ns->ns_name)
325                 GOTO(out_hash, NULL);
326
327         strcpy(ns->ns_name, name);
328
329         CFS_INIT_LIST_HEAD(&ns->ns_root_list);
330         ns->ns_refcount = 0;
331         ns->ns_client = client;
332         spin_lock_init(&ns->ns_hash_lock);
333         atomic_set(&ns->ns_locks, 0);
334         ns->ns_resources = 0;
335         cfs_waitq_init(&ns->ns_waitq);
336         ns->ns_max_nolock_size = NS_DEFAULT_MAX_NOLOCK_BYTES;
337         ns->ns_contention_time = NS_DEFAULT_CONTENTION_SECONDS;
338         ns->ns_contended_locks = NS_DEFAULT_CONTENDED_LOCKS;
339
340         for (bucket = ns->ns_hash + RES_HASH_SIZE - 1; bucket >= ns->ns_hash;
341              bucket--)
342                 CFS_INIT_LIST_HEAD(bucket);
343
344         CFS_INIT_LIST_HEAD(&ns->ns_unused_list);
345         ns->ns_nr_unused = 0;
346         ns->ns_max_unused = LDLM_DEFAULT_LRU_SIZE;
347         ns->ns_max_age = LDLM_DEFAULT_MAX_ALIVE;
348         ns->ns_ctime_age_limit = LDLM_CTIME_AGE_LIMIT;
349         spin_lock_init(&ns->ns_unused_lock);
350         ns->ns_orig_connect_flags = 0;
351         ns->ns_connect_flags = 0;
352         ldlm_proc_namespace(ns);
353
354         idx = atomic_read(ldlm_namespace_nr(client));
355         rc = ldlm_pool_init(&ns->ns_pool, ns, idx, client);
356         if (rc) {
357                 CERROR("Can't initialize lock pool, rc %d\n", rc);
358                 GOTO(out_proc, rc);
359         }
360
361         mutex_down(ldlm_namespace_lock(client));
362         list_add(&ns->ns_list_chain, ldlm_namespace_list(client));
363         atomic_inc(ldlm_namespace_nr(client));
364         mutex_up(ldlm_namespace_lock(client));
365
366         RETURN(ns);
367 out_proc:
368         ldlm_namespace_cleanup(ns, 0);
369         OBD_FREE(ns->ns_name, namelen + 1);
370 out_hash:
371         OBD_VFREE(ns->ns_hash, sizeof(*ns->ns_hash) * RES_HASH_SIZE);
372 out_ns:
373         OBD_FREE_PTR(ns);
374 out_ref:
375         ldlm_put_ref();
376         RETURN(NULL);
377 }
378
379 extern struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock);
380
381 /* If flags contains FL_LOCAL_ONLY, don't try to tell the server, just cleanup.
382  * This is currently only used for recovery, and we make certain assumptions
383  * as a result--notably, that we shouldn't cancel locks with refs. -phil
384  *
385  * Called with the ns_lock held. */
386 static void cleanup_resource(struct ldlm_resource *res, struct list_head *q,
387                              int flags)
388 {
389         struct list_head *tmp;
390         int rc = 0, client = ns_is_client(res->lr_namespace);
391         int local_only = (flags & LDLM_FL_LOCAL_ONLY);
392         ENTRY;
393
394
395         do {
396                 struct ldlm_lock *lock = NULL;
397
398                 /* first, we look for non-cleaned-yet lock
399                  * all cleaned locks are marked by CLEANED flag */
400                 lock_res(res);
401                 list_for_each(tmp, q) {
402                         lock = list_entry(tmp, struct ldlm_lock, l_res_link);
403                         if (lock->l_flags & LDLM_FL_CLEANED) {
404                                 lock = NULL;
405                                 continue;
406                         }
407                         LDLM_LOCK_GET(lock);
408                         lock->l_flags |= LDLM_FL_CLEANED;
409                         break;
410                 }
411
412                 if (lock == NULL) {
413                         unlock_res(res);
414                         break;
415                 }
416
417                 /* Set CBPENDING so nothing in the cancellation path
418                  * can match this lock */
419                 lock->l_flags |= LDLM_FL_CBPENDING;
420                 lock->l_flags |= LDLM_FL_FAILED;
421                 lock->l_flags |= flags;
422
423                 /* ... without sending a CANCEL message for local_only. */
424                 if (local_only)
425                         lock->l_flags |= LDLM_FL_LOCAL_ONLY;
426
427                 if (local_only && (lock->l_readers || lock->l_writers)) {
428                         /* This is a little bit gross, but much better than the
429                          * alternative: pretend that we got a blocking AST from
430                          * the server, so that when the lock is decref'd, it
431                          * will go away ... */
432                         unlock_res(res);
433                         LDLM_DEBUG(lock, "setting FL_LOCAL_ONLY");
434                         if (lock->l_completion_ast)
435                                 lock->l_completion_ast(lock, 0, NULL);
436                         LDLM_LOCK_PUT(lock);
437                         continue;
438                 }
439
440                 if (client) {
441                         struct lustre_handle lockh;
442
443                         unlock_res(res);
444                         ldlm_lock2handle(lock, &lockh);
445                         rc = ldlm_cli_cancel(&lockh);
446                         if (rc)
447                                 CERROR("ldlm_cli_cancel: %d\n", rc);
448                 } else {
449                         ldlm_resource_unlink_lock(lock);
450                         unlock_res(res);
451                         LDLM_DEBUG(lock, "Freeing a lock still held by a "
452                                    "client node");
453                         ldlm_lock_destroy(lock);
454                 }
455                 LDLM_LOCK_PUT(lock);
456         } while (1);
457
458         EXIT;
459 }
460
461 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, int flags)
462 {
463         struct list_head *tmp;
464         int i;
465
466         if (ns == NULL) {
467                 CDEBUG(D_INFO, "NULL ns, skipping cleanup\n");
468                 return ELDLM_OK;
469         }
470
471         for (i = 0; i < RES_HASH_SIZE; i++) {
472                 spin_lock(&ns->ns_hash_lock);
473                 tmp = ns->ns_hash[i].next;
474                 while (tmp != &(ns->ns_hash[i])) {
475                         struct ldlm_resource *res;
476                         res = list_entry(tmp, struct ldlm_resource, lr_hash);
477                         ldlm_resource_getref(res);
478                         spin_unlock(&ns->ns_hash_lock);
479
480                         cleanup_resource(res, &res->lr_granted, flags);
481                         cleanup_resource(res, &res->lr_converting, flags);
482                         cleanup_resource(res, &res->lr_waiting, flags);
483
484                         spin_lock(&ns->ns_hash_lock);
485                         tmp  = tmp->next;
486
487                         /* XXX: former stuff caused issues in case of race
488                          * between ldlm_namespace_cleanup() and lockd() when
489                          * client gets blocking ast when lock gets distracted by
490                          * server. This is 1_4 branch solution, let's see how
491                          * will it behave. */
492                         if (!ldlm_resource_putref_locked(res))
493                                 CDEBUG(D_INFO,
494                                        "Namespace %s resource refcount nonzero "
495                                        "(%d) after lock cleanup; forcing cleanup.\n",
496                                        ns->ns_name, atomic_read(&res->lr_refcount));
497                 }
498                 spin_unlock(&ns->ns_hash_lock);
499         }
500
501         return ELDLM_OK;
502 }
503
504 static int __ldlm_namespace_free(struct ldlm_namespace *ns, int force)
505 {
506         ENTRY;
507
508         /* At shutdown time, don't call the cancellation callback */
509         ldlm_namespace_cleanup(ns, force ? LDLM_FL_LOCAL_ONLY : 0);
510
511         if (ns->ns_refcount > 0) {
512                 struct l_wait_info lwi = LWI_INTR(LWI_ON_SIGNAL_NOOP, NULL);
513                 int rc;
514                 CDEBUG(D_DLMTRACE,
515                        "dlm namespace %s free waiting on refcount %d\n",
516                        ns->ns_name, ns->ns_refcount);
517 force_wait:
518                 if (force)
519                         lwi = LWI_TIMEOUT(obd_timeout * HZ / 4, NULL, NULL);
520
521                 rc = l_wait_event(ns->ns_waitq,
522                                   ns->ns_refcount == 0, &lwi);
523
524                 /* Forced cleanups should be able to reclaim all references,
525                  * so it's safe to wait forever... we can't leak locks... */
526                 if (force && rc == -ETIMEDOUT) {
527                         LCONSOLE_ERROR("Forced cleanup waiting for %s "
528                                        "namespace with %d resources in use, "
529                                        "(rc=%d)\n", ns->ns_name,
530                                        ns->ns_refcount, rc);
531                         GOTO(force_wait, rc);
532                 }
533
534                 if (ns->ns_refcount) {
535                         LCONSOLE_ERROR("Cleanup waiting for %s namespace "
536                                        "with %d resources in use, (rc=%d)\n",
537                                        ns->ns_name,
538                                        ns->ns_refcount, rc);
539                         RETURN(ELDLM_NAMESPACE_EXISTS);
540                 }
541                 CDEBUG(D_DLMTRACE,
542                        "dlm namespace %s free done waiting\n", ns->ns_name);
543         }
544
545         RETURN(ELDLM_OK);
546 }
547
548 void ldlm_namespace_free_prior(struct ldlm_namespace *ns, 
549                                struct obd_import *imp, 
550                                int force)
551 {
552         int rc;
553         ENTRY;
554         if (!ns) {
555                 EXIT;
556                 return;
557         }
558
559         /* Can fail with -EINTR when force == 0 in which case try harder */
560         rc = __ldlm_namespace_free(ns, force);
561         if (rc != ELDLM_OK) {
562                 if (imp) {
563                         ptlrpc_disconnect_import(imp, 0);
564                         ptlrpc_invalidate_import(imp);
565                 }
566
567                 /* With all requests dropped and the import inactive
568                  * we are gaurenteed all reference will be dropped. */
569                 rc = __ldlm_namespace_free(ns, 1);
570                 LASSERT(rc == 0);
571         }
572         EXIT;
573 }
574
575 void ldlm_namespace_free_post(struct ldlm_namespace *ns)
576 {
577         ENTRY;
578         if (!ns) {
579                 EXIT;
580                 return;
581         }
582
583         mutex_down(ldlm_namespace_lock(ns->ns_client));
584         /*
585          * Some asserts and possibly other parts of code still using 
586          * list_empty(&ns->ns_list_chain). This is why it is important
587          * to use list_del_init() here.
588          */
589         list_del_init(&ns->ns_list_chain);
590         atomic_dec(ldlm_namespace_nr(ns->ns_client));
591         ldlm_pool_fini(&ns->ns_pool);
592         mutex_up(ldlm_namespace_lock(ns->ns_client));
593 #ifdef LPROCFS
594         {
595                 struct proc_dir_entry *dir;
596                 dir = lprocfs_srch(ldlm_ns_proc_dir, ns->ns_name);
597                 if (dir == NULL) {
598                         CERROR("dlm namespace %s has no procfs dir?\n",
599                                ns->ns_name);
600                 } else {
601                         lprocfs_remove(&dir);
602                 }
603         }
604 #endif
605
606         OBD_VFREE(ns->ns_hash, sizeof(*ns->ns_hash) * RES_HASH_SIZE);
607         OBD_FREE(ns->ns_name, strlen(ns->ns_name) + 1);
608         /* 
609          * @ns should be not on list in this time, otherwise this will cause
610          * issues realted to using freed @ns in pools thread. 
611          */
612         LASSERT(list_empty(&ns->ns_list_chain));
613         OBD_FREE_PTR(ns);
614         ldlm_put_ref();
615         EXIT;
616 }
617
618
619 /* Cleanup the resource, and free namespace.
620  * bug 12864:
621  * Deadlock issue:
622  * proc1: destroy import
623  *        class_disconnect_export(grab cl_sem) ->
624  *              -> ldlm_namespace_free ->
625  *              -> lprocfs_remove(grab _lprocfs_lock).
626  * proc2: read proc info
627  *        lprocfs_fops_read(grab _lprocfs_lock) ->
628  *              -> osc_rd_active, etc(grab cl_sem).
629  *
630  * So that I have to split the ldlm_namespace_free into two parts - the first
631  * part ldlm_namespace_free_prior is used to cleanup the resource which is
632  * being used; the 2nd part ldlm_namespace_free_post is used to unregister the
633  * lprocfs entries, and then free memory. It will be called w/o cli->cl_sem
634  * held.
635  */
636 void ldlm_namespace_free(struct ldlm_namespace *ns, 
637                          struct obd_import *imp,
638                          int force)
639 {
640         ldlm_namespace_free_prior(ns, imp, force);
641         ldlm_namespace_free_post(ns);
642 }
643
644
645 void ldlm_namespace_get_nolock(struct ldlm_namespace *ns)
646 {
647         LASSERT(ns->ns_refcount >= 0);
648         ns->ns_refcount++;
649 }
650
651 void ldlm_namespace_get(struct ldlm_namespace *ns)
652 {
653         spin_lock(&ns->ns_hash_lock);
654         ldlm_namespace_get_nolock(ns);
655         spin_unlock(&ns->ns_hash_lock);
656 }
657
658 void ldlm_namespace_put_nolock(struct ldlm_namespace *ns, int wakeup)
659 {
660         LASSERT(ns->ns_refcount > 0);
661         ns->ns_refcount--;
662         if (ns->ns_refcount == 0 && wakeup)
663                 wake_up(&ns->ns_waitq);
664 }
665
666 void ldlm_namespace_put(struct ldlm_namespace *ns, int wakeup)
667 {
668         spin_lock(&ns->ns_hash_lock);
669         ldlm_namespace_put_nolock(ns, wakeup);
670         spin_unlock(&ns->ns_hash_lock);
671 }
672
673 /* Should be called under ldlm_namespace_lock(client) taken */
674 void ldlm_namespace_move(struct ldlm_namespace *ns, ldlm_side_t client)
675 {
676         LASSERT(!list_empty(&ns->ns_list_chain));
677         LASSERT_SEM_LOCKED(ldlm_namespace_lock(client));
678         list_move_tail(&ns->ns_list_chain, ldlm_namespace_list(client));
679 }
680
681 /* Should be called under ldlm_namespace_lock(client) taken */
682 struct ldlm_namespace *ldlm_namespace_first(ldlm_side_t client)
683 {
684         LASSERT_SEM_LOCKED(ldlm_namespace_lock(client));
685         LASSERT(!list_empty(ldlm_namespace_list(client)));
686         return container_of(ldlm_namespace_list(client)->next, 
687                 struct ldlm_namespace, ns_list_chain);
688 }
689 static __u32 ldlm_hash_fn(struct ldlm_resource *parent,
690                           const struct ldlm_res_id *name)
691 {
692         __u32 hash = 0;
693         int i;
694
695         for (i = 0; i < RES_NAME_SIZE; i++)
696                 hash += name->name[i];
697
698         hash += (__u32)((unsigned long)parent >> 4);
699
700         return (hash & RES_HASH_MASK);
701 }
702
703 static struct ldlm_resource *ldlm_resource_new(void)
704 {
705         struct ldlm_resource *res;
706         int idx;
707
708         OBD_SLAB_ALLOC(res, ldlm_resource_slab, CFS_ALLOC_IO, sizeof *res);
709         if (res == NULL)
710                 return NULL;
711
712         memset(res, 0, sizeof(*res));
713
714         CFS_INIT_LIST_HEAD(&res->lr_children);
715         CFS_INIT_LIST_HEAD(&res->lr_childof);
716         CFS_INIT_LIST_HEAD(&res->lr_granted);
717         CFS_INIT_LIST_HEAD(&res->lr_converting);
718         CFS_INIT_LIST_HEAD(&res->lr_waiting);
719
720         /* initialize interval trees for each lock mode*/
721         for (idx = 0; idx < LCK_MODE_NUM; idx++) {
722                 res->lr_itree[idx].lit_size = 0;
723                 res->lr_itree[idx].lit_mode = 1 << idx;
724                 res->lr_itree[idx].lit_root = NULL;
725         }
726
727         atomic_set(&res->lr_refcount, 1);
728         spin_lock_init(&res->lr_lock);
729
730         /* one who creates the resource must unlock
731          * the semaphore after lvb initialization */
732         init_MUTEX_LOCKED(&res->lr_lvb_sem);
733
734         return res;
735 }
736
737 /* must be called with hash lock held */
738 static struct ldlm_resource *
739 ldlm_resource_find(struct ldlm_namespace *ns, const struct ldlm_res_id *name,
740                    __u32 hash)
741 {
742         struct list_head *bucket, *tmp;
743         struct ldlm_resource *res;
744
745         LASSERT_SPIN_LOCKED(&ns->ns_hash_lock);
746         bucket = ns->ns_hash + hash;
747
748         list_for_each(tmp, bucket) {
749                 res = list_entry(tmp, struct ldlm_resource, lr_hash);
750                 if (memcmp(&res->lr_name, name, sizeof(res->lr_name)) == 0)
751                         return res;
752         }
753
754         return NULL;
755 }
756
757 /* Args: locked namespace
758  * Returns: newly-allocated, referenced, unlocked resource */
759 static struct ldlm_resource *
760 ldlm_resource_add(struct ldlm_namespace *ns, struct ldlm_resource *parent,
761                   const struct ldlm_res_id *name, __u32 hash, ldlm_type_t type)
762 {
763         struct list_head *bucket;
764         struct ldlm_resource *res, *old_res;
765         ENTRY;
766
767         LASSERTF(type >= LDLM_MIN_TYPE && type < LDLM_MAX_TYPE,
768                  "type: %d\n", type);
769
770         res = ldlm_resource_new();
771         if (!res)
772                 RETURN(NULL);
773
774         res->lr_name = *name;
775         res->lr_namespace = ns;
776         res->lr_type = type;
777         res->lr_most_restr = LCK_NL;
778
779         spin_lock(&ns->ns_hash_lock);
780         old_res = ldlm_resource_find(ns, name, hash);
781         if (old_res) {
782                 /* someone won the race and added the resource before */
783                 ldlm_resource_getref(old_res);
784                 spin_unlock(&ns->ns_hash_lock);
785                 OBD_SLAB_FREE(res, ldlm_resource_slab, sizeof *res);
786                 /* synchronize WRT resource creation */
787                 if (ns->ns_lvbo && ns->ns_lvbo->lvbo_init) {
788                         down(&old_res->lr_lvb_sem);
789                         up(&old_res->lr_lvb_sem);
790                 }
791                 RETURN(old_res);
792         }
793
794         /* we won! let's add the resource */
795         bucket = ns->ns_hash + hash;
796         list_add(&res->lr_hash, bucket);
797         ns->ns_resources++;
798         ldlm_namespace_get_nolock(ns);
799
800         if (parent == NULL) {
801                 list_add(&res->lr_childof, &ns->ns_root_list);
802         } else {
803                 res->lr_parent = parent;
804                 list_add(&res->lr_childof, &parent->lr_children);
805         }
806         spin_unlock(&ns->ns_hash_lock);
807
808         if (ns->ns_lvbo && ns->ns_lvbo->lvbo_init) {
809                 int rc;
810
811                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_CREATE_RESOURCE, 2);
812                 rc = ns->ns_lvbo->lvbo_init(res);
813                 if (rc)
814                         CERROR("lvbo_init failed for resource "
815                                LPU64": rc %d\n", name->name[0], rc);
816                 /* we create resource with locked lr_lvb_sem */
817                 up(&res->lr_lvb_sem);
818         }
819
820         RETURN(res);
821 }
822
823 /* Args: unlocked namespace
824  * Locks: takes and releases ns->ns_lock and res->lr_lock
825  * Returns: referenced, unlocked ldlm_resource or NULL */
826 struct ldlm_resource *
827 ldlm_resource_get(struct ldlm_namespace *ns, struct ldlm_resource *parent,
828                   const struct ldlm_res_id *name, ldlm_type_t type, int create)
829 {
830         __u32 hash = ldlm_hash_fn(parent, name);
831         struct ldlm_resource *res = NULL;
832         ENTRY;
833
834         LASSERT(ns != NULL);
835         LASSERT(ns->ns_hash != NULL);
836         LASSERT(name->name[0] != 0);
837
838         spin_lock(&ns->ns_hash_lock);
839         res = ldlm_resource_find(ns, name, hash);
840         if (res) {
841                 ldlm_resource_getref(res);
842                 spin_unlock(&ns->ns_hash_lock);
843                 /* synchronize WRT resource creation */
844                 if (ns->ns_lvbo && ns->ns_lvbo->lvbo_init) {
845                         down(&res->lr_lvb_sem);
846                         up(&res->lr_lvb_sem);
847                 }
848                 RETURN(res);
849         }
850         spin_unlock(&ns->ns_hash_lock);
851
852         if (create == 0)
853                 RETURN(NULL);
854
855         res = ldlm_resource_add(ns, parent, name, hash, type);
856         RETURN(res);
857 }
858
859 struct ldlm_resource *ldlm_resource_getref(struct ldlm_resource *res)
860 {
861         LASSERT(res != NULL);
862         LASSERT(res != LP_POISON);
863         atomic_inc(&res->lr_refcount);
864         CDEBUG(D_INFO, "getref res: %p count: %d\n", res,
865                atomic_read(&res->lr_refcount));
866         return res;
867 }
868
869 void __ldlm_resource_putref_final(struct ldlm_resource *res)
870 {
871         struct ldlm_namespace *ns = res->lr_namespace;
872
873         LASSERT_SPIN_LOCKED(&ns->ns_hash_lock);
874
875         if (!list_empty(&res->lr_granted)) {
876                 ldlm_resource_dump(D_ERROR, res);
877                 LBUG();
878         }
879
880         if (!list_empty(&res->lr_converting)) {
881                 ldlm_resource_dump(D_ERROR, res);
882                 LBUG();
883         }
884
885         if (!list_empty(&res->lr_waiting)) {
886                 ldlm_resource_dump(D_ERROR, res);
887                 LBUG();
888         }
889
890         if (!list_empty(&res->lr_children)) {
891                 ldlm_resource_dump(D_ERROR, res);
892                 LBUG();
893         }
894
895         /* Pass 0 here to not wake ->ns_waitq up yet, we will do it few 
896          * lines below when all children are freed. */
897         ldlm_namespace_put_nolock(ns, 0);
898         list_del_init(&res->lr_hash);
899         list_del_init(&res->lr_childof);
900
901         ns->ns_resources--;
902         if (ns->ns_resources == 0)
903                 wake_up(&ns->ns_waitq);
904 }
905
906 /* Returns 1 if the resource was freed, 0 if it remains. */
907 int ldlm_resource_putref(struct ldlm_resource *res)
908 {
909         struct ldlm_namespace *ns = res->lr_namespace;
910         int rc = 0;
911         ENTRY;
912
913         CDEBUG(D_INFO, "putref res: %p count: %d\n", res,
914                atomic_read(&res->lr_refcount) - 1);
915         LASSERTF(atomic_read(&res->lr_refcount) > 0, "%d",
916                  atomic_read(&res->lr_refcount));
917         LASSERTF(atomic_read(&res->lr_refcount) < LI_POISON, "%d",
918                  atomic_read(&res->lr_refcount));
919
920         if (atomic_dec_and_lock(&res->lr_refcount, &ns->ns_hash_lock)) {
921                 __ldlm_resource_putref_final(res);
922                 spin_unlock(&ns->ns_hash_lock);
923                 if (res->lr_lvb_data)
924                         OBD_FREE(res->lr_lvb_data, res->lr_lvb_len);
925                 OBD_SLAB_FREE(res, ldlm_resource_slab, sizeof *res);
926                 rc = 1;
927         }
928
929         RETURN(rc);
930 }
931
932 /* Returns 1 if the resource was freed, 0 if it remains. */
933 int ldlm_resource_putref_locked(struct ldlm_resource *res)
934 {
935         int rc = 0;
936         ENTRY;
937
938         CDEBUG(D_INFO, "putref res: %p count: %d\n", res,
939                atomic_read(&res->lr_refcount) - 1);
940         LASSERT(atomic_read(&res->lr_refcount) > 0);
941         LASSERT(atomic_read(&res->lr_refcount) < LI_POISON);
942
943         LASSERT(atomic_read(&res->lr_refcount) >= 0);
944         if (atomic_dec_and_test(&res->lr_refcount)) {
945                 __ldlm_resource_putref_final(res);
946                 if (res->lr_lvb_data)
947                         OBD_FREE(res->lr_lvb_data, res->lr_lvb_len);
948                 OBD_SLAB_FREE(res, ldlm_resource_slab, sizeof *res);
949                 rc = 1;
950         }
951
952         RETURN(rc);
953 }
954
955 void ldlm_resource_add_lock(struct ldlm_resource *res, struct list_head *head,
956                             struct ldlm_lock *lock)
957 {
958         check_res_locked(res);
959
960         ldlm_resource_dump(D_OTHER, res);
961         CDEBUG(D_OTHER, "About to add this lock:\n");
962         ldlm_lock_dump(D_OTHER, lock, 0);
963
964         if (lock->l_destroyed) {
965                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
966                 return;
967         }
968
969         LASSERT(list_empty(&lock->l_res_link));
970
971         list_add_tail(&lock->l_res_link, head);
972 }
973
974 void ldlm_resource_insert_lock_after(struct ldlm_lock *original,
975                                      struct ldlm_lock *new)
976 {
977         struct ldlm_resource *res = original->l_resource;
978
979         check_res_locked(res);
980
981         ldlm_resource_dump(D_OTHER, res);
982         CDEBUG(D_OTHER, "About to insert this lock after %p:\n", original);
983         ldlm_lock_dump(D_OTHER, new, 0);
984
985         if (new->l_destroyed) {
986                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
987                 goto out;
988         }
989
990         LASSERT(list_empty(&new->l_res_link));
991
992         list_add(&new->l_res_link, &original->l_res_link);
993  out:;
994 }
995
996 void ldlm_resource_unlink_lock(struct ldlm_lock *lock)
997 {
998         int type = lock->l_resource->lr_type;
999
1000         check_res_locked(lock->l_resource);
1001         if (type == LDLM_IBITS || type == LDLM_PLAIN)
1002                 ldlm_unlink_lock_skiplist(lock);
1003         else if (type == LDLM_EXTENT)
1004                 ldlm_extent_unlink_lock(lock);
1005         list_del_init(&lock->l_res_link);
1006 }
1007
1008 void ldlm_res2desc(struct ldlm_resource *res, struct ldlm_resource_desc *desc)
1009 {
1010         desc->lr_type = res->lr_type;
1011         desc->lr_name = res->lr_name;
1012 }
1013
1014 void ldlm_dump_all_namespaces(ldlm_side_t client, int level)
1015 {
1016         struct list_head *tmp;
1017
1018         if (!((libcfs_debug | D_ERROR) & level))
1019                 return;
1020
1021         mutex_down(ldlm_namespace_lock(client));
1022
1023         list_for_each(tmp, ldlm_namespace_list(client)) {
1024                 struct ldlm_namespace *ns;
1025                 ns = list_entry(tmp, struct ldlm_namespace, ns_list_chain);
1026                 ldlm_namespace_dump(level, ns);
1027         }
1028
1029         mutex_up(ldlm_namespace_lock(client));
1030 }
1031
1032 void ldlm_namespace_dump(int level, struct ldlm_namespace *ns)
1033 {
1034         struct list_head *tmp;
1035
1036         if (!((libcfs_debug | D_ERROR) & level))
1037                 return;
1038
1039         CDEBUG(level, "--- Namespace: %s (rc: %d, side: %s)\n", 
1040                ns->ns_name, ns->ns_refcount, 
1041                ns_is_client(ns) ? "client" : "server");
1042
1043         if (cfs_time_before(cfs_time_current(), ns->ns_next_dump))
1044                 return;
1045
1046         spin_lock(&ns->ns_hash_lock);
1047         tmp = ns->ns_root_list.next;
1048         while (tmp != &ns->ns_root_list) {
1049                 struct ldlm_resource *res;
1050                 res = list_entry(tmp, struct ldlm_resource, lr_childof);
1051
1052                 ldlm_resource_getref(res);
1053                 spin_unlock(&ns->ns_hash_lock);
1054
1055                 lock_res(res);
1056                 ldlm_resource_dump(level, res);
1057                 unlock_res(res);
1058
1059                 spin_lock(&ns->ns_hash_lock);
1060                 tmp = tmp->next;
1061                 ldlm_resource_putref_locked(res);
1062         }
1063         ns->ns_next_dump = cfs_time_shift(10);
1064         spin_unlock(&ns->ns_hash_lock);
1065 }
1066
1067 void ldlm_resource_dump(int level, struct ldlm_resource *res)
1068 {
1069         struct list_head *tmp;
1070         int pos;
1071
1072         CLASSERT(RES_NAME_SIZE == 4);
1073
1074         if (!((libcfs_debug | D_ERROR) & level))
1075                 return;
1076
1077         CDEBUG(level, "--- Resource: %p ("LPU64"/"LPU64"/"LPU64"/"LPU64
1078                ") (rc: %d)\n", res, res->lr_name.name[0], res->lr_name.name[1],
1079                res->lr_name.name[2], res->lr_name.name[3],
1080                atomic_read(&res->lr_refcount));
1081
1082         if (!list_empty(&res->lr_granted)) {
1083                 pos = 0;
1084                 CDEBUG(level, "Granted locks:\n");
1085                 list_for_each(tmp, &res->lr_granted) {
1086                         struct ldlm_lock *lock;
1087                         lock = list_entry(tmp, struct ldlm_lock, l_res_link);
1088                         ldlm_lock_dump(level, lock, ++pos);
1089                 }
1090         }
1091         if (!list_empty(&res->lr_converting)) {
1092                 pos = 0;
1093                 CDEBUG(level, "Converting locks:\n");
1094                 list_for_each(tmp, &res->lr_converting) {
1095                         struct ldlm_lock *lock;
1096                         lock = list_entry(tmp, struct ldlm_lock, l_res_link);
1097                         ldlm_lock_dump(level, lock, ++pos);
1098                 }
1099         }
1100         if (!list_empty(&res->lr_waiting)) {
1101                 pos = 0;
1102                 CDEBUG(level, "Waiting locks:\n");
1103                 list_for_each(tmp, &res->lr_waiting) {
1104                         struct ldlm_lock *lock;
1105                         lock = list_entry(tmp, struct ldlm_lock, l_res_link);
1106                         ldlm_lock_dump(level, lock, ++pos);
1107                 }
1108         }
1109 }