1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
3 *******************************************************************************
5 ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
6 ** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
9 *******************************************************************************
10 ******************************************************************************/
12 #include <linux/module.h>
14 #include "dlm_internal.h"
15 #include "lockspace.h"
24 #include "requestqueue.h"
29 static struct mutex ls_lock
;
30 static struct list_head lslist
;
31 static spinlock_t lslist_lock
;
32 static struct task_struct
* scand_task
;
35 static ssize_t
dlm_control_store(struct dlm_ls
*ls
, const char *buf
, size_t len
)
39 int rc
= kstrtoint(buf
, 0, &n
);
43 ls
= dlm_find_lockspace_local(ls
->ls_local_handle
);
57 dlm_put_lockspace(ls
);
61 static ssize_t
dlm_event_store(struct dlm_ls
*ls
, const char *buf
, size_t len
)
63 int rc
= kstrtoint(buf
, 0, &ls
->ls_uevent_result
);
67 set_bit(LSFL_UEVENT_WAIT
, &ls
->ls_flags
);
68 wake_up(&ls
->ls_uevent_wait
);
72 static ssize_t
dlm_id_show(struct dlm_ls
*ls
, char *buf
)
74 return snprintf(buf
, PAGE_SIZE
, "%u\n", ls
->ls_global_id
);
77 static ssize_t
dlm_id_store(struct dlm_ls
*ls
, const char *buf
, size_t len
)
79 int rc
= kstrtouint(buf
, 0, &ls
->ls_global_id
);
86 static ssize_t
dlm_nodir_show(struct dlm_ls
*ls
, char *buf
)
88 return snprintf(buf
, PAGE_SIZE
, "%u\n", dlm_no_directory(ls
));
91 static ssize_t
dlm_nodir_store(struct dlm_ls
*ls
, const char *buf
, size_t len
)
94 int rc
= kstrtoint(buf
, 0, &val
);
99 set_bit(LSFL_NODIR
, &ls
->ls_flags
);
103 static ssize_t
dlm_recover_status_show(struct dlm_ls
*ls
, char *buf
)
105 uint32_t status
= dlm_recover_status(ls
);
106 return snprintf(buf
, PAGE_SIZE
, "%x\n", status
);
109 static ssize_t
dlm_recover_nodeid_show(struct dlm_ls
*ls
, char *buf
)
111 return snprintf(buf
, PAGE_SIZE
, "%d\n", ls
->ls_recover_nodeid
);
115 struct attribute attr
;
116 ssize_t (*show
)(struct dlm_ls
*, char *);
117 ssize_t (*store
)(struct dlm_ls
*, const char *, size_t);
120 static struct dlm_attr dlm_attr_control
= {
121 .attr
= {.name
= "control", .mode
= S_IWUSR
},
122 .store
= dlm_control_store
125 static struct dlm_attr dlm_attr_event
= {
126 .attr
= {.name
= "event_done", .mode
= S_IWUSR
},
127 .store
= dlm_event_store
130 static struct dlm_attr dlm_attr_id
= {
131 .attr
= {.name
= "id", .mode
= S_IRUGO
| S_IWUSR
},
133 .store
= dlm_id_store
136 static struct dlm_attr dlm_attr_nodir
= {
137 .attr
= {.name
= "nodir", .mode
= S_IRUGO
| S_IWUSR
},
138 .show
= dlm_nodir_show
,
139 .store
= dlm_nodir_store
142 static struct dlm_attr dlm_attr_recover_status
= {
143 .attr
= {.name
= "recover_status", .mode
= S_IRUGO
},
144 .show
= dlm_recover_status_show
147 static struct dlm_attr dlm_attr_recover_nodeid
= {
148 .attr
= {.name
= "recover_nodeid", .mode
= S_IRUGO
},
149 .show
= dlm_recover_nodeid_show
152 static struct attribute
*dlm_attrs
[] = {
153 &dlm_attr_control
.attr
,
154 &dlm_attr_event
.attr
,
156 &dlm_attr_nodir
.attr
,
157 &dlm_attr_recover_status
.attr
,
158 &dlm_attr_recover_nodeid
.attr
,
161 ATTRIBUTE_GROUPS(dlm
);
163 static ssize_t
dlm_attr_show(struct kobject
*kobj
, struct attribute
*attr
,
166 struct dlm_ls
*ls
= container_of(kobj
, struct dlm_ls
, ls_kobj
);
167 struct dlm_attr
*a
= container_of(attr
, struct dlm_attr
, attr
);
168 return a
->show
? a
->show(ls
, buf
) : 0;
171 static ssize_t
dlm_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
172 const char *buf
, size_t len
)
174 struct dlm_ls
*ls
= container_of(kobj
, struct dlm_ls
, ls_kobj
);
175 struct dlm_attr
*a
= container_of(attr
, struct dlm_attr
, attr
);
176 return a
->store
? a
->store(ls
, buf
, len
) : len
;
179 static void lockspace_kobj_release(struct kobject
*k
)
181 struct dlm_ls
*ls
= container_of(k
, struct dlm_ls
, ls_kobj
);
185 static const struct sysfs_ops dlm_attr_ops
= {
186 .show
= dlm_attr_show
,
187 .store
= dlm_attr_store
,
190 static struct kobj_type dlm_ktype
= {
191 .default_groups
= dlm_groups
,
192 .sysfs_ops
= &dlm_attr_ops
,
193 .release
= lockspace_kobj_release
,
196 static struct kset
*dlm_kset
;
198 static int do_uevent(struct dlm_ls
*ls
, int in
)
203 kobject_uevent(&ls
->ls_kobj
, KOBJ_ONLINE
);
205 kobject_uevent(&ls
->ls_kobj
, KOBJ_OFFLINE
);
207 log_rinfo(ls
, "%s the lockspace group...", in
? "joining" : "leaving");
209 /* dlm_controld will see the uevent, do the necessary group management
210 and then write to sysfs to wake us */
212 error
= wait_event_interruptible(ls
->ls_uevent_wait
,
213 test_and_clear_bit(LSFL_UEVENT_WAIT
, &ls
->ls_flags
));
215 log_rinfo(ls
, "group event done %d %d", error
, ls
->ls_uevent_result
);
220 error
= ls
->ls_uevent_result
;
223 log_error(ls
, "group %s failed %d %d", in
? "join" : "leave",
224 error
, ls
->ls_uevent_result
);
228 static int dlm_uevent(struct kset
*kset
, struct kobject
*kobj
,
229 struct kobj_uevent_env
*env
)
231 struct dlm_ls
*ls
= container_of(kobj
, struct dlm_ls
, ls_kobj
);
233 add_uevent_var(env
, "LOCKSPACE=%s", ls
->ls_name
);
237 static const struct kset_uevent_ops dlm_uevent_ops
= {
238 .uevent
= dlm_uevent
,
241 int __init
dlm_lockspace_init(void)
244 mutex_init(&ls_lock
);
245 INIT_LIST_HEAD(&lslist
);
246 spin_lock_init(&lslist_lock
);
248 dlm_kset
= kset_create_and_add("dlm", &dlm_uevent_ops
, kernel_kobj
);
250 printk(KERN_WARNING
"%s: can not create kset\n", __func__
);
256 void dlm_lockspace_exit(void)
258 kset_unregister(dlm_kset
);
261 static struct dlm_ls
*find_ls_to_scan(void)
265 spin_lock(&lslist_lock
);
266 list_for_each_entry(ls
, &lslist
, ls_list
) {
267 if (time_after_eq(jiffies
, ls
->ls_scan_time
+
268 dlm_config
.ci_scan_secs
* HZ
)) {
269 spin_unlock(&lslist_lock
);
273 spin_unlock(&lslist_lock
);
277 static int dlm_scand(void *data
)
281 while (!kthread_should_stop()) {
282 ls
= find_ls_to_scan();
284 if (dlm_lock_recovery_try(ls
)) {
285 ls
->ls_scan_time
= jiffies
;
287 dlm_scan_timeout(ls
);
288 dlm_scan_waiters(ls
);
289 dlm_unlock_recovery(ls
);
291 ls
->ls_scan_time
+= HZ
;
295 schedule_timeout_interruptible(dlm_config
.ci_scan_secs
* HZ
);
300 static int dlm_scand_start(void)
302 struct task_struct
*p
;
305 p
= kthread_run(dlm_scand
, NULL
, "dlm_scand");
313 static void dlm_scand_stop(void)
315 kthread_stop(scand_task
);
318 struct dlm_ls
*dlm_find_lockspace_global(uint32_t id
)
322 spin_lock(&lslist_lock
);
324 list_for_each_entry(ls
, &lslist
, ls_list
) {
325 if (ls
->ls_global_id
== id
) {
332 spin_unlock(&lslist_lock
);
336 struct dlm_ls
*dlm_find_lockspace_local(dlm_lockspace_t
*lockspace
)
340 spin_lock(&lslist_lock
);
341 list_for_each_entry(ls
, &lslist
, ls_list
) {
342 if (ls
->ls_local_handle
== lockspace
) {
349 spin_unlock(&lslist_lock
);
353 struct dlm_ls
*dlm_find_lockspace_device(int minor
)
357 spin_lock(&lslist_lock
);
358 list_for_each_entry(ls
, &lslist
, ls_list
) {
359 if (ls
->ls_device
.minor
== minor
) {
366 spin_unlock(&lslist_lock
);
370 void dlm_put_lockspace(struct dlm_ls
*ls
)
372 spin_lock(&lslist_lock
);
374 spin_unlock(&lslist_lock
);
377 static void remove_lockspace(struct dlm_ls
*ls
)
380 spin_lock(&lslist_lock
);
381 if (ls
->ls_count
== 0) {
382 WARN_ON(ls
->ls_create_count
!= 0);
383 list_del(&ls
->ls_list
);
384 spin_unlock(&lslist_lock
);
387 spin_unlock(&lslist_lock
);
392 static int threads_start(void)
396 error
= dlm_scand_start();
398 log_print("cannot start dlm_scand thread %d", error
);
402 /* Thread for sending/receiving messages for all lockspace's */
403 error
= dlm_lowcomms_start();
405 log_print("cannot start dlm lowcomms %d", error
);
417 static void threads_stop(void)
423 static int new_lockspace(const char *name
, const char *cluster
,
424 uint32_t flags
, int lvblen
,
425 const struct dlm_lockspace_ops
*ops
, void *ops_arg
,
426 int *ops_result
, dlm_lockspace_t
**lockspace
)
431 int namelen
= strlen(name
);
433 if (namelen
> DLM_LOCKSPACE_LEN
|| namelen
== 0)
436 if (!lvblen
|| (lvblen
% 8))
439 if (!try_module_get(THIS_MODULE
))
442 if (!dlm_user_daemon_available()) {
443 log_print("dlm user daemon not available");
448 if (ops
&& ops_result
) {
449 if (!dlm_config
.ci_recover_callbacks
)
450 *ops_result
= -EOPNOTSUPP
;
456 log_print("dlm cluster name '%s' is being used without an application provided cluster name",
457 dlm_config
.ci_cluster_name
);
459 if (dlm_config
.ci_recover_callbacks
&& cluster
&&
460 strncmp(cluster
, dlm_config
.ci_cluster_name
, DLM_LOCKSPACE_LEN
)) {
461 log_print("dlm cluster name '%s' does not match "
462 "the application cluster name '%s'",
463 dlm_config
.ci_cluster_name
, cluster
);
470 spin_lock(&lslist_lock
);
471 list_for_each_entry(ls
, &lslist
, ls_list
) {
472 WARN_ON(ls
->ls_create_count
<= 0);
473 if (ls
->ls_namelen
!= namelen
)
475 if (memcmp(ls
->ls_name
, name
, namelen
))
477 if (flags
& DLM_LSFL_NEWEXCL
) {
481 ls
->ls_create_count
++;
486 spin_unlock(&lslist_lock
);
493 ls
= kzalloc(sizeof(struct dlm_ls
) + namelen
, GFP_NOFS
);
496 memcpy(ls
->ls_name
, name
, namelen
);
497 ls
->ls_namelen
= namelen
;
498 ls
->ls_lvblen
= lvblen
;
501 ls
->ls_scan_time
= jiffies
;
503 if (ops
&& dlm_config
.ci_recover_callbacks
) {
505 ls
->ls_ops_arg
= ops_arg
;
508 if (flags
& DLM_LSFL_TIMEWARN
)
509 set_bit(LSFL_TIMEWARN
, &ls
->ls_flags
);
511 /* ls_exflags are forced to match among nodes, and we don't
512 need to require all nodes to have some flags set */
513 ls
->ls_exflags
= (flags
& ~(DLM_LSFL_TIMEWARN
| DLM_LSFL_FS
|
516 size
= dlm_config
.ci_rsbtbl_size
;
517 ls
->ls_rsbtbl_size
= size
;
519 ls
->ls_rsbtbl
= vmalloc(array_size(size
, sizeof(struct dlm_rsbtable
)));
522 for (i
= 0; i
< size
; i
++) {
523 ls
->ls_rsbtbl
[i
].keep
.rb_node
= NULL
;
524 ls
->ls_rsbtbl
[i
].toss
.rb_node
= NULL
;
525 spin_lock_init(&ls
->ls_rsbtbl
[i
].lock
);
528 spin_lock_init(&ls
->ls_remove_spin
);
530 for (i
= 0; i
< DLM_REMOVE_NAMES_MAX
; i
++) {
531 ls
->ls_remove_names
[i
] = kzalloc(DLM_RESNAME_MAXLEN
+1,
533 if (!ls
->ls_remove_names
[i
])
537 idr_init(&ls
->ls_lkbidr
);
538 spin_lock_init(&ls
->ls_lkbidr_spin
);
540 INIT_LIST_HEAD(&ls
->ls_waiters
);
541 mutex_init(&ls
->ls_waiters_mutex
);
542 INIT_LIST_HEAD(&ls
->ls_orphans
);
543 mutex_init(&ls
->ls_orphans_mutex
);
544 INIT_LIST_HEAD(&ls
->ls_timeout
);
545 mutex_init(&ls
->ls_timeout_mutex
);
547 INIT_LIST_HEAD(&ls
->ls_new_rsb
);
548 spin_lock_init(&ls
->ls_new_rsb_spin
);
550 INIT_LIST_HEAD(&ls
->ls_nodes
);
551 INIT_LIST_HEAD(&ls
->ls_nodes_gone
);
552 ls
->ls_num_nodes
= 0;
553 ls
->ls_low_nodeid
= 0;
554 ls
->ls_total_weight
= 0;
555 ls
->ls_node_array
= NULL
;
557 memset(&ls
->ls_stub_rsb
, 0, sizeof(struct dlm_rsb
));
558 ls
->ls_stub_rsb
.res_ls
= ls
;
560 ls
->ls_debug_rsb_dentry
= NULL
;
561 ls
->ls_debug_waiters_dentry
= NULL
;
563 init_waitqueue_head(&ls
->ls_uevent_wait
);
564 ls
->ls_uevent_result
= 0;
565 init_completion(&ls
->ls_members_done
);
566 ls
->ls_members_result
= -1;
568 mutex_init(&ls
->ls_cb_mutex
);
569 INIT_LIST_HEAD(&ls
->ls_cb_delay
);
571 ls
->ls_recoverd_task
= NULL
;
572 mutex_init(&ls
->ls_recoverd_active
);
573 spin_lock_init(&ls
->ls_recover_lock
);
574 spin_lock_init(&ls
->ls_rcom_spin
);
575 get_random_bytes(&ls
->ls_rcom_seq
, sizeof(uint64_t));
576 ls
->ls_recover_status
= 0;
577 ls
->ls_recover_seq
= 0;
578 ls
->ls_recover_args
= NULL
;
579 init_rwsem(&ls
->ls_in_recovery
);
580 init_rwsem(&ls
->ls_recv_active
);
581 INIT_LIST_HEAD(&ls
->ls_requestqueue
);
582 mutex_init(&ls
->ls_requestqueue_mutex
);
583 mutex_init(&ls
->ls_clear_proc_locks
);
585 ls
->ls_recover_buf
= kmalloc(dlm_config
.ci_buffer_size
, GFP_NOFS
);
586 if (!ls
->ls_recover_buf
)
590 ls
->ls_num_slots
= 0;
591 ls
->ls_slots_size
= 0;
594 INIT_LIST_HEAD(&ls
->ls_recover_list
);
595 spin_lock_init(&ls
->ls_recover_list_lock
);
596 idr_init(&ls
->ls_recover_idr
);
597 spin_lock_init(&ls
->ls_recover_idr_lock
);
598 ls
->ls_recover_list_count
= 0;
599 ls
->ls_local_handle
= ls
;
600 init_waitqueue_head(&ls
->ls_wait_general
);
601 INIT_LIST_HEAD(&ls
->ls_root_list
);
602 init_rwsem(&ls
->ls_root_sem
);
604 spin_lock(&lslist_lock
);
605 ls
->ls_create_count
= 1;
606 list_add(&ls
->ls_list
, &lslist
);
607 spin_unlock(&lslist_lock
);
609 if (flags
& DLM_LSFL_FS
) {
610 error
= dlm_callback_start(ls
);
612 log_error(ls
, "can't start dlm_callback %d", error
);
617 init_waitqueue_head(&ls
->ls_recover_lock_wait
);
620 * Once started, dlm_recoverd first looks for ls in lslist, then
621 * initializes ls_in_recovery as locked in "down" mode. We need
622 * to wait for the wakeup from dlm_recoverd because in_recovery
623 * has to start out in down mode.
626 error
= dlm_recoverd_start(ls
);
628 log_error(ls
, "can't start dlm_recoverd %d", error
);
632 wait_event(ls
->ls_recover_lock_wait
,
633 test_bit(LSFL_RECOVER_LOCK
, &ls
->ls_flags
));
635 ls
->ls_kobj
.kset
= dlm_kset
;
636 error
= kobject_init_and_add(&ls
->ls_kobj
, &dlm_ktype
, NULL
,
640 kobject_uevent(&ls
->ls_kobj
, KOBJ_ADD
);
642 /* let kobject handle freeing of ls if there's an error */
645 /* This uevent triggers dlm_controld in userspace to add us to the
646 group of nodes that are members of this lockspace (managed by the
647 cluster infrastructure.) Once it's done that, it tells us who the
648 current lockspace members are (via configfs) and then tells the
649 lockspace to start running (via sysfs) in dlm_ls_start(). */
651 error
= do_uevent(ls
, 1);
655 wait_for_completion(&ls
->ls_members_done
);
656 error
= ls
->ls_members_result
;
660 dlm_create_debug_file(ls
);
662 log_rinfo(ls
, "join complete");
668 dlm_clear_members(ls
);
669 kfree(ls
->ls_node_array
);
671 dlm_recoverd_stop(ls
);
673 dlm_callback_stop(ls
);
675 spin_lock(&lslist_lock
);
676 list_del(&ls
->ls_list
);
677 spin_unlock(&lslist_lock
);
678 idr_destroy(&ls
->ls_recover_idr
);
679 kfree(ls
->ls_recover_buf
);
681 idr_destroy(&ls
->ls_lkbidr
);
683 for (i
= 0; i
< DLM_REMOVE_NAMES_MAX
; i
++)
684 kfree(ls
->ls_remove_names
[i
]);
685 vfree(ls
->ls_rsbtbl
);
688 kobject_put(&ls
->ls_kobj
);
692 module_put(THIS_MODULE
);
696 int dlm_new_lockspace(const char *name
, const char *cluster
,
697 uint32_t flags
, int lvblen
,
698 const struct dlm_lockspace_ops
*ops
, void *ops_arg
,
699 int *ops_result
, dlm_lockspace_t
**lockspace
)
703 mutex_lock(&ls_lock
);
705 error
= threads_start();
709 error
= new_lockspace(name
, cluster
, flags
, lvblen
, ops
, ops_arg
,
710 ops_result
, lockspace
);
718 mutex_unlock(&ls_lock
);
722 static int lkb_idr_is_local(int id
, void *p
, void *data
)
724 struct dlm_lkb
*lkb
= p
;
726 return lkb
->lkb_nodeid
== 0 && lkb
->lkb_grmode
!= DLM_LOCK_IV
;
729 static int lkb_idr_is_any(int id
, void *p
, void *data
)
734 static int lkb_idr_free(int id
, void *p
, void *data
)
736 struct dlm_lkb
*lkb
= p
;
738 if (lkb
->lkb_lvbptr
&& lkb
->lkb_flags
& DLM_IFL_MSTCPY
)
739 dlm_free_lvb(lkb
->lkb_lvbptr
);
745 /* NOTE: We check the lkbidr here rather than the resource table.
746 This is because there may be LKBs queued as ASTs that have been unlinked
747 from their RSBs and are pending deletion once the AST has been delivered */
749 static int lockspace_busy(struct dlm_ls
*ls
, int force
)
753 spin_lock(&ls
->ls_lkbidr_spin
);
755 rv
= idr_for_each(&ls
->ls_lkbidr
, lkb_idr_is_any
, ls
);
756 } else if (force
== 1) {
757 rv
= idr_for_each(&ls
->ls_lkbidr
, lkb_idr_is_local
, ls
);
761 spin_unlock(&ls
->ls_lkbidr_spin
);
765 static int release_lockspace(struct dlm_ls
*ls
, int force
)
771 busy
= lockspace_busy(ls
, force
);
773 spin_lock(&lslist_lock
);
774 if (ls
->ls_create_count
== 1) {
778 /* remove_lockspace takes ls off lslist */
779 ls
->ls_create_count
= 0;
782 } else if (ls
->ls_create_count
> 1) {
783 rv
= --ls
->ls_create_count
;
787 spin_unlock(&lslist_lock
);
790 log_debug(ls
, "release_lockspace no remove %d", rv
);
794 dlm_device_deregister(ls
);
796 if (force
< 3 && dlm_user_daemon_available())
799 dlm_recoverd_stop(ls
);
801 dlm_callback_stop(ls
);
803 remove_lockspace(ls
);
805 dlm_delete_debug_file(ls
);
807 idr_destroy(&ls
->ls_recover_idr
);
808 kfree(ls
->ls_recover_buf
);
811 * Free all lkb's in idr
814 idr_for_each(&ls
->ls_lkbidr
, lkb_idr_free
, ls
);
815 idr_destroy(&ls
->ls_lkbidr
);
818 * Free all rsb's on rsbtbl[] lists
821 for (i
= 0; i
< ls
->ls_rsbtbl_size
; i
++) {
822 while ((n
= rb_first(&ls
->ls_rsbtbl
[i
].keep
))) {
823 rsb
= rb_entry(n
, struct dlm_rsb
, res_hashnode
);
824 rb_erase(n
, &ls
->ls_rsbtbl
[i
].keep
);
828 while ((n
= rb_first(&ls
->ls_rsbtbl
[i
].toss
))) {
829 rsb
= rb_entry(n
, struct dlm_rsb
, res_hashnode
);
830 rb_erase(n
, &ls
->ls_rsbtbl
[i
].toss
);
835 vfree(ls
->ls_rsbtbl
);
837 for (i
= 0; i
< DLM_REMOVE_NAMES_MAX
; i
++)
838 kfree(ls
->ls_remove_names
[i
]);
840 while (!list_empty(&ls
->ls_new_rsb
)) {
841 rsb
= list_first_entry(&ls
->ls_new_rsb
, struct dlm_rsb
,
843 list_del(&rsb
->res_hashchain
);
848 * Free structures on any other lists
851 dlm_purge_requestqueue(ls
);
852 kfree(ls
->ls_recover_args
);
853 dlm_clear_members(ls
);
854 dlm_clear_members_gone(ls
);
855 kfree(ls
->ls_node_array
);
856 log_rinfo(ls
, "release_lockspace final free");
857 kobject_put(&ls
->ls_kobj
);
858 /* The ls structure will be freed when the kobject is done with */
860 module_put(THIS_MODULE
);
865 * Called when a system has released all its locks and is not going to use the
866 * lockspace any longer. We free everything we're managing for this lockspace.
867 * Remaining nodes will go through the recovery process as if we'd died. The
868 * lockspace must continue to function as usual, participating in recoveries,
869 * until this returns.
871 * Force has 4 possible values:
872 * 0 - don't destroy locksapce if it has any LKBs
873 * 1 - destroy lockspace if it has remote LKBs but not if it has local LKBs
874 * 2 - destroy lockspace regardless of LKBs
875 * 3 - destroy lockspace as part of a forced shutdown
878 int dlm_release_lockspace(void *lockspace
, int force
)
883 ls
= dlm_find_lockspace_local(lockspace
);
886 dlm_put_lockspace(ls
);
888 mutex_lock(&ls_lock
);
889 error
= release_lockspace(ls
, force
);
894 mutex_unlock(&ls_lock
);
899 void dlm_stop_lockspaces(void)
906 spin_lock(&lslist_lock
);
907 list_for_each_entry(ls
, &lslist
, ls_list
) {
908 if (!test_bit(LSFL_RUNNING
, &ls
->ls_flags
)) {
912 spin_unlock(&lslist_lock
);
913 log_error(ls
, "no userland control daemon, stopping lockspace");
917 spin_unlock(&lslist_lock
);
920 log_print("dlm user daemon left %d lockspaces", count
);