blob: 33cd523ec97e9ac02d28aa3f71267ea2f39e5196 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
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>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050015#include <linux/kallsyms.h>
Steven Whitehousef057f6c2009-01-12 10:43:39 +000016#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017
18#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000020#include "glock.h"
21#include "log.h"
22#include "lops.h"
23#include "meta_io.h"
24#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050025#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050027int gfs2_trans_begin(struct gfs2_sbd *sdp, unsigned int blocks,
28 unsigned int revokes)
David Teiglandb3b94fa2006-01-16 16:50:04 +000029{
30 struct gfs2_trans *tr;
31 int error;
32
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050033 BUG_ON(current->journal_info);
34 BUG_ON(blocks == 0 && revokes == 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000035
Steven Whitehousef55ab262006-02-21 12:51:39 +000036 tr = kzalloc(sizeof(struct gfs2_trans), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +000037 if (!tr)
38 return -ENOMEM;
39
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050040 tr->tr_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000041 tr->tr_blocks = blocks;
42 tr->tr_revokes = revokes;
43 tr->tr_reserved = 1;
44 if (blocks)
Steven Whitehousef4154ea2006-04-11 14:49:06 -040045 tr->tr_reserved += 6 + blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +000046 if (revokes)
47 tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
Steven Whitehousecd915492006-09-04 12:49:07 -040048 sizeof(u64));
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 INIT_LIST_HEAD(&tr->tr_list_buf);
50
Steven Whitehouse579b78a2006-04-26 14:58:26 -040051 gfs2_holder_init(sdp->sd_trans_gl, LM_ST_SHARED, 0, &tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000052
Steven Whitehousee317ffc2006-03-01 11:39:37 -050053 error = gfs2_glock_nq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000054 if (error)
Steven Whitehousee317ffc2006-03-01 11:39:37 -050055 goto fail_holder_uninit;
David Teiglandb3b94fa2006-01-16 16:50:04 +000056
57 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
Steven Whitehousee317ffc2006-03-01 11:39:37 -050058 tr->tr_t_gh.gh_flags |= GL_NOCACHE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000059 error = -EROFS;
60 goto fail_gunlock;
61 }
62
63 error = gfs2_log_reserve(sdp, tr->tr_reserved);
64 if (error)
65 goto fail_gunlock;
66
Steven Whitehouse5c676f62006-02-27 17:23:27 -050067 current->journal_info = tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000068
69 return 0;
70
Steven Whitehouse484adff2006-03-29 09:12:12 -050071fail_gunlock:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050072 gfs2_glock_dq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000073
Steven Whitehouse484adff2006-03-29 09:12:12 -050074fail_holder_uninit:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050075 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000076 kfree(tr);
77
78 return error;
79}
80
81void gfs2_trans_end(struct gfs2_sbd *sdp)
82{
Steven Whitehousef4154ea2006-04-11 14:49:06 -040083 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +000084
Steven Whitehousef4154ea2006-04-11 14:49:06 -040085 BUG_ON(!tr);
Steven Whitehouse5c676f62006-02-27 17:23:27 -050086 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000087
David Teiglandb3b94fa2006-01-16 16:50:04 +000088 if (!tr->tr_touched) {
89 gfs2_log_release(sdp, tr->tr_reserved);
Steven Whitehouseb4dc7292006-03-01 17:41:58 -050090 gfs2_glock_dq(&tr->tr_t_gh);
91 gfs2_holder_uninit(&tr->tr_t_gh);
Steven Whitehousee317ffc2006-03-01 11:39:37 -050092 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000093 return;
94 }
95
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050096 if (gfs2_assert_withdraw(sdp, tr->tr_num_buf <= tr->tr_blocks)) {
97 fs_err(sdp, "tr_num_buf = %u, tr_blocks = %u ",
98 tr->tr_num_buf, tr->tr_blocks);
99 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
100 }
Steven Whitehousecd456972006-03-30 11:10:12 -0500101 if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes)) {
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500102 fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ",
103 tr->tr_num_revoke, tr->tr_revokes);
104 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
Steven Whitehousecd456972006-03-30 11:10:12 -0500105 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106
107 gfs2_log_commit(sdp, tr);
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500108 gfs2_glock_dq(&tr->tr_t_gh);
109 gfs2_holder_uninit(&tr->tr_t_gh);
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500110 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111
112 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400113 gfs2_log_flush(sdp, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114}
115
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116/**
117 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
118 * @gl: the glock the buffer belongs to
119 * @bh: The buffer to add
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000120 * @meta: True in the case of adding metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121 *
122 */
123
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000124void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125{
126 struct gfs2_sbd *sdp = gl->gl_sbd;
127 struct gfs2_bufdata *bd;
128
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500129 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000130 if (bd)
131 gfs2_assert(sdp, bd->bd_gl == gl);
132 else {
Steven Whitehouse586dfda2006-01-18 11:32:00 +0000133 gfs2_attach_bufdata(gl, bh, meta);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500134 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136 lops_add(sdp, &bd->bd_le);
137}
138
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100139void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, struct gfs2_bufdata *bd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140{
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100141 BUG_ON(!list_empty(&bd->bd_le.le_list));
142 BUG_ON(!list_empty(&bd->bd_ail_st_list));
143 BUG_ON(!list_empty(&bd->bd_ail_gl_list));
Steven Whitehouse82e86082007-09-02 15:39:43 +0100144 lops_init_le(&bd->bd_le, &gfs2_revoke_lops);
Steven Whitehouse82e86082007-09-02 15:39:43 +0100145 lops_add(sdp, &bd->bd_le);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146}
147
Steven Whitehouse5731be52008-02-01 13:16:55 +0000148void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, u64 blkno, unsigned int len)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149{
Steven Whitehouse5731be52008-02-01 13:16:55 +0000150 struct gfs2_bufdata *bd, *tmp;
151 struct gfs2_trans *tr = current->journal_info;
152 unsigned int n = len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153
154 gfs2_log_lock(sdp);
Steven Whitehouse5731be52008-02-01 13:16:55 +0000155 list_for_each_entry_safe(bd, tmp, &sdp->sd_log_le_revoke, bd_le.le_list) {
156 if ((bd->bd_blkno >= blkno) && (bd->bd_blkno < (blkno + len))) {
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100157 list_del_init(&bd->bd_le.le_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
159 sdp->sd_log_num_revoke--;
Steven Whitehouse5731be52008-02-01 13:16:55 +0000160 kmem_cache_free(gfs2_bufdata_cachep, bd);
161 tr->tr_num_revoke_rm++;
162 if (--n == 0)
163 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000164 }
165 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167}
168
169void gfs2_trans_add_rg(struct gfs2_rgrpd *rgd)
170{
171 lops_add(rgd->rd_sbd, &rgd->rd_le);
172}
173