blob: 3fae3d4e9ae4ac96ea787330001bcdd3bd44f46c [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)
47 tr->tr_reserved += 1 + blocks;
48 if (revokes)
49 tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
50 sizeof(uint64_t));
51 INIT_LIST_HEAD(&tr->tr_list_buf);
52
Steven Whitehousee317ffc2006-03-01 11:39:37 -050053 gfs2_holder_init(sdp->sd_trans_gl, LM_ST_SHARED,
54 GL_NEVER_RECURSE, &tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000055
Steven Whitehousee317ffc2006-03-01 11:39:37 -050056 error = gfs2_glock_nq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000057 if (error)
Steven Whitehousee317ffc2006-03-01 11:39:37 -050058 goto fail_holder_uninit;
David Teiglandb3b94fa2006-01-16 16:50:04 +000059
60 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
Steven Whitehousee317ffc2006-03-01 11:39:37 -050061 tr->tr_t_gh.gh_flags |= GL_NOCACHE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 error = -EROFS;
63 goto fail_gunlock;
64 }
65
66 error = gfs2_log_reserve(sdp, tr->tr_reserved);
67 if (error)
68 goto fail_gunlock;
69
Steven Whitehouse5c676f62006-02-27 17:23:27 -050070 current->journal_info = tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000071
72 return 0;
73
Steven Whitehouse484adff2006-03-29 09:12:12 -050074fail_gunlock:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050075 gfs2_glock_dq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000076
Steven Whitehouse484adff2006-03-29 09:12:12 -050077fail_holder_uninit:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050078 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000079 kfree(tr);
80
81 return error;
82}
83
84void gfs2_trans_end(struct gfs2_sbd *sdp)
85{
86 struct gfs2_trans *tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000087
Steven Whitehouse5c676f62006-02-27 17:23:27 -050088 tr = current->journal_info;
89 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000090
91 if (gfs2_assert_warn(sdp, tr))
92 return;
93
David Teiglandb3b94fa2006-01-16 16:50:04 +000094 if (!tr->tr_touched) {
95 gfs2_log_release(sdp, tr->tr_reserved);
David Teiglandb3b94fa2006-01-16 16:50:04 +000096
Steven Whitehouseb4dc7292006-03-01 17:41:58 -050097 gfs2_glock_dq(&tr->tr_t_gh);
98 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500100 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101 return;
102 }
103
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500104 if (gfs2_assert_withdraw(sdp, tr->tr_num_buf <= tr->tr_blocks)) {
105 fs_err(sdp, "tr_num_buf = %u, tr_blocks = %u ",
106 tr->tr_num_buf, tr->tr_blocks);
107 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
108 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes))
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500110 fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u ",
111 tr->tr_num_revoke, tr->tr_revokes);
112 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113
114 gfs2_log_commit(sdp, tr);
115
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500116 gfs2_glock_dq(&tr->tr_t_gh);
117 gfs2_holder_uninit(&tr->tr_t_gh);
118
119 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120
121 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
122 gfs2_log_flush(sdp);
123}
124
125void gfs2_trans_add_gl(struct gfs2_glock *gl)
126{
127 lops_add(gl->gl_sbd, &gl->gl_le);
128}
129
130/**
131 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
132 * @gl: the glock the buffer belongs to
133 * @bh: The buffer to add
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000134 * @meta: True in the case of adding metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135 *
136 */
137
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000138void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139{
140 struct gfs2_sbd *sdp = gl->gl_sbd;
141 struct gfs2_bufdata *bd;
142
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500143 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000144 if (bd)
145 gfs2_assert(sdp, bd->bd_gl == gl);
146 else {
Steven Whitehouse586dfda2006-01-18 11:32:00 +0000147 gfs2_attach_bufdata(gl, bh, meta);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500148 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 lops_add(sdp, &bd->bd_le);
151}
152
153void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, uint64_t blkno)
154{
155 struct gfs2_revoke *rv = kmalloc(sizeof(struct gfs2_revoke),
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000156 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 lops_init_le(&rv->rv_le, &gfs2_revoke_lops);
158 rv->rv_blkno = blkno;
159 lops_add(sdp, &rv->rv_le);
160}
161
162void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, uint64_t blkno)
163{
164 struct gfs2_revoke *rv;
165 int found = 0;
166
167 gfs2_log_lock(sdp);
168
169 list_for_each_entry(rv, &sdp->sd_log_le_revoke, rv_le.le_list) {
170 if (rv->rv_blkno == blkno) {
171 list_del(&rv->rv_le.le_list);
172 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
173 sdp->sd_log_num_revoke--;
174 found = 1;
175 break;
176 }
177 }
178
179 gfs2_log_unlock(sdp);
180
181 if (found) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500182 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183 kfree(rv);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500184 tr->tr_num_revoke_rm++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185 }
186}
187
188void gfs2_trans_add_rg(struct gfs2_rgrpd *rgd)
189{
190 lops_add(rgd->rd_sbd, &rgd->rd_le);
191}
192