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/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/gfs2_ondisk.h>
16 #include <linux/lm_interface.h>
31 * gfs2_pin - Pin a buffer in memory
32 * @sdp: The superblock
33 * @bh: The buffer to be pinned
35 * The log lock must be held when calling this function
37 static void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh)
39 struct gfs2_bufdata *bd;
41 gfs2_assert_withdraw(sdp, test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags));
43 clear_buffer_dirty(bh);
44 if (test_set_buffer_pinned(bh))
45 gfs2_assert_withdraw(sdp, 0);
46 if (!buffer_uptodate(bh))
47 gfs2_io_error_bh(sdp, bh);
49 /* If this buffer is in the AIL and it has already been written
50 * to in-place disk block, remove it from the AIL.
53 list_move(&bd->bd_ail_st_list, &bd->bd_ail->ai_ail2_list);
58 * gfs2_unpin - Unpin a buffer
59 * @sdp: the filesystem the buffer belongs to
60 * @bh: The buffer to unpin
65 static void gfs2_unpin(struct gfs2_sbd *sdp, struct buffer_head *bh,
68 struct gfs2_bufdata *bd = bh->b_private;
70 gfs2_assert_withdraw(sdp, buffer_uptodate(bh));
72 if (!buffer_pinned(bh))
73 gfs2_assert_withdraw(sdp, 0);
76 mark_buffer_dirty(bh);
77 clear_buffer_pinned(bh);
81 list_del(&bd->bd_ail_st_list);
84 struct gfs2_glock *gl = bd->bd_gl;
85 list_add(&bd->bd_ail_gl_list, &gl->gl_ail_list);
86 atomic_inc(&gl->gl_ail_count);
89 list_add(&bd->bd_ail_st_list, &ai->ai_ail1_list);
90 clear_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
96 static inline struct gfs2_log_descriptor *bh_log_desc(struct buffer_head *bh)
98 return (struct gfs2_log_descriptor *)bh->b_data;
101 static inline __be64 *bh_log_ptr(struct buffer_head *bh)
103 struct gfs2_log_descriptor *ld = bh_log_desc(bh);
104 return (__force __be64 *)(ld + 1);
107 static inline __be64 *bh_ptr_end(struct buffer_head *bh)
109 return (__force __be64 *)(bh->b_data + bh->b_size);
113 static struct buffer_head *gfs2_get_log_desc(struct gfs2_sbd *sdp, u32 ld_type)
115 struct buffer_head *bh = gfs2_log_get_buf(sdp);
116 struct gfs2_log_descriptor *ld = bh_log_desc(bh);
117 ld->ld_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
118 ld->ld_header.mh_type = cpu_to_be32(GFS2_METATYPE_LD);
119 ld->ld_header.mh_format = cpu_to_be32(GFS2_FORMAT_LD);
120 ld->ld_type = cpu_to_be32(ld_type);
124 memset(ld->ld_reserved, 0, sizeof(ld->ld_reserved));
128 static void buf_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
130 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
131 struct gfs2_trans *tr;
133 lock_buffer(bd->bd_bh);
135 if (!list_empty(&bd->bd_list_tr))
137 tr = current->journal_info;
140 list_add(&bd->bd_list_tr, &tr->tr_list_buf);
141 if (!list_empty(&le->le_list))
143 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
144 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
145 gfs2_meta_check(sdp, bd->bd_bh);
146 gfs2_pin(sdp, bd->bd_bh);
147 sdp->sd_log_num_buf++;
148 list_add(&le->le_list, &sdp->sd_log_le_buf);
149 tr->tr_num_buf_new++;
151 gfs2_log_unlock(sdp);
152 unlock_buffer(bd->bd_bh);
155 static void buf_lo_before_commit(struct gfs2_sbd *sdp)
157 struct buffer_head *bh;
158 struct gfs2_log_descriptor *ld;
159 struct gfs2_bufdata *bd1 = NULL, *bd2;
166 limit = buf_limit(sdp);
167 /* for 4k blocks, limit = 503 */
170 total = sdp->sd_log_num_buf;
171 bd1 = bd2 = list_prepare_entry(bd1, &sdp->sd_log_le_buf, bd_le.le_list);
176 gfs2_log_unlock(sdp);
177 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_METADATA);
179 ld = bh_log_desc(bh);
180 ptr = bh_log_ptr(bh);
181 ld->ld_length = cpu_to_be32(num + 1);
182 ld->ld_data1 = cpu_to_be32(num);
185 list_for_each_entry_continue(bd1, &sdp->sd_log_le_buf,
187 *ptr++ = cpu_to_be64(bd1->bd_bh->b_blocknr);
192 gfs2_log_unlock(sdp);
193 submit_bh(WRITE, bh);
197 list_for_each_entry_continue(bd2, &sdp->sd_log_le_buf,
200 gfs2_log_unlock(sdp);
201 lock_buffer(bd2->bd_bh);
202 bh = gfs2_log_fake_buf(sdp, bd2->bd_bh);
203 submit_bh(WRITE, bh);
212 gfs2_log_unlock(sdp);
215 static void buf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
217 struct list_head *head = &sdp->sd_log_le_buf;
218 struct gfs2_bufdata *bd;
220 while (!list_empty(head)) {
221 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
222 list_del_init(&bd->bd_le.le_list);
223 sdp->sd_log_num_buf--;
225 gfs2_unpin(sdp, bd->bd_bh, ai);
227 gfs2_assert_warn(sdp, !sdp->sd_log_num_buf);
230 static void buf_lo_before_scan(struct gfs2_jdesc *jd,
231 struct gfs2_log_header_host *head, int pass)
233 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
238 sdp->sd_found_blocks = 0;
239 sdp->sd_replayed_blocks = 0;
242 static int buf_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
243 struct gfs2_log_descriptor *ld, __be64 *ptr,
246 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
247 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
248 struct gfs2_glock *gl = ip->i_gl;
249 unsigned int blks = be32_to_cpu(ld->ld_data1);
250 struct buffer_head *bh_log, *bh_ip;
254 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_METADATA)
257 gfs2_replay_incr_blk(sdp, &start);
259 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
260 blkno = be64_to_cpu(*ptr++);
262 sdp->sd_found_blocks++;
264 if (gfs2_revoke_check(sdp, blkno, start))
267 error = gfs2_replay_read_block(jd, start, &bh_log);
271 bh_ip = gfs2_meta_new(gl, blkno);
272 memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
274 if (gfs2_meta_check(sdp, bh_ip))
277 mark_buffer_dirty(bh_ip);
285 sdp->sd_replayed_blocks++;
291 static void buf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
293 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
294 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
297 gfs2_meta_sync(ip->i_gl);
303 gfs2_meta_sync(ip->i_gl);
305 fs_info(sdp, "jid=%u: Replayed %u of %u blocks\n",
306 jd->jd_jid, sdp->sd_replayed_blocks, sdp->sd_found_blocks);
309 static void revoke_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
311 struct gfs2_trans *tr;
313 tr = current->journal_info;
316 sdp->sd_log_num_revoke++;
317 list_add(&le->le_list, &sdp->sd_log_le_revoke);
320 static void revoke_lo_before_commit(struct gfs2_sbd *sdp)
322 struct gfs2_log_descriptor *ld;
323 struct gfs2_meta_header *mh;
324 struct buffer_head *bh;
326 struct list_head *head = &sdp->sd_log_le_revoke;
327 struct gfs2_bufdata *bd;
329 if (!sdp->sd_log_num_revoke)
332 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_REVOKE);
333 ld = bh_log_desc(bh);
334 ld->ld_length = cpu_to_be32(gfs2_struct2blk(sdp, sdp->sd_log_num_revoke,
336 ld->ld_data1 = cpu_to_be32(sdp->sd_log_num_revoke);
337 offset = sizeof(struct gfs2_log_descriptor);
339 while (!list_empty(head)) {
340 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
341 list_del_init(&bd->bd_le.le_list);
342 sdp->sd_log_num_revoke--;
344 if (offset + sizeof(u64) > sdp->sd_sb.sb_bsize) {
345 submit_bh(WRITE, bh);
347 bh = gfs2_log_get_buf(sdp);
348 mh = (struct gfs2_meta_header *)bh->b_data;
349 mh->mh_magic = cpu_to_be32(GFS2_MAGIC);
350 mh->mh_type = cpu_to_be32(GFS2_METATYPE_LB);
351 mh->mh_format = cpu_to_be32(GFS2_FORMAT_LB);
352 offset = sizeof(struct gfs2_meta_header);
355 *(__be64 *)(bh->b_data + offset) = cpu_to_be64(bd->bd_blkno);
356 kmem_cache_free(gfs2_bufdata_cachep, bd);
358 offset += sizeof(u64);
360 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
362 submit_bh(WRITE, bh);
365 static void revoke_lo_before_scan(struct gfs2_jdesc *jd,
366 struct gfs2_log_header_host *head, int pass)
368 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
373 sdp->sd_found_revokes = 0;
374 sdp->sd_replay_tail = head->lh_tail;
377 static int revoke_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
378 struct gfs2_log_descriptor *ld, __be64 *ptr,
381 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
382 unsigned int blks = be32_to_cpu(ld->ld_length);
383 unsigned int revokes = be32_to_cpu(ld->ld_data1);
384 struct buffer_head *bh;
390 if (pass != 0 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_REVOKE)
393 offset = sizeof(struct gfs2_log_descriptor);
395 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
396 error = gfs2_replay_read_block(jd, start, &bh);
401 gfs2_metatype_check(sdp, bh, GFS2_METATYPE_LB);
403 while (offset + sizeof(u64) <= sdp->sd_sb.sb_bsize) {
404 blkno = be64_to_cpu(*(__be64 *)(bh->b_data + offset));
406 error = gfs2_revoke_add(sdp, blkno, start);
412 sdp->sd_found_revokes++;
416 offset += sizeof(u64);
420 offset = sizeof(struct gfs2_meta_header);
427 static void revoke_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
429 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
432 gfs2_revoke_clean(sdp);
438 fs_info(sdp, "jid=%u: Found %u revoke tags\n",
439 jd->jd_jid, sdp->sd_found_revokes);
441 gfs2_revoke_clean(sdp);
444 static void rg_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
446 struct gfs2_rgrpd *rgd;
447 struct gfs2_trans *tr = current->journal_info;
451 rgd = container_of(le, struct gfs2_rgrpd, rd_le);
454 if (!list_empty(&le->le_list)){
455 gfs2_log_unlock(sdp);
458 gfs2_rgrp_bh_hold(rgd);
459 sdp->sd_log_num_rg++;
460 list_add(&le->le_list, &sdp->sd_log_le_rg);
461 gfs2_log_unlock(sdp);
464 static void rg_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
466 struct list_head *head = &sdp->sd_log_le_rg;
467 struct gfs2_rgrpd *rgd;
469 while (!list_empty(head)) {
470 rgd = list_entry(head->next, struct gfs2_rgrpd, rd_le.le_list);
471 list_del_init(&rgd->rd_le.le_list);
472 sdp->sd_log_num_rg--;
474 gfs2_rgrp_repolish_clones(rgd);
475 gfs2_rgrp_bh_put(rgd);
477 gfs2_assert_warn(sdp, !sdp->sd_log_num_rg);
481 * databuf_lo_add - Add a databuf to the transaction.
483 * This is used in two distinct cases:
484 * i) In ordered write mode
485 * We put the data buffer on a list so that we can ensure that its
486 * synced to disk at the right time
487 * ii) In journaled data mode
488 * We need to journal the data block in the same way as metadata in
489 * the functions above. The difference is that here we have a tag
490 * which is two __be64's being the block number (as per meta data)
491 * and a flag which says whether the data block needs escaping or
492 * not. This means we need a new log entry for each 251 or so data
493 * blocks, which isn't an enormous overhead but twice as much as
494 * for normal metadata blocks.
496 static void databuf_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
498 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
499 struct gfs2_trans *tr = current->journal_info;
500 struct address_space *mapping = bd->bd_bh->b_page->mapping;
501 struct gfs2_inode *ip = GFS2_I(mapping->host);
503 lock_buffer(bd->bd_bh);
506 if (!list_empty(&bd->bd_list_tr))
509 if (gfs2_is_jdata(ip)) {
511 list_add(&bd->bd_list_tr, &tr->tr_list_buf);
514 if (!list_empty(&le->le_list))
517 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
518 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
519 if (gfs2_is_jdata(ip)) {
520 gfs2_pin(sdp, bd->bd_bh);
521 tr->tr_num_databuf_new++;
522 sdp->sd_log_num_databuf++;
523 list_add(&le->le_list, &sdp->sd_log_le_databuf);
525 list_add(&le->le_list, &sdp->sd_log_le_ordered);
528 gfs2_log_unlock(sdp);
529 unlock_buffer(bd->bd_bh);
532 static void gfs2_check_magic(struct buffer_head *bh)
537 clear_buffer_escaped(bh);
538 kaddr = kmap_atomic(bh->b_page, KM_USER0);
539 ptr = kaddr + bh_offset(bh);
540 if (*ptr == cpu_to_be32(GFS2_MAGIC))
541 set_buffer_escaped(bh);
542 kunmap_atomic(kaddr, KM_USER0);
545 static void gfs2_write_blocks(struct gfs2_sbd *sdp, struct buffer_head *bh,
546 struct list_head *list, struct list_head *done,
549 struct buffer_head *bh1;
550 struct gfs2_log_descriptor *ld;
551 struct gfs2_bufdata *bd;
557 ld = bh_log_desc(bh);
558 ld->ld_length = cpu_to_be32(n + 1);
559 ld->ld_data1 = cpu_to_be32(n);
561 ptr = bh_log_ptr(bh);
564 submit_bh(WRITE, bh);
566 while(!list_empty(list)) {
567 bd = list_entry(list->next, struct gfs2_bufdata, bd_le.le_list);
568 list_move_tail(&bd->bd_le.le_list, done);
570 while (be64_to_cpu(*ptr) != bd->bd_bh->b_blocknr) {
571 gfs2_log_incr_head(sdp);
574 gfs2_log_unlock(sdp);
575 lock_buffer(bd->bd_bh);
576 if (buffer_escaped(bd->bd_bh)) {
578 bh1 = gfs2_log_get_buf(sdp);
579 kaddr = kmap_atomic(bd->bd_bh->b_page, KM_USER0);
580 memcpy(bh1->b_data, kaddr + bh_offset(bd->bd_bh),
582 kunmap_atomic(kaddr, KM_USER0);
583 *(__be32 *)bh1->b_data = 0;
584 clear_buffer_escaped(bd->bd_bh);
585 unlock_buffer(bd->bd_bh);
588 bh1 = gfs2_log_fake_buf(sdp, bd->bd_bh);
590 submit_bh(WRITE, bh1);
594 gfs2_log_unlock(sdp);
599 * databuf_lo_before_commit - Scan the data buffers, writing as we go
603 static void databuf_lo_before_commit(struct gfs2_sbd *sdp)
605 struct gfs2_bufdata *bd = NULL;
606 struct buffer_head *bh = NULL;
608 __be64 *ptr = NULL, *end = NULL;
609 LIST_HEAD(processed);
610 LIST_HEAD(in_progress);
613 while (!list_empty(&sdp->sd_log_le_databuf)) {
615 gfs2_log_unlock(sdp);
616 gfs2_write_blocks(sdp, bh, &in_progress, &processed, n);
618 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_JDATA);
619 ptr = bh_log_ptr(bh);
620 end = bh_ptr_end(bh) - 1;
624 bd = list_entry(sdp->sd_log_le_databuf.next, struct gfs2_bufdata, bd_le.le_list);
625 list_move_tail(&bd->bd_le.le_list, &in_progress);
626 gfs2_check_magic(bd->bd_bh);
627 *ptr++ = cpu_to_be64(bd->bd_bh->b_blocknr);
628 *ptr++ = cpu_to_be64(buffer_escaped(bh) ? 1 : 0);
631 gfs2_log_unlock(sdp);
632 gfs2_write_blocks(sdp, bh, &in_progress, &processed, n);
634 list_splice(&processed, &sdp->sd_log_le_databuf);
635 gfs2_log_unlock(sdp);
638 static int databuf_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
639 struct gfs2_log_descriptor *ld,
640 __be64 *ptr, int pass)
642 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
643 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
644 struct gfs2_glock *gl = ip->i_gl;
645 unsigned int blks = be32_to_cpu(ld->ld_data1);
646 struct buffer_head *bh_log, *bh_ip;
651 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_JDATA)
654 gfs2_replay_incr_blk(sdp, &start);
655 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
656 blkno = be64_to_cpu(*ptr++);
657 esc = be64_to_cpu(*ptr++);
659 sdp->sd_found_blocks++;
661 if (gfs2_revoke_check(sdp, blkno, start))
664 error = gfs2_replay_read_block(jd, start, &bh_log);
668 bh_ip = gfs2_meta_new(gl, blkno);
669 memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
673 __be32 *eptr = (__be32 *)bh_ip->b_data;
674 *eptr = cpu_to_be32(GFS2_MAGIC);
676 mark_buffer_dirty(bh_ip);
683 sdp->sd_replayed_blocks++;
689 /* FIXME: sort out accounting for log blocks etc. */
691 static void databuf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
693 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
694 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
697 gfs2_meta_sync(ip->i_gl);
704 gfs2_meta_sync(ip->i_gl);
706 fs_info(sdp, "jid=%u: Replayed %u of %u data blocks\n",
707 jd->jd_jid, sdp->sd_replayed_blocks, sdp->sd_found_blocks);
710 static void databuf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
712 struct list_head *head = &sdp->sd_log_le_databuf;
713 struct gfs2_bufdata *bd;
715 while (!list_empty(head)) {
716 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
717 list_del_init(&bd->bd_le.le_list);
718 sdp->sd_log_num_databuf--;
719 gfs2_unpin(sdp, bd->bd_bh, ai);
721 gfs2_assert_warn(sdp, !sdp->sd_log_num_databuf);
725 const struct gfs2_log_operations gfs2_buf_lops = {
726 .lo_add = buf_lo_add,
727 .lo_before_commit = buf_lo_before_commit,
728 .lo_after_commit = buf_lo_after_commit,
729 .lo_before_scan = buf_lo_before_scan,
730 .lo_scan_elements = buf_lo_scan_elements,
731 .lo_after_scan = buf_lo_after_scan,
735 const struct gfs2_log_operations gfs2_revoke_lops = {
736 .lo_add = revoke_lo_add,
737 .lo_before_commit = revoke_lo_before_commit,
738 .lo_before_scan = revoke_lo_before_scan,
739 .lo_scan_elements = revoke_lo_scan_elements,
740 .lo_after_scan = revoke_lo_after_scan,
744 const struct gfs2_log_operations gfs2_rg_lops = {
746 .lo_after_commit = rg_lo_after_commit,
750 const struct gfs2_log_operations gfs2_databuf_lops = {
751 .lo_add = databuf_lo_add,
752 .lo_before_commit = databuf_lo_before_commit,
753 .lo_after_commit = databuf_lo_after_commit,
754 .lo_scan_elements = databuf_lo_scan_elements,
755 .lo_after_scan = databuf_lo_after_scan,
756 .lo_name = "databuf",
759 const struct gfs2_log_operations *gfs2_log_ops[] = {