[GFS2] Use void * instead of typedef for locking module interface
[linux-2.6-block.git] / fs / gfs2 / locking / nolock / main.c
CommitLineData
869d81df
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
869d81df 8 */
29b7998d
DT
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/types.h>
15#include <linux/fs.h>
16#include <linux/smp_lock.h>
17
18#include "../../lm_interface.h"
19
20struct nolock_lockspace {
21 unsigned int nl_lvb_size;
22};
23
9b47c11d 24static const struct lm_lockops nolock_ops;
29b7998d 25
29b7998d 26static int nolock_mount(char *table_name, char *host_data,
9b47c11d 27 lm_callback_t cb, void *cb_data,
29b7998d 28 unsigned int min_lvb_size, int flags,
869d81df
DT
29 struct lm_lockstruct *lockstruct,
30 struct kobject *fskobj)
29b7998d
DT
31{
32 char *c;
33 unsigned int jid;
34 struct nolock_lockspace *nl;
35
29b7998d
DT
36 c = strstr(host_data, "jid=");
37 if (!c)
38 jid = 0;
39 else {
40 c += 4;
41 sscanf(c, "%u", &jid);
42 }
43
d92a8d48 44 nl = kzalloc(sizeof(struct nolock_lockspace), GFP_KERNEL);
29b7998d
DT
45 if (!nl)
46 return -ENOMEM;
47
29b7998d
DT
48 nl->nl_lvb_size = min_lvb_size;
49
50 lockstruct->ls_jid = jid;
51 lockstruct->ls_first = 1;
52 lockstruct->ls_lvb_size = min_lvb_size;
9b47c11d 53 lockstruct->ls_lockspace = nl;
29b7998d
DT
54 lockstruct->ls_ops = &nolock_ops;
55 lockstruct->ls_flags = LM_LSFLAG_LOCAL;
56
57 return 0;
58}
59
9b47c11d 60static void nolock_others_may_mount(void *lockspace)
29b7998d
DT
61{
62}
63
9b47c11d 64static void nolock_unmount(void *lockspace)
29b7998d 65{
9b47c11d 66 struct nolock_lockspace *nl = lockspace;
29b7998d
DT
67 kfree(nl);
68}
69
9b47c11d 70static void nolock_withdraw(void *lockspace)
29b7998d
DT
71{
72}
73
74/**
75 * nolock_get_lock - get a lm_lock_t given a descripton of the lock
76 * @lockspace: the lockspace the lock lives in
77 * @name: the name of the lock
78 * @lockp: return the lm_lock_t here
79 *
80 * Returns: 0 on success, -EXXX on failure
81 */
82
9b47c11d
SW
83static int nolock_get_lock(void *lockspace, struct lm_lockname *name,
84 void **lockp)
29b7998d 85{
9b47c11d 86 *lockp = lockspace;
29b7998d
DT
87 return 0;
88}
89
90/**
91 * nolock_put_lock - get rid of a lock structure
92 * @lock: the lock to throw away
93 *
94 */
95
9b47c11d 96static void nolock_put_lock(void *lock)
29b7998d
DT
97{
98}
99
100/**
101 * nolock_lock - acquire a lock
102 * @lock: the lock to manipulate
103 * @cur_state: the current state
104 * @req_state: the requested state
105 * @flags: modifier flags
106 *
107 * Returns: A bitmap of LM_OUT_*
108 */
109
9b47c11d 110static unsigned int nolock_lock(void *lock, unsigned int cur_state,
29b7998d
DT
111 unsigned int req_state, unsigned int flags)
112{
113 return req_state | LM_OUT_CACHEABLE;
114}
115
116/**
117 * nolock_unlock - unlock a lock
118 * @lock: the lock to manipulate
119 * @cur_state: the current state
120 *
121 * Returns: 0
122 */
123
9b47c11d 124static unsigned int nolock_unlock(void *lock, unsigned int cur_state)
29b7998d
DT
125{
126 return 0;
127}
128
9b47c11d 129static void nolock_cancel(void *lock)
29b7998d
DT
130{
131}
132
133/**
134 * nolock_hold_lvb - hold on to a lock value block
135 * @lock: the lock the LVB is associated with
136 * @lvbp: return the lm_lvb_t here
137 *
138 * Returns: 0 on success, -EXXX on failure
139 */
140
9b47c11d 141static int nolock_hold_lvb(void *lock, char **lvbp)
29b7998d 142{
9b47c11d 143 struct nolock_lockspace *nl = lock;
29b7998d
DT
144 int error = 0;
145
d92a8d48
SW
146 *lvbp = kzalloc(nl->nl_lvb_size, GFP_KERNEL);
147 if (!*lvbp)
29b7998d
DT
148 error = -ENOMEM;
149
150 return error;
151}
152
153/**
154 * nolock_unhold_lvb - release a LVB
155 * @lock: the lock the LVB is associated with
156 * @lvb: the lock value block
157 *
158 */
159
9b47c11d 160static void nolock_unhold_lvb(void *lock, char *lvb)
29b7998d
DT
161{
162 kfree(lvb);
163}
164
9b47c11d 165static int nolock_plock_get(void *lockspace, struct lm_lockname *name,
29b7998d
DT
166 struct file *file, struct file_lock *fl)
167{
8628de05
SW
168 struct file_lock tmp;
169 int ret;
29b7998d 170
8628de05 171 ret = posix_test_lock(file, fl, &tmp);
29b7998d 172 fl->fl_type = F_UNLCK;
8628de05
SW
173 if (ret)
174 memcpy(fl, &tmp, sizeof(struct file_lock));
29b7998d
DT
175
176 return 0;
177}
178
9b47c11d 179static int nolock_plock(void *lockspace, struct lm_lockname *name,
29b7998d
DT
180 struct file *file, int cmd, struct file_lock *fl)
181{
182 int error;
29b7998d 183 error = posix_lock_file_wait(file, fl);
29b7998d
DT
184 return error;
185}
186
9b47c11d 187static int nolock_punlock(void *lockspace, struct lm_lockname *name,
29b7998d
DT
188 struct file *file, struct file_lock *fl)
189{
190 int error;
29b7998d 191 error = posix_lock_file_wait(file, fl);
29b7998d
DT
192 return error;
193}
194
9b47c11d 195static void nolock_recovery_done(void *lockspace, unsigned int jid,
29b7998d
DT
196 unsigned int message)
197{
198}
199
9b47c11d 200static const struct lm_lockops nolock_ops = {
29b7998d
DT
201 .lm_proto_name = "lock_nolock",
202 .lm_mount = nolock_mount,
203 .lm_others_may_mount = nolock_others_may_mount,
204 .lm_unmount = nolock_unmount,
205 .lm_withdraw = nolock_withdraw,
206 .lm_get_lock = nolock_get_lock,
207 .lm_put_lock = nolock_put_lock,
208 .lm_lock = nolock_lock,
209 .lm_unlock = nolock_unlock,
210 .lm_cancel = nolock_cancel,
211 .lm_hold_lvb = nolock_hold_lvb,
212 .lm_unhold_lvb = nolock_unhold_lvb,
29b7998d
DT
213 .lm_plock_get = nolock_plock_get,
214 .lm_plock = nolock_plock,
215 .lm_punlock = nolock_punlock,
216 .lm_recovery_done = nolock_recovery_done,
217 .lm_owner = THIS_MODULE,
218};
219
08bc2dbc 220static int __init init_nolock(void)
29b7998d
DT
221{
222 int error;
223
3120ec54 224 error = gfs2_register_lockproto(&nolock_ops);
29b7998d 225 if (error) {
f382894e
SW
226 printk(KERN_WARNING
227 "lock_nolock: can't register protocol: %d\n", error);
29b7998d
DT
228 return error;
229 }
230
f382894e
SW
231 printk(KERN_INFO
232 "Lock_Nolock (built %s %s) installed\n", __DATE__, __TIME__);
29b7998d
DT
233 return 0;
234}
235
08bc2dbc 236static void __exit exit_nolock(void)
29b7998d 237{
3120ec54 238 gfs2_unregister_lockproto(&nolock_ops);
29b7998d
DT
239}
240
241module_init(init_nolock);
242module_exit(exit_nolock);
243
244MODULE_DESCRIPTION("GFS Nolock Locking Module");
245MODULE_AUTHOR("Red Hat, Inc.");
246MODULE_LICENSE("GPL");
247