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/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/completion.h>
13 #include <linux/buffer_head.h>
14 #include <linux/gfs2_ondisk.h>
15 #include <linux/lm_interface.h>
31 * ail_empty_gl - remove all buffers for a given lock from the AIL
34 * None of the buffers should be dirty, locked, or pinned.
37 static void gfs2_ail_empty_gl(struct gfs2_glock
*gl
)
39 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
41 struct list_head
*head
= &gl
->gl_ail_list
;
42 struct gfs2_bufdata
*bd
;
43 struct buffer_head
*bh
;
46 blocks
= atomic_read(&gl
->gl_ail_count
);
50 error
= gfs2_trans_begin(sdp
, 0, blocks
);
51 if (gfs2_assert_withdraw(sdp
, !error
))
55 while (!list_empty(head
)) {
56 bd
= list_entry(head
->next
, struct gfs2_bufdata
,
59 gfs2_remove_from_ail(NULL
, bd
);
62 bd
->bd_blkno
= bh
->b_blocknr
;
63 gfs2_assert_withdraw(sdp
, !buffer_busy(bh
));
64 gfs2_trans_add_revoke(sdp
, bd
);
66 gfs2_assert_withdraw(sdp
, !atomic_read(&gl
->gl_ail_count
));
70 gfs2_log_flush(sdp
, NULL
);
74 * gfs2_pte_inval - Sync and invalidate all PTEs associated with a glock
79 static void gfs2_pte_inval(struct gfs2_glock
*gl
)
81 struct gfs2_inode
*ip
;
86 if (!ip
|| !S_ISREG(inode
->i_mode
))
89 if (!test_bit(GIF_PAGED
, &ip
->i_flags
))
92 unmap_shared_mapping_range(inode
->i_mapping
, 0, 0);
94 if (test_bit(GIF_SW_PAGED
, &ip
->i_flags
))
95 set_bit(GLF_DIRTY
, &gl
->gl_flags
);
97 clear_bit(GIF_SW_PAGED
, &ip
->i_flags
);
101 * meta_go_sync - sync out the metadata for this glock
104 * Called when demoting or unlocking an EX glock. We must flush
105 * to disk all dirty buffers/pages relating to this glock, and must not
106 * not return to caller to demote/unlock the glock until I/O is complete.
109 static void meta_go_sync(struct gfs2_glock
*gl
)
111 if (gl
->gl_state
!= LM_ST_EXCLUSIVE
)
114 if (test_and_clear_bit(GLF_DIRTY
, &gl
->gl_flags
)) {
115 gfs2_log_flush(gl
->gl_sbd
, gl
);
117 gfs2_ail_empty_gl(gl
);
122 * meta_go_inval - invalidate the metadata for this glock
128 static void meta_go_inval(struct gfs2_glock
*gl
, int flags
)
130 if (!(flags
& DIO_METADATA
))
138 * inode_go_sync - Sync the dirty data and/or metadata for an inode glock
139 * @gl: the glock protecting the inode
143 static void inode_go_sync(struct gfs2_glock
*gl
)
145 struct gfs2_inode
*ip
= gl
->gl_object
;
147 if (ip
&& !S_ISREG(ip
->i_inode
.i_mode
))
150 if (test_bit(GLF_DIRTY
, &gl
->gl_flags
)) {
151 if (ip
&& !gfs2_is_jdata(ip
))
152 filemap_fdatawrite(ip
->i_inode
.i_mapping
);
153 gfs2_log_flush(gl
->gl_sbd
, gl
);
154 if (ip
&& gfs2_is_jdata(ip
))
155 filemap_fdatawrite(ip
->i_inode
.i_mapping
);
158 struct address_space
*mapping
= ip
->i_inode
.i_mapping
;
159 int error
= filemap_fdatawait(mapping
);
160 mapping_set_error(mapping
, error
);
162 clear_bit(GLF_DIRTY
, &gl
->gl_flags
);
163 gfs2_ail_empty_gl(gl
);
168 * inode_go_xmote_th - promote/demote a glock
170 * @state: the requested state
175 static void inode_go_xmote_th(struct gfs2_glock
*gl
)
177 if (gl
->gl_state
!= LM_ST_UNLOCKED
)
179 if (gl
->gl_state
== LM_ST_EXCLUSIVE
)
184 * inode_go_xmote_bh - After promoting/demoting a glock
189 static void inode_go_xmote_bh(struct gfs2_glock
*gl
)
191 struct gfs2_holder
*gh
= gl
->gl_req_gh
;
192 struct buffer_head
*bh
;
195 if (gl
->gl_state
!= LM_ST_UNLOCKED
&&
196 (!gh
|| !(gh
->gh_flags
& GL_SKIP
))) {
197 error
= gfs2_meta_read(gl
, gl
->gl_name
.ln_number
, 0, &bh
);
204 * inode_go_drop_th - unlock a glock
207 * Invoked from rq_demote().
208 * Another node needs the lock in EXCLUSIVE mode, or lock (unused for too long)
209 * is being purged from our node's glock cache; we're dropping lock.
212 static void inode_go_drop_th(struct gfs2_glock
*gl
)
215 if (gl
->gl_state
== LM_ST_EXCLUSIVE
)
220 * inode_go_inval - prepare a inode glock to be released
226 static void inode_go_inval(struct gfs2_glock
*gl
, int flags
)
228 struct gfs2_inode
*ip
= gl
->gl_object
;
229 int meta
= (flags
& DIO_METADATA
);
234 set_bit(GIF_INVALID
, &ip
->i_flags
);
237 if (ip
&& S_ISREG(ip
->i_inode
.i_mode
)) {
238 truncate_inode_pages(ip
->i_inode
.i_mapping
, 0);
239 clear_bit(GIF_PAGED
, &ip
->i_flags
);
244 * inode_go_demote_ok - Check to see if it's ok to unlock an inode glock
247 * Returns: 1 if it's ok
250 static int inode_go_demote_ok(struct gfs2_glock
*gl
)
252 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
255 if (!gl
->gl_object
&& !gl
->gl_aspace
->i_mapping
->nrpages
)
257 else if (!sdp
->sd_args
.ar_localcaching
&&
258 time_after_eq(jiffies
, gl
->gl_stamp
+
259 gfs2_tune_get(sdp
, gt_demote_secs
) * HZ
))
266 * inode_go_lock - operation done after an inode lock is locked by a process
273 static int inode_go_lock(struct gfs2_holder
*gh
)
275 struct gfs2_glock
*gl
= gh
->gh_gl
;
276 struct gfs2_inode
*ip
= gl
->gl_object
;
282 if (test_bit(GIF_INVALID
, &ip
->i_flags
)) {
283 error
= gfs2_inode_refresh(ip
);
288 if ((ip
->i_di
.di_flags
& GFS2_DIF_TRUNC_IN_PROG
) &&
289 (gl
->gl_state
== LM_ST_EXCLUSIVE
) &&
290 (gh
->gh_state
== LM_ST_EXCLUSIVE
))
291 error
= gfs2_truncatei_resume(ip
);
297 * inode_go_unlock - operation done before an inode lock is unlocked by a
304 static void inode_go_unlock(struct gfs2_holder
*gh
)
306 struct gfs2_glock
*gl
= gh
->gh_gl
;
307 struct gfs2_inode
*ip
= gl
->gl_object
;
310 gfs2_meta_cache_flush(ip
);
314 * rgrp_go_demote_ok - Check to see if it's ok to unlock a RG's glock
317 * Returns: 1 if it's ok
320 static int rgrp_go_demote_ok(struct gfs2_glock
*gl
)
322 return !gl
->gl_aspace
->i_mapping
->nrpages
;
326 * rgrp_go_lock - operation done after an rgrp lock is locked by
327 * a first holder on this node.
334 static int rgrp_go_lock(struct gfs2_holder
*gh
)
336 return gfs2_rgrp_bh_get(gh
->gh_gl
->gl_object
);
340 * rgrp_go_unlock - operation done before an rgrp lock is unlocked by
341 * a last holder on this node.
347 static void rgrp_go_unlock(struct gfs2_holder
*gh
)
349 gfs2_rgrp_bh_put(gh
->gh_gl
->gl_object
);
353 * trans_go_xmote_th - promote/demote the transaction glock
355 * @state: the requested state
360 static void trans_go_xmote_th(struct gfs2_glock
*gl
)
362 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
364 if (gl
->gl_state
!= LM_ST_UNLOCKED
&&
365 test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
366 gfs2_meta_syncfs(sdp
);
367 gfs2_log_shutdown(sdp
);
372 * trans_go_xmote_bh - After promoting/demoting the transaction glock
377 static void trans_go_xmote_bh(struct gfs2_glock
*gl
)
379 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
380 struct gfs2_inode
*ip
= GFS2_I(sdp
->sd_jdesc
->jd_inode
);
381 struct gfs2_glock
*j_gl
= ip
->i_gl
;
382 struct gfs2_log_header_host head
;
385 if (gl
->gl_state
!= LM_ST_UNLOCKED
&&
386 test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
387 gfs2_meta_cache_flush(GFS2_I(sdp
->sd_jdesc
->jd_inode
));
388 j_gl
->gl_ops
->go_inval(j_gl
, DIO_METADATA
);
390 error
= gfs2_find_jhead(sdp
->sd_jdesc
, &head
);
393 if (!(head
.lh_flags
& GFS2_LOG_HEAD_UNMOUNT
))
396 /* Initialize some head of the log stuff */
397 if (!test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
)) {
398 sdp
->sd_log_sequence
= head
.lh_sequence
+ 1;
399 gfs2_log_pointers_init(sdp
, head
.lh_blkno
);
405 * trans_go_drop_th - unlock the transaction glock
408 * We want to sync the device even with localcaching. Remember
409 * that localcaching journal replay only marks buffers dirty.
412 static void trans_go_drop_th(struct gfs2_glock
*gl
)
414 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
416 if (test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
417 gfs2_meta_syncfs(sdp
);
418 gfs2_log_shutdown(sdp
);
423 * quota_go_demote_ok - Check to see if it's ok to unlock a quota glock
426 * Returns: 1 if it's ok
429 static int quota_go_demote_ok(struct gfs2_glock
*gl
)
431 return !atomic_read(&gl
->gl_lvb_count
);
434 const struct gfs2_glock_operations gfs2_meta_glops
= {
435 .go_xmote_th
= meta_go_sync
,
436 .go_drop_th
= meta_go_sync
,
437 .go_type
= LM_TYPE_META
,
440 const struct gfs2_glock_operations gfs2_inode_glops
= {
441 .go_xmote_th
= inode_go_xmote_th
,
442 .go_xmote_bh
= inode_go_xmote_bh
,
443 .go_drop_th
= inode_go_drop_th
,
444 .go_inval
= inode_go_inval
,
445 .go_demote_ok
= inode_go_demote_ok
,
446 .go_lock
= inode_go_lock
,
447 .go_unlock
= inode_go_unlock
,
448 .go_type
= LM_TYPE_INODE
,
449 .go_min_hold_time
= HZ
/ 10,
452 const struct gfs2_glock_operations gfs2_rgrp_glops
= {
453 .go_xmote_th
= meta_go_sync
,
454 .go_drop_th
= meta_go_sync
,
455 .go_inval
= meta_go_inval
,
456 .go_demote_ok
= rgrp_go_demote_ok
,
457 .go_lock
= rgrp_go_lock
,
458 .go_unlock
= rgrp_go_unlock
,
459 .go_type
= LM_TYPE_RGRP
,
460 .go_min_hold_time
= HZ
/ 10,
463 const struct gfs2_glock_operations gfs2_trans_glops
= {
464 .go_xmote_th
= trans_go_xmote_th
,
465 .go_xmote_bh
= trans_go_xmote_bh
,
466 .go_drop_th
= trans_go_drop_th
,
467 .go_type
= LM_TYPE_NONDISK
,
470 const struct gfs2_glock_operations gfs2_iopen_glops
= {
471 .go_type
= LM_TYPE_IOPEN
,
474 const struct gfs2_glock_operations gfs2_flock_glops
= {
475 .go_type
= LM_TYPE_FLOCK
,
478 const struct gfs2_glock_operations gfs2_nondisk_glops
= {
479 .go_type
= LM_TYPE_NONDISK
,
482 const struct gfs2_glock_operations gfs2_quota_glops
= {
483 .go_demote_ok
= quota_go_demote_ok
,
484 .go_type
= LM_TYPE_QUOTA
,
487 const struct gfs2_glock_operations gfs2_journal_glops
= {
488 .go_type
= LM_TYPE_JOURNAL
,