blob: aa1a619f08540559b0a7a13a44005e5c8692f0c4 [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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016#include <asm/semaphore.h>
17
18#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include "lm_interface.h"
20#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "glock.h"
22#include "log.h"
23#include "lops.h"
24#include "meta_io.h"
25#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050026#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027
28int gfs2_trans_begin_i(struct gfs2_sbd *sdp, unsigned int blocks,
29 unsigned int revokes, char *file, unsigned int line)
30{
31 struct gfs2_trans *tr;
32 int error;
33
Steven Whitehouse5c676f62006-02-27 17:23:27 -050034 if (gfs2_assert_warn(sdp, !current->journal_info) ||
David Teiglandb3b94fa2006-01-16 16:50:04 +000035 gfs2_assert_warn(sdp, blocks || revokes)) {
36 fs_warn(sdp, "(%s, %u)\n", file, line);
37 return -EINVAL;
38 }
39
Steven Whitehousef55ab262006-02-21 12:51:39 +000040 tr = kzalloc(sizeof(struct gfs2_trans), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +000041 if (!tr)
42 return -ENOMEM;
43
44 tr->tr_file = file;
45 tr->tr_line = line;
46 tr->tr_blocks = blocks;
47 tr->tr_revokes = revokes;
48 tr->tr_reserved = 1;
49 if (blocks)
50 tr->tr_reserved += 1 + blocks;
51 if (revokes)
52 tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
53 sizeof(uint64_t));
54 INIT_LIST_HEAD(&tr->tr_list_buf);
55
Steven Whitehousee317ffc2006-03-01 11:39:37 -050056 gfs2_holder_init(sdp->sd_trans_gl, LM_ST_SHARED,
57 GL_NEVER_RECURSE, &tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000058
Steven Whitehousee317ffc2006-03-01 11:39:37 -050059 error = gfs2_glock_nq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000060 if (error)
Steven Whitehousee317ffc2006-03-01 11:39:37 -050061 goto fail_holder_uninit;
David Teiglandb3b94fa2006-01-16 16:50:04 +000062
63 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) {
Steven Whitehousee317ffc2006-03-01 11:39:37 -050064 tr->tr_t_gh.gh_flags |= GL_NOCACHE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000065 error = -EROFS;
66 goto fail_gunlock;
67 }
68
69 error = gfs2_log_reserve(sdp, tr->tr_reserved);
70 if (error)
71 goto fail_gunlock;
72
Steven Whitehouse5c676f62006-02-27 17:23:27 -050073 current->journal_info = tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000074
75 return 0;
76
Steven Whitehouse484adff2006-03-29 09:12:12 -050077fail_gunlock:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050078 gfs2_glock_dq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000079
Steven Whitehouse484adff2006-03-29 09:12:12 -050080fail_holder_uninit:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050081 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000082 kfree(tr);
83
84 return error;
85}
86
87void gfs2_trans_end(struct gfs2_sbd *sdp)
88{
89 struct gfs2_trans *tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000090
Steven Whitehouse5c676f62006-02-27 17:23:27 -050091 tr = current->journal_info;
92 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000093
94 if (gfs2_assert_warn(sdp, tr))
95 return;
96
David Teiglandb3b94fa2006-01-16 16:50:04 +000097 if (!tr->tr_touched) {
98 gfs2_log_release(sdp, tr->tr_reserved);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500100 gfs2_glock_dq(&tr->tr_t_gh);
101 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500103 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104 return;
105 }
106
107 if (gfs2_assert_withdraw(sdp, tr->tr_num_buf <= tr->tr_blocks))
108 fs_err(sdp, "tr_num_buf = %u, tr_blocks = %u "
109 "tr_file = %s, tr_line = %u\n",
110 tr->tr_num_buf, tr->tr_blocks,
111 tr->tr_file, tr->tr_line);
112 if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes))
113 fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u "
114 "tr_file = %s, tr_line = %u\n",
115 tr->tr_num_revoke, tr->tr_revokes,
116 tr->tr_file, tr->tr_line);
117
118 gfs2_log_commit(sdp, tr);
119
Steven Whitehouseb4dc7292006-03-01 17:41:58 -0500120 gfs2_glock_dq(&tr->tr_t_gh);
121 gfs2_holder_uninit(&tr->tr_t_gh);
122
123 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124
125 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
126 gfs2_log_flush(sdp);
127}
128
129void gfs2_trans_add_gl(struct gfs2_glock *gl)
130{
131 lops_add(gl->gl_sbd, &gl->gl_le);
132}
133
134/**
135 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
136 * @gl: the glock the buffer belongs to
137 * @bh: The buffer to add
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000138 * @meta: True in the case of adding metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139 *
140 */
141
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000142void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143{
144 struct gfs2_sbd *sdp = gl->gl_sbd;
145 struct gfs2_bufdata *bd;
146
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500147 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000148 if (bd)
149 gfs2_assert(sdp, bd->bd_gl == gl);
150 else {
Steven Whitehouse586dfda2006-01-18 11:32:00 +0000151 gfs2_attach_bufdata(gl, bh, meta);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500152 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154 lops_add(sdp, &bd->bd_le);
155}
156
157void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, uint64_t blkno)
158{
159 struct gfs2_revoke *rv = kmalloc(sizeof(struct gfs2_revoke),
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000160 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 lops_init_le(&rv->rv_le, &gfs2_revoke_lops);
162 rv->rv_blkno = blkno;
163 lops_add(sdp, &rv->rv_le);
164}
165
166void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, uint64_t blkno)
167{
168 struct gfs2_revoke *rv;
169 int found = 0;
170
171 gfs2_log_lock(sdp);
172
173 list_for_each_entry(rv, &sdp->sd_log_le_revoke, rv_le.le_list) {
174 if (rv->rv_blkno == blkno) {
175 list_del(&rv->rv_le.le_list);
176 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
177 sdp->sd_log_num_revoke--;
178 found = 1;
179 break;
180 }
181 }
182
183 gfs2_log_unlock(sdp);
184
185 if (found) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500186 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 kfree(rv);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500188 tr->tr_num_revoke_rm++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189 }
190}
191
192void gfs2_trans_add_rg(struct gfs2_rgrpd *rgd)
193{
194 lops_add(rgd->rd_sbd, &rgd->rd_le);
195}
196