]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/gfs2/glops.c
[DLM] lowcomms tidy
[net-next-2.6.git] / fs / gfs2 / glops.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
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.
b3b94faa
DT
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>
5c676f6d 15#include <linux/gfs2_ondisk.h>
7d308590 16#include <linux/lm_interface.h>
b3b94faa
DT
17
18#include "gfs2.h"
5c676f6d 19#include "incore.h"
b3b94faa
DT
20#include "bmap.h"
21#include "glock.h"
22#include "glops.h"
23#include "inode.h"
24#include "log.h"
25#include "meta_io.h"
b3b94faa
DT
26#include "recovery.h"
27#include "rgrp.h"
5c676f6d 28#include "util.h"
ddacfaf7 29#include "trans.h"
b3b94faa 30
ddacfaf7
SW
31/**
32 * ail_empty_gl - remove all buffers for a given lock from the AIL
33 * @gl: the glock
34 *
35 * None of the buffers should be dirty, locked, or pinned.
36 */
37
38static void gfs2_ail_empty_gl(struct gfs2_glock *gl)
39{
40 struct gfs2_sbd *sdp = gl->gl_sbd;
41 unsigned int blocks;
42 struct list_head *head = &gl->gl_ail_list;
43 struct gfs2_bufdata *bd;
44 struct buffer_head *bh;
45 u64 blkno;
46 int error;
47
48 blocks = atomic_read(&gl->gl_ail_count);
49 if (!blocks)
50 return;
51
52 error = gfs2_trans_begin(sdp, 0, blocks);
53 if (gfs2_assert_withdraw(sdp, !error))
54 return;
55
56 gfs2_log_lock(sdp);
57 while (!list_empty(head)) {
58 bd = list_entry(head->next, struct gfs2_bufdata,
59 bd_ail_gl_list);
60 bh = bd->bd_bh;
61 blkno = bh->b_blocknr;
62 gfs2_assert_withdraw(sdp, !buffer_busy(bh));
63
64 bd->bd_ail = NULL;
65 list_del(&bd->bd_ail_st_list);
66 list_del(&bd->bd_ail_gl_list);
67 atomic_dec(&gl->gl_ail_count);
68 brelse(bh);
69 gfs2_log_unlock(sdp);
70
71 gfs2_trans_add_revoke(sdp, blkno);
72
73 gfs2_log_lock(sdp);
74 }
75 gfs2_assert_withdraw(sdp, !atomic_read(&gl->gl_ail_count));
76 gfs2_log_unlock(sdp);
77
78 gfs2_trans_end(sdp);
79 gfs2_log_flush(sdp, NULL);
80}
ba7f7290
SW
81
82/**
83 * gfs2_pte_inval - Sync and invalidate all PTEs associated with a glock
84 * @gl: the glock
85 *
86 */
87
88static void gfs2_pte_inval(struct gfs2_glock *gl)
89{
90 struct gfs2_inode *ip;
91 struct inode *inode;
92
93 ip = gl->gl_object;
94 inode = &ip->i_inode;
b60623c2 95 if (!ip || !S_ISREG(inode->i_mode))
ba7f7290
SW
96 return;
97
98 if (!test_bit(GIF_PAGED, &ip->i_flags))
99 return;
100
101 unmap_shared_mapping_range(inode->i_mapping, 0, 0);
102
103 if (test_bit(GIF_SW_PAGED, &ip->i_flags))
104 set_bit(GLF_DIRTY, &gl->gl_flags);
105
106 clear_bit(GIF_SW_PAGED, &ip->i_flags);
107}
108
b3b94faa
DT
109/**
110 * meta_go_sync - sync out the metadata for this glock
111 * @gl: the glock
b3b94faa
DT
112 *
113 * Called when demoting or unlocking an EX glock. We must flush
114 * to disk all dirty buffers/pages relating to this glock, and must not
115 * not return to caller to demote/unlock the glock until I/O is complete.
116 */
117
1a14d3a6 118static void meta_go_sync(struct gfs2_glock *gl)
b3b94faa 119{
b3b94faa 120 if (test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) {
b09e593d 121 gfs2_log_flush(gl->gl_sbd, gl);
7276b3b0 122 gfs2_meta_sync(gl);
1a14d3a6 123 gfs2_ail_empty_gl(gl);
b3b94faa
DT
124 }
125
b3b94faa
DT
126}
127
128/**
129 * meta_go_inval - invalidate the metadata for this glock
130 * @gl: the glock
131 * @flags:
132 *
133 */
134
135static void meta_go_inval(struct gfs2_glock *gl, int flags)
136{
137 if (!(flags & DIO_METADATA))
138 return;
139
140 gfs2_meta_inval(gl);
141 gl->gl_vn++;
142}
143
b3b94faa
DT
144/**
145 * inode_go_xmote_th - promote/demote a glock
146 * @gl: the glock
147 * @state: the requested state
148 * @flags:
149 *
150 */
151
152static void inode_go_xmote_th(struct gfs2_glock *gl, unsigned int state,
153 int flags)
154{
155 if (gl->gl_state != LM_ST_UNLOCKED)
156 gfs2_pte_inval(gl);
157 gfs2_glock_xmote_th(gl, state, flags);
158}
159
160/**
161 * inode_go_xmote_bh - After promoting/demoting a glock
162 * @gl: the glock
163 *
164 */
165
166static void inode_go_xmote_bh(struct gfs2_glock *gl)
167{
168 struct gfs2_holder *gh = gl->gl_req_gh;
169 struct buffer_head *bh;
170 int error;
171
172 if (gl->gl_state != LM_ST_UNLOCKED &&
173 (!gh || !(gh->gh_flags & GL_SKIP))) {
7276b3b0 174 error = gfs2_meta_read(gl, gl->gl_name.ln_number, 0, &bh);
b3b94faa
DT
175 if (!error)
176 brelse(bh);
177 }
178}
179
180/**
181 * inode_go_drop_th - unlock a glock
182 * @gl: the glock
183 *
184 * Invoked from rq_demote().
185 * Another node needs the lock in EXCLUSIVE mode, or lock (unused for too long)
186 * is being purged from our node's glock cache; we're dropping lock.
187 */
188
189static void inode_go_drop_th(struct gfs2_glock *gl)
190{
191 gfs2_pte_inval(gl);
192 gfs2_glock_drop_th(gl);
193}
194
195/**
196 * inode_go_sync - Sync the dirty data and/or metadata for an inode glock
197 * @gl: the glock protecting the inode
b3b94faa
DT
198 *
199 */
200
1a14d3a6 201static void inode_go_sync(struct gfs2_glock *gl)
b3b94faa 202{
b004157a
SW
203 struct gfs2_inode *ip = gl->gl_object;
204
205 if (ip && !S_ISREG(ip->i_inode.i_mode))
206 ip = NULL;
207
b3b94faa 208 if (test_bit(GLF_DIRTY, &gl->gl_flags)) {
1a14d3a6 209 gfs2_log_flush(gl->gl_sbd, gl);
b004157a
SW
210 if (ip)
211 filemap_fdatawrite(ip->i_inode.i_mapping);
1a14d3a6 212 gfs2_meta_sync(gl);
b004157a
SW
213 if (ip) {
214 struct address_space *mapping = ip->i_inode.i_mapping;
215 int error = filemap_fdatawait(mapping);
216 if (error == -ENOSPC)
217 set_bit(AS_ENOSPC, &mapping->flags);
218 else if (error)
219 set_bit(AS_EIO, &mapping->flags);
220 }
1a14d3a6
SW
221 clear_bit(GLF_DIRTY, &gl->gl_flags);
222 gfs2_ail_empty_gl(gl);
b3b94faa 223 }
b3b94faa
DT
224}
225
226/**
227 * inode_go_inval - prepare a inode glock to be released
228 * @gl: the glock
229 * @flags:
230 *
231 */
232
233static void inode_go_inval(struct gfs2_glock *gl, int flags)
234{
b004157a 235 struct gfs2_inode *ip = gl->gl_object;
b3b94faa 236 int meta = (flags & DIO_METADATA);
b3b94faa
DT
237
238 if (meta) {
239 gfs2_meta_inval(gl);
b004157a
SW
240 if (ip)
241 set_bit(GIF_INVALID, &ip->i_flags);
242 }
243
244 if (ip && S_ISREG(ip->i_inode.i_mode)) {
245 truncate_inode_pages(ip->i_inode.i_mapping, 0);
246 gfs2_assert_withdraw(GFS2_SB(&ip->i_inode), !ip->i_inode.i_mapping->nrpages);
247 clear_bit(GIF_PAGED, &ip->i_flags);
b3b94faa 248 }
b3b94faa
DT
249}
250
251/**
252 * inode_go_demote_ok - Check to see if it's ok to unlock an inode glock
253 * @gl: the glock
254 *
255 * Returns: 1 if it's ok
256 */
257
258static int inode_go_demote_ok(struct gfs2_glock *gl)
259{
260 struct gfs2_sbd *sdp = gl->gl_sbd;
261 int demote = 0;
262
5c676f6d 263 if (!gl->gl_object && !gl->gl_aspace->i_mapping->nrpages)
b3b94faa
DT
264 demote = 1;
265 else if (!sdp->sd_args.ar_localcaching &&
266 time_after_eq(jiffies, gl->gl_stamp +
267 gfs2_tune_get(sdp, gt_demote_secs) * HZ))
268 demote = 1;
269
270 return demote;
271}
272
273/**
274 * inode_go_lock - operation done after an inode lock is locked by a process
275 * @gl: the glock
276 * @flags:
277 *
278 * Returns: errno
279 */
280
281static int inode_go_lock(struct gfs2_holder *gh)
282{
283 struct gfs2_glock *gl = gh->gh_gl;
5c676f6d 284 struct gfs2_inode *ip = gl->gl_object;
b3b94faa
DT
285 int error = 0;
286
287 if (!ip)
288 return 0;
289
bfded27b 290 if (test_bit(GIF_INVALID, &ip->i_flags)) {
b3b94faa
DT
291 error = gfs2_inode_refresh(ip);
292 if (error)
293 return error;
b3b94faa
DT
294 }
295
296 if ((ip->i_di.di_flags & GFS2_DIF_TRUNC_IN_PROG) &&
297 (gl->gl_state == LM_ST_EXCLUSIVE) &&
1c0f4872 298 (gh->gh_state == LM_ST_EXCLUSIVE))
b3b94faa
DT
299 error = gfs2_truncatei_resume(ip);
300
301 return error;
302}
303
304/**
305 * inode_go_unlock - operation done before an inode lock is unlocked by a
306 * process
307 * @gl: the glock
308 * @flags:
309 *
310 */
311
312static void inode_go_unlock(struct gfs2_holder *gh)
313{
314 struct gfs2_glock *gl = gh->gh_gl;
5c676f6d 315 struct gfs2_inode *ip = gl->gl_object;
b3b94faa 316
9e2dbdac
SW
317 if (ip)
318 gfs2_meta_cache_flush(ip);
b3b94faa
DT
319}
320
b3b94faa
DT
321/**
322 * rgrp_go_demote_ok - Check to see if it's ok to unlock a RG's glock
323 * @gl: the glock
324 *
325 * Returns: 1 if it's ok
326 */
327
328static int rgrp_go_demote_ok(struct gfs2_glock *gl)
329{
330 return !gl->gl_aspace->i_mapping->nrpages;
331}
332
333/**
334 * rgrp_go_lock - operation done after an rgrp lock is locked by
335 * a first holder on this node.
336 * @gl: the glock
337 * @flags:
338 *
339 * Returns: errno
340 */
341
342static int rgrp_go_lock(struct gfs2_holder *gh)
343{
5c676f6d 344 return gfs2_rgrp_bh_get(gh->gh_gl->gl_object);
b3b94faa
DT
345}
346
347/**
348 * rgrp_go_unlock - operation done before an rgrp lock is unlocked by
349 * a last holder on this node.
350 * @gl: the glock
351 * @flags:
352 *
353 */
354
355static void rgrp_go_unlock(struct gfs2_holder *gh)
356{
5c676f6d 357 gfs2_rgrp_bh_put(gh->gh_gl->gl_object);
b3b94faa
DT
358}
359
360/**
361 * trans_go_xmote_th - promote/demote the transaction glock
362 * @gl: the glock
363 * @state: the requested state
364 * @flags:
365 *
366 */
367
368static void trans_go_xmote_th(struct gfs2_glock *gl, unsigned int state,
369 int flags)
370{
371 struct gfs2_sbd *sdp = gl->gl_sbd;
372
373 if (gl->gl_state != LM_ST_UNLOCKED &&
374 test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
375 gfs2_meta_syncfs(sdp);
376 gfs2_log_shutdown(sdp);
377 }
378
379 gfs2_glock_xmote_th(gl, state, flags);
380}
381
382/**
383 * trans_go_xmote_bh - After promoting/demoting the transaction glock
384 * @gl: the glock
385 *
386 */
387
388static void trans_go_xmote_bh(struct gfs2_glock *gl)
389{
390 struct gfs2_sbd *sdp = gl->gl_sbd;
feaa7bba 391 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode);
5c676f6d 392 struct gfs2_glock *j_gl = ip->i_gl;
55167622 393 struct gfs2_log_header_host head;
b3b94faa
DT
394 int error;
395
396 if (gl->gl_state != LM_ST_UNLOCKED &&
397 test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
feaa7bba 398 gfs2_meta_cache_flush(GFS2_I(sdp->sd_jdesc->jd_inode));
1a14d3a6 399 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA);
b3b94faa
DT
400
401 error = gfs2_find_jhead(sdp->sd_jdesc, &head);
402 if (error)
403 gfs2_consist(sdp);
404 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT))
405 gfs2_consist(sdp);
406
407 /* Initialize some head of the log stuff */
408 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) {
409 sdp->sd_log_sequence = head.lh_sequence + 1;
410 gfs2_log_pointers_init(sdp, head.lh_blkno);
411 }
412 }
413}
414
415/**
416 * trans_go_drop_th - unlock the transaction glock
417 * @gl: the glock
418 *
419 * We want to sync the device even with localcaching. Remember
420 * that localcaching journal replay only marks buffers dirty.
421 */
422
423static void trans_go_drop_th(struct gfs2_glock *gl)
424{
425 struct gfs2_sbd *sdp = gl->gl_sbd;
426
427 if (test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
428 gfs2_meta_syncfs(sdp);
429 gfs2_log_shutdown(sdp);
430 }
431
432 gfs2_glock_drop_th(gl);
433}
434
435/**
436 * quota_go_demote_ok - Check to see if it's ok to unlock a quota glock
437 * @gl: the glock
438 *
439 * Returns: 1 if it's ok
440 */
441
442static int quota_go_demote_ok(struct gfs2_glock *gl)
443{
444 return !atomic_read(&gl->gl_lvb_count);
445}
446
8fb4b536 447const struct gfs2_glock_operations gfs2_meta_glops = {
b3b94faa
DT
448 .go_xmote_th = gfs2_glock_xmote_th,
449 .go_drop_th = gfs2_glock_drop_th,
ea67eedb 450 .go_type = LM_TYPE_META,
b3b94faa
DT
451};
452
8fb4b536 453const struct gfs2_glock_operations gfs2_inode_glops = {
b3b94faa
DT
454 .go_xmote_th = inode_go_xmote_th,
455 .go_xmote_bh = inode_go_xmote_bh,
456 .go_drop_th = inode_go_drop_th,
457 .go_sync = inode_go_sync,
458 .go_inval = inode_go_inval,
459 .go_demote_ok = inode_go_demote_ok,
460 .go_lock = inode_go_lock,
461 .go_unlock = inode_go_unlock,
ea67eedb 462 .go_type = LM_TYPE_INODE,
b3b94faa
DT
463};
464
8fb4b536 465const struct gfs2_glock_operations gfs2_rgrp_glops = {
b3b94faa
DT
466 .go_xmote_th = gfs2_glock_xmote_th,
467 .go_drop_th = gfs2_glock_drop_th,
468 .go_sync = meta_go_sync,
469 .go_inval = meta_go_inval,
470 .go_demote_ok = rgrp_go_demote_ok,
471 .go_lock = rgrp_go_lock,
472 .go_unlock = rgrp_go_unlock,
ea67eedb 473 .go_type = LM_TYPE_RGRP,
b3b94faa
DT
474};
475
8fb4b536 476const struct gfs2_glock_operations gfs2_trans_glops = {
b3b94faa
DT
477 .go_xmote_th = trans_go_xmote_th,
478 .go_xmote_bh = trans_go_xmote_bh,
479 .go_drop_th = trans_go_drop_th,
ea67eedb 480 .go_type = LM_TYPE_NONDISK,
b3b94faa
DT
481};
482
8fb4b536 483const struct gfs2_glock_operations gfs2_iopen_glops = {
b3b94faa
DT
484 .go_xmote_th = gfs2_glock_xmote_th,
485 .go_drop_th = gfs2_glock_drop_th,
ea67eedb 486 .go_type = LM_TYPE_IOPEN,
b3b94faa
DT
487};
488
8fb4b536 489const struct gfs2_glock_operations gfs2_flock_glops = {
b3b94faa
DT
490 .go_xmote_th = gfs2_glock_xmote_th,
491 .go_drop_th = gfs2_glock_drop_th,
ea67eedb 492 .go_type = LM_TYPE_FLOCK,
b3b94faa
DT
493};
494
8fb4b536 495const struct gfs2_glock_operations gfs2_nondisk_glops = {
b3b94faa
DT
496 .go_xmote_th = gfs2_glock_xmote_th,
497 .go_drop_th = gfs2_glock_drop_th,
ea67eedb 498 .go_type = LM_TYPE_NONDISK,
b3b94faa
DT
499};
500
8fb4b536 501const struct gfs2_glock_operations gfs2_quota_glops = {
b3b94faa
DT
502 .go_xmote_th = gfs2_glock_xmote_th,
503 .go_drop_th = gfs2_glock_drop_th,
504 .go_demote_ok = quota_go_demote_ok,
ea67eedb 505 .go_type = LM_TYPE_QUOTA,
b3b94faa
DT
506};
507
8fb4b536 508const struct gfs2_glock_operations gfs2_journal_glops = {
b3b94faa
DT
509 .go_xmote_th = gfs2_glock_xmote_th,
510 .go_drop_th = gfs2_glock_drop_th,
ea67eedb 511 .go_type = LM_TYPE_JOURNAL,
b3b94faa
DT
512};
513