2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/string.h>
13 #include <linux/slab.h>
14 #include <linux/wait.h>
15 #include <linux/sched.h>
16 #include <linux/kmod.h>
18 #include <linux/delay.h>
19 #include <linux/lm_interface.h>
22 struct list_head lw_list
;
23 const struct lm_lockops
*lw_ops
;
26 /* List of registered low-level locking protocols. A file system selects one
27 of them by name at mount time, e.g. lock_nolock, lock_dlm. */
29 static LIST_HEAD(lmh_list
);
30 static DEFINE_MUTEX(lmh_lock
);
33 * gfs2_register_lockproto - Register a low-level locking protocol
34 * @proto: the protocol definition
36 * Returns: 0 on success, -EXXX on failure
39 int gfs2_register_lockproto(const struct lm_lockops
*proto
)
41 struct lmh_wrapper
*lw
;
43 mutex_lock(&lmh_lock
);
45 list_for_each_entry(lw
, &lmh_list
, lw_list
) {
46 if (!strcmp(lw
->lw_ops
->lm_proto_name
, proto
->lm_proto_name
)) {
47 mutex_unlock(&lmh_lock
);
48 printk(KERN_INFO
"GFS2: protocol %s already exists\n",
49 proto
->lm_proto_name
);
54 lw
= kzalloc(sizeof(struct lmh_wrapper
), GFP_KERNEL
);
56 mutex_unlock(&lmh_lock
);
61 list_add(&lw
->lw_list
, &lmh_list
);
63 mutex_unlock(&lmh_lock
);
69 * gfs2_unregister_lockproto - Unregister a low-level locking protocol
70 * @proto: the protocol definition
74 void gfs2_unregister_lockproto(const struct lm_lockops
*proto
)
76 struct lmh_wrapper
*lw
;
78 mutex_lock(&lmh_lock
);
80 list_for_each_entry(lw
, &lmh_list
, lw_list
) {
81 if (!strcmp(lw
->lw_ops
->lm_proto_name
, proto
->lm_proto_name
)) {
82 list_del(&lw
->lw_list
);
83 mutex_unlock(&lmh_lock
);
89 mutex_unlock(&lmh_lock
);
91 printk(KERN_WARNING
"GFS2: can't unregister lock protocol %s\n",
92 proto
->lm_proto_name
);
96 * gfs2_mount_lockproto - Mount a lock protocol
97 * @proto_name - the name of the protocol
98 * @table_name - the name of the lock space
99 * @host_data - data specific to this host
100 * @cb - the callback to the code using the lock module
101 * @sdp - The GFS2 superblock
102 * @min_lvb_size - the mininum LVB size that the caller can deal with
103 * @flags - LM_MFLAG_*
104 * @lockstruct - a structure returned describing the mount
106 * Returns: 0 on success, -EXXX on failure
109 int gfs2_mount_lockproto(char *proto_name
, char *table_name
, char *host_data
,
110 lm_callback_t cb
, void *cb_data
,
111 unsigned int min_lvb_size
, int flags
,
112 struct lm_lockstruct
*lockstruct
,
113 struct kobject
*fskobj
)
115 struct lmh_wrapper
*lw
= NULL
;
120 mutex_lock(&lmh_lock
);
123 list_for_each_entry(lw
, &lmh_list
, lw_list
) {
124 if (!strcmp(lw
->lw_ops
->lm_proto_name
, proto_name
)) {
131 if (!try && capable(CAP_SYS_MODULE
)) {
133 mutex_unlock(&lmh_lock
);
134 request_module(proto_name
);
137 printk(KERN_INFO
"GFS2: can't find protocol %s\n", proto_name
);
142 if (!try_module_get(lw
->lw_ops
->lm_owner
)) {
144 mutex_unlock(&lmh_lock
);
149 error
= lw
->lw_ops
->lm_mount(table_name
, host_data
, cb
, cb_data
,
150 min_lvb_size
, flags
, lockstruct
, fskobj
);
152 module_put(lw
->lw_ops
->lm_owner
);
154 mutex_unlock(&lmh_lock
);
158 void gfs2_unmount_lockproto(struct lm_lockstruct
*lockstruct
)
160 mutex_lock(&lmh_lock
);
161 lockstruct
->ls_ops
->lm_unmount(lockstruct
->ls_lockspace
);
162 if (lockstruct
->ls_ops
->lm_owner
)
163 module_put(lockstruct
->ls_ops
->lm_owner
);
164 mutex_unlock(&lmh_lock
);
168 * gfs2_withdraw_lockproto - abnormally unmount a lock module
169 * @lockstruct: the lockstruct passed into mount
173 void gfs2_withdraw_lockproto(struct lm_lockstruct
*lockstruct
)
175 mutex_lock(&lmh_lock
);
176 lockstruct
->ls_ops
->lm_withdraw(lockstruct
->ls_lockspace
);
177 if (lockstruct
->ls_ops
->lm_owner
)
178 module_put(lockstruct
->ls_ops
->lm_owner
);
179 mutex_unlock(&lmh_lock
);
182 EXPORT_SYMBOL_GPL(gfs2_register_lockproto
);
183 EXPORT_SYMBOL_GPL(gfs2_unregister_lockproto
);