blob: 5d1f4a1e40774fa444bec26d9299eef5a8f7278e [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
77 fail_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 Whitehousee317ffc2006-03-01 11:39:37 -050080 fail_holder_uninit:
81 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;
90 struct gfs2_holder *t_gh;
91
Steven Whitehouse5c676f62006-02-27 17:23:27 -050092 tr = current->journal_info;
93 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +000094
95 if (gfs2_assert_warn(sdp, tr))
96 return;
97
Steven Whitehousee317ffc2006-03-01 11:39:37 -050098 t_gh = &tr->tr_t_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
100 if (!tr->tr_touched) {
101 gfs2_log_release(sdp, tr->tr_reserved);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102
103 gfs2_glock_dq(t_gh);
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500104 gfs2_holder_uninit(t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500106 kfree(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000107 return;
108 }
109
110 if (gfs2_assert_withdraw(sdp, tr->tr_num_buf <= tr->tr_blocks))
111 fs_err(sdp, "tr_num_buf = %u, tr_blocks = %u "
112 "tr_file = %s, tr_line = %u\n",
113 tr->tr_num_buf, tr->tr_blocks,
114 tr->tr_file, tr->tr_line);
115 if (gfs2_assert_withdraw(sdp, tr->tr_num_revoke <= tr->tr_revokes))
116 fs_err(sdp, "tr_num_revoke = %u, tr_revokes = %u "
117 "tr_file = %s, tr_line = %u\n",
118 tr->tr_num_revoke, tr->tr_revokes,
119 tr->tr_file, tr->tr_line);
120
121 gfs2_log_commit(sdp, tr);
122
123 gfs2_glock_dq(t_gh);
Steven Whitehousee317ffc2006-03-01 11:39:37 -0500124 gfs2_holder_uninit(t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125
126 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
127 gfs2_log_flush(sdp);
128}
129
130void gfs2_trans_add_gl(struct gfs2_glock *gl)
131{
132 lops_add(gl->gl_sbd, &gl->gl_le);
133}
134
135/**
136 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
137 * @gl: the glock the buffer belongs to
138 * @bh: The buffer to add
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000139 * @meta: True in the case of adding metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 *
141 */
142
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000143void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000144{
145 struct gfs2_sbd *sdp = gl->gl_sbd;
146 struct gfs2_bufdata *bd;
147
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500148 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149 if (bd)
150 gfs2_assert(sdp, bd->bd_gl == gl);
151 else {
Steven Whitehouse586dfda2006-01-18 11:32:00 +0000152 gfs2_attach_bufdata(gl, bh, meta);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500153 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 lops_add(sdp, &bd->bd_le);
156}
157
158void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, uint64_t blkno)
159{
160 struct gfs2_revoke *rv = kmalloc(sizeof(struct gfs2_revoke),
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000161 GFP_NOFS | __GFP_NOFAIL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162 lops_init_le(&rv->rv_le, &gfs2_revoke_lops);
163 rv->rv_blkno = blkno;
164 lops_add(sdp, &rv->rv_le);
165}
166
167void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, uint64_t blkno)
168{
169 struct gfs2_revoke *rv;
170 int found = 0;
171
172 gfs2_log_lock(sdp);
173
174 list_for_each_entry(rv, &sdp->sd_log_le_revoke, rv_le.le_list) {
175 if (rv->rv_blkno == blkno) {
176 list_del(&rv->rv_le.le_list);
177 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
178 sdp->sd_log_num_revoke--;
179 found = 1;
180 break;
181 }
182 }
183
184 gfs2_log_unlock(sdp);
185
186 if (found) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500187 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188 kfree(rv);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500189 tr->tr_num_revoke_rm++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190 }
191}
192
193void gfs2_trans_add_rg(struct gfs2_rgrpd *rgd)
194{
195 lops_add(rgd->rd_sbd, &rgd->rd_le);
196}
197