sata_promise: kill qc->nsect
[powerpc.git] / fs / gfs2 / lm.c
1 /*
2  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3  * Copyright (C) 2004-2006 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
7  * of the GNU General Public License version 2.
8  */
9
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/delay.h>
16 #include <linux/gfs2_ondisk.h>
17 #include <linux/lm_interface.h>
18
19 #include "gfs2.h"
20 #include "incore.h"
21 #include "glock.h"
22 #include "lm.h"
23 #include "super.h"
24 #include "util.h"
25
26 /**
27  * gfs2_lm_mount - mount a locking protocol
28  * @sdp: the filesystem
29  * @args: mount arguements
30  * @silent: if 1, don't complain if the FS isn't a GFS2 fs
31  *
32  * Returns: errno
33  */
34
35 int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent)
36 {
37         char *proto = sdp->sd_proto_name;
38         char *table = sdp->sd_table_name;
39         int flags = 0;
40         int error;
41
42         if (sdp->sd_args.ar_spectator)
43                 flags |= LM_MFLAG_SPECTATOR;
44
45         fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table);
46
47         error = gfs2_mount_lockproto(proto, table, sdp->sd_args.ar_hostdata,
48                                      gfs2_glock_cb, sdp,
49                                      GFS2_MIN_LVB_SIZE, flags,
50                                      &sdp->sd_lockstruct, &sdp->sd_kobj);
51         if (error) {
52                 fs_info(sdp, "can't mount proto=%s, table=%s, hostdata=%s\n",
53                         proto, table, sdp->sd_args.ar_hostdata);
54                 goto out;
55         }
56
57         if (gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lockspace) ||
58             gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_ops) ||
59             gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lvb_size >=
60                                   GFS2_MIN_LVB_SIZE)) {
61                 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
62                 goto out;
63         }
64
65         if (sdp->sd_args.ar_spectator)
66                 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.s", table);
67         else
68                 snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table,
69                          sdp->sd_lockstruct.ls_jid);
70
71         fs_info(sdp, "Joined cluster. Now mounting FS...\n");
72
73         if ((sdp->sd_lockstruct.ls_flags & LM_LSFLAG_LOCAL) &&
74             !sdp->sd_args.ar_ignore_local_fs) {
75                 sdp->sd_args.ar_localflocks = 1;
76                 sdp->sd_args.ar_localcaching = 1;
77         }
78
79 out:
80         return error;
81 }
82
83 void gfs2_lm_others_may_mount(struct gfs2_sbd *sdp)
84 {
85         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
86                 sdp->sd_lockstruct.ls_ops->lm_others_may_mount(
87                                         sdp->sd_lockstruct.ls_lockspace);
88 }
89
90 void gfs2_lm_unmount(struct gfs2_sbd *sdp)
91 {
92         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
93                 gfs2_unmount_lockproto(&sdp->sd_lockstruct);
94 }
95
96 int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...)
97 {
98         va_list args;
99
100         if (test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags))
101                 return 0;
102
103         va_start(args, fmt);
104         vprintk(fmt, args);
105         va_end(args);
106
107         fs_err(sdp, "about to withdraw this file system\n");
108         BUG_ON(sdp->sd_args.ar_debug);
109
110         fs_err(sdp, "telling LM to withdraw\n");
111         gfs2_withdraw_lockproto(&sdp->sd_lockstruct);
112         fs_err(sdp, "withdrawn\n");
113         dump_stack();
114
115         return -1;
116 }
117
118 int gfs2_lm_get_lock(struct gfs2_sbd *sdp, struct lm_lockname *name,
119                      void **lockp)
120 {
121         int error = -EIO;
122         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
123                 error = sdp->sd_lockstruct.ls_ops->lm_get_lock(
124                                 sdp->sd_lockstruct.ls_lockspace, name, lockp);
125         return error;
126 }
127
128 void gfs2_lm_put_lock(struct gfs2_sbd *sdp, void *lock)
129 {
130         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
131                 sdp->sd_lockstruct.ls_ops->lm_put_lock(lock);
132 }
133
134 unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock,
135                           unsigned int cur_state, unsigned int req_state,
136                           unsigned int flags)
137 {
138         int ret = 0;
139         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
140                 ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock, cur_state,
141                                                          req_state, flags);
142         return ret;
143 }
144
145 unsigned int gfs2_lm_unlock(struct gfs2_sbd *sdp, void *lock,
146                             unsigned int cur_state)
147 {
148         int ret = 0;
149         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
150                 ret =  sdp->sd_lockstruct.ls_ops->lm_unlock(lock, cur_state);
151         return ret;
152 }
153
154 void gfs2_lm_cancel(struct gfs2_sbd *sdp, void *lock)
155 {
156         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
157                 sdp->sd_lockstruct.ls_ops->lm_cancel(lock);
158 }
159
160 int gfs2_lm_hold_lvb(struct gfs2_sbd *sdp, void *lock, char **lvbp)
161 {
162         int error = -EIO;
163         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
164                 error = sdp->sd_lockstruct.ls_ops->lm_hold_lvb(lock, lvbp);
165         return error;
166 }
167
168 void gfs2_lm_unhold_lvb(struct gfs2_sbd *sdp, void *lock, char *lvb)
169 {
170         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
171                 sdp->sd_lockstruct.ls_ops->lm_unhold_lvb(lock, lvb);
172 }
173
174 int gfs2_lm_plock_get(struct gfs2_sbd *sdp, struct lm_lockname *name,
175                       struct file *file, struct file_lock *fl)
176 {
177         int error = -EIO;
178         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
179                 error = sdp->sd_lockstruct.ls_ops->lm_plock_get(
180                                 sdp->sd_lockstruct.ls_lockspace, name, file, fl);
181         return error;
182 }
183
184 int gfs2_lm_plock(struct gfs2_sbd *sdp, struct lm_lockname *name,
185                   struct file *file, int cmd, struct file_lock *fl)
186 {
187         int error = -EIO;
188         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
189                 error = sdp->sd_lockstruct.ls_ops->lm_plock(
190                                 sdp->sd_lockstruct.ls_lockspace, name, file, cmd, fl);
191         return error;
192 }
193
194 int gfs2_lm_punlock(struct gfs2_sbd *sdp, struct lm_lockname *name,
195                     struct file *file, struct file_lock *fl)
196 {
197         int error = -EIO;
198         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
199                 error = sdp->sd_lockstruct.ls_ops->lm_punlock(
200                                 sdp->sd_lockstruct.ls_lockspace, name, file, fl);
201         return error;
202 }
203
204 void gfs2_lm_recovery_done(struct gfs2_sbd *sdp, unsigned int jid,
205                            unsigned int message)
206 {
207         if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
208                 sdp->sd_lockstruct.ls_ops->lm_recovery_done(
209                         sdp->sd_lockstruct.ls_lockspace, jid, message);
210 }
211