blob: 18c606d071265323e223e4c981d0e143d5b6bae9 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 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 v.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>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050016#include <linux/kallsyms.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017#include <asm/semaphore.h>
18
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "lm_interface.h"
21#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "glock.h"
23#include "log.h"
24#include "lops.h"
25#include "meta_io.h"
26#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050027#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050029int gfs2_trans_begin(struct gfs2_sbd *sdp, unsigned int blocks,
30 unsigned int revokes)
David Teiglandb3b94fa2006-01-16 16:50:04 +000031{
32 struct gfs2_trans *tr;
33 int error;
34
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050035 BUG_ON(current->journal_info);
36 BUG_ON(blocks == 0 && revokes == 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
Steven Whitehousef55ab262006-02-21 12:51:39 +000038 tr = kzalloc(sizeof(struct gfs2_trans), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +000039 if (!tr)
40 return -ENOMEM;
41
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050042 tr->tr_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 tr->tr_blocks = blocks;
44 tr->tr_revokes = revokes;
45 tr->tr_reserved = 1;
46 if (blocks)
Steven Whitehousef4154ea2006-04-11 14:49:06 -040047 tr->tr_reserved += 6 + blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +000048 if (revokes)
49 tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
50 sizeof(uint64_t));
51 INIT_LIST_HEAD(&tr->tr_list_buf);
52
Steven Whitehouse579b78a2006-04-26 14:58:26 -040053 gfs2_holder_init(sdp->sd_trans_gl, LM_ST_SHARED, 0, &tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000054
Steven Whitehousee317ffc2006-03-01 11:39:37 -050055 error = gfs2_glock_nq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000056 if (error)
Steven Whitehousee317ffc2006-03-01 11:39:37 -050057 goto fail_holder_uninit;
David Teiglandb3b94fa2006-01-16 16:50:04 +000058
59 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
Steven Whitehousee317ffc2006-03-01 11:39:37 -050060 tr->tr_t_gh.gh_flags |= GL_NOCACHE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000061 error = -EROFS;
62 goto fail_gunlock;
63 }
64
65 error = gfs2_log_reserve(sdp, tr->tr_reserved);
66 if (error)
67 goto fail_gunlock;
68
Steven Whitehouse5c676f62006-02-27 17:23:27 -050069 current->journal_info = tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000070
71 return 0;
72
Steven Whitehouse484adff2006-03-29 09:12:12 -050073fail_gunlock:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050074 gfs2_glock_dq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000075
Steven Whitehouse484adff2006-03-29 09:12:12 -050076fail_holder_uninit:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050077 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000078 kfree(tr);
79
80 return error;
81}
82
83void gfs2_trans_end(struct gfs2_sbd *sdp)
84{
Steven Whitehousef4154ea2006-04-11 14:49:06 -040085 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +000086
Steven Whitehousef4154ea2006-04-11 14:49:06 -040087 BUG_ON(!tr);
Steven Whitehouse5c676f62006-02-27 17:23:27 -050088 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000089
David Teiglandb3b94fa2006-01-16 16:50:04 +000090 if (!tr->tr_touched) {
91 gfs2_log_release(sdp, tr->tr_reserved);
Steven Whitehouseb4dc7292006-03-01 17:41:58 -050092 gfs2_glock_dq(&tr->tr_t_gh);
93 gfs2_holder_uninit(&tr->tr_t_gh);
Steven Whitehousee317ffc2006-03-01 11:39:37 -050094 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000095 return;
96 }
97
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050098 if (gfs2_assert_withdraw(sdp, tr->tr_num_buf <= tr->tr_blocks)) {
99 fs_err(sdp, "tr_num_buf = %u, tr_blocks = %u ",
100 tr->tr_num_buf, tr->tr_blocks);
101 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
102 }
Steven Whitehousecd456972006-03-30 11:10:12 -0500103 if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes)) {
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500104 fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ",
105 tr->tr_num_revoke, tr->tr_revokes);
106 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
Steven Whitehousecd456972006-03-30 11:10:12 -0500107 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108
109 gfs2_log_commit(sdp, tr);
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500110 gfs2_glock_dq(&tr->tr_t_gh);
111 gfs2_holder_uninit(&tr->tr_t_gh);
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500112 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113
114 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400115 gfs2_log_flush(sdp, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116}
117
118void gfs2_trans_add_gl(struct gfs2_glock *gl)
119{
120 lops_add(gl->gl_sbd, &gl->gl_le);
121}
122
123/**
124 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
125 * @gl: the glock the buffer belongs to
126 * @bh: The buffer to add
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000127 * @meta: True in the case of adding metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +0000128 *
129 */
130
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000131void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132{
133 struct gfs2_sbd *sdp = gl->gl_sbd;
134 struct gfs2_bufdata *bd;
135
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500136 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000137 if (bd)
138 gfs2_assert(sdp, bd->bd_gl == gl);
139 else {
Steven Whitehouse586dfda2006-01-18 11:32:00 +0000140 gfs2_attach_bufdata(gl, bh, meta);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500141 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143 lops_add(sdp, &bd->bd_le);
144}
145
146void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, uint64_t blkno)
147{
148 struct gfs2_revoke *rv = kmalloc(sizeof(struct gfs2_revoke),
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000149 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 lops_init_le(&rv->rv_le, &gfs2_revoke_lops);
151 rv->rv_blkno = blkno;
152 lops_add(sdp, &rv->rv_le);
153}
154
155void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, uint64_t blkno)
156{
157 struct gfs2_revoke *rv;
158 int found = 0;
159
160 gfs2_log_lock(sdp);
161
162 list_for_each_entry(rv, &sdp->sd_log_le_revoke, rv_le.le_list) {
163 if (rv->rv_blkno == blkno) {
164 list_del(&rv->rv_le.le_list);
165 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
166 sdp->sd_log_num_revoke--;
167 found = 1;
168 break;
169 }
170 }
171
172 gfs2_log_unlock(sdp);
173
174 if (found) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500175 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000176 kfree(rv);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500177 tr->tr_num_revoke_rm++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178 }
179}
180
181void gfs2_trans_add_rg(struct gfs2_rgrpd *rgd)
182{
183 lops_add(rgd->rd_sbd, &rgd->rd_le);
184}
185