blob: ad3e2fb763d73792d048ac0c86915be90653e1f3 [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"
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -050026#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050028int gfs2_trans_begin(struct gfs2_sbd *sdp, unsigned int blocks,
29 unsigned int revokes)
David Teiglandb3b94fa2006-01-16 16:50:04 +000030{
31 struct gfs2_trans *tr;
32 int error;
33
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050034 BUG_ON(current->journal_info);
35 BUG_ON(blocks == 0 && revokes == 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000036
Steven Whitehousea1c06432009-05-13 10:56:52 +010037 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags))
38 return -EROFS;
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
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050044 tr->tr_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000045 tr->tr_blocks = blocks;
46 tr->tr_revokes = revokes;
47 tr->tr_reserved = 1;
48 if (blocks)
Steven Whitehousef4154ea2006-04-11 14:49:06 -040049 tr->tr_reserved += 6 + blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +000050 if (revokes)
51 tr->tr_reserved += gfs2_struct2blk(sdp, revokes,
Steven Whitehousecd915492006-09-04 12:49:07 -040052 sizeof(u64));
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
David Teiglandb3b94fa2006-01-16 16:50:04 +000059 error = gfs2_log_reserve(sdp, tr->tr_reserved);
60 if (error)
61 goto fail_gunlock;
62
Steven Whitehouse5c676f62006-02-27 17:23:27 -050063 current->journal_info = tr;
David Teiglandb3b94fa2006-01-16 16:50:04 +000064
65 return 0;
66
Steven Whitehouse484adff2006-03-29 09:12:12 -050067fail_gunlock:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050068 gfs2_glock_dq(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000069
Steven Whitehouse484adff2006-03-29 09:12:12 -050070fail_holder_uninit:
Steven Whitehousee317ffc2006-03-01 11:39:37 -050071 gfs2_holder_uninit(&tr->tr_t_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 kfree(tr);
73
74 return error;
75}
76
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -050077/**
78 * gfs2_log_release - Release a given number of log blocks
79 * @sdp: The GFS2 superblock
80 * @blks: The number of blocks
81 *
82 */
83
84static void gfs2_log_release(struct gfs2_sbd *sdp, unsigned int blks)
85{
86
87 atomic_add(blks, &sdp->sd_log_blks_free);
88 trace_gfs2_log_blocks(sdp, blks);
89 gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <=
90 sdp->sd_jdesc->jd_blocks);
91 up_read(&sdp->sd_log_flush_lock);
92}
93
Steven Whitehousec50b91c2012-04-16 16:40:56 +010094static void gfs2_print_trans(const struct gfs2_trans *tr)
95{
96 print_symbol(KERN_WARNING "GFS2: Transaction created at: %s\n", tr->tr_ip);
97 printk(KERN_WARNING "GFS2: blocks=%u revokes=%u reserved=%u touched=%d\n",
98 tr->tr_blocks, tr->tr_revokes, tr->tr_reserved, tr->tr_touched);
99 printk(KERN_WARNING "GFS2: Buf %u/%u Databuf %u/%u Revoke %u/%u\n",
100 tr->tr_num_buf_new, tr->tr_num_buf_rm,
101 tr->tr_num_databuf_new, tr->tr_num_databuf_rm,
102 tr->tr_num_revoke, tr->tr_num_revoke_rm);
103}
104
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105void gfs2_trans_end(struct gfs2_sbd *sdp)
106{
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400107 struct gfs2_trans *tr = current->journal_info;
Steven Whitehousec50b91c2012-04-16 16:40:56 +0100108 s64 nbuf;
Steven Whitehousef4154ea2006-04-11 14:49:06 -0400109 BUG_ON(!tr);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500110 current->journal_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112 if (!tr->tr_touched) {
113 gfs2_log_release(sdp, tr->tr_reserved);
Steven Whitehoused8348de2009-02-05 10:12:38 +0000114 if (tr->tr_t_gh.gh_gl) {
115 gfs2_glock_dq(&tr->tr_t_gh);
116 gfs2_holder_uninit(&tr->tr_t_gh);
117 kfree(tr);
118 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119 return;
120 }
121
Steven Whitehousec50b91c2012-04-16 16:40:56 +0100122 nbuf = tr->tr_num_buf_new + tr->tr_num_databuf_new;
123 nbuf -= tr->tr_num_buf_rm;
124 nbuf -= tr->tr_num_databuf_rm;
125
126 if (gfs2_assert_withdraw(sdp, (nbuf <= tr->tr_blocks) &&
127 (tr->tr_num_revoke <= tr->tr_revokes)))
128 gfs2_print_trans(tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000129
130 gfs2_log_commit(sdp, tr);
Steven Whitehoused8348de2009-02-05 10:12:38 +0000131 if (tr->tr_t_gh.gh_gl) {
132 gfs2_glock_dq(&tr->tr_t_gh);
133 gfs2_holder_uninit(&tr->tr_t_gh);
134 kfree(tr);
135 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136
137 if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS)
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400138 gfs2_log_flush(sdp, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139}
140
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141/**
142 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
143 * @gl: the glock the buffer belongs to
144 * @bh: The buffer to add
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000145 * @meta: True in the case of adding metadata
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146 *
147 */
148
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000149void gfs2_trans_add_bh(struct gfs2_glock *gl, struct buffer_head *bh, int meta)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150{
151 struct gfs2_sbd *sdp = gl->gl_sbd;
152 struct gfs2_bufdata *bd;
153
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500154 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155 if (bd)
156 gfs2_assert(sdp, bd->bd_gl == gl);
157 else {
Steven Whitehouse586dfda2006-01-18 11:32:00 +0000158 gfs2_attach_bufdata(gl, bh, meta);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500159 bd = bh->b_private;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000160 }
Bob Petersonc0752aa2012-05-01 12:00:34 -0400161 lops_add(sdp, bd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162}
163
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100164void gfs2_trans_add_revoke(struct gfs2_sbd *sdp, struct gfs2_bufdata *bd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165{
Bob Petersonc0752aa2012-05-01 12:00:34 -0400166 BUG_ON(!list_empty(&bd->bd_list));
Steven Whitehouse1ad38c42007-09-03 11:01:33 +0100167 BUG_ON(!list_empty(&bd->bd_ail_st_list));
168 BUG_ON(!list_empty(&bd->bd_ail_gl_list));
Bob Petersonc0752aa2012-05-01 12:00:34 -0400169 lops_init_le(bd, &gfs2_revoke_lops);
170 lops_add(sdp, bd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171}
172
Steven Whitehouse5731be52008-02-01 13:16:55 +0000173void gfs2_trans_add_unrevoke(struct gfs2_sbd *sdp, u64 blkno, unsigned int len)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000174{
Steven Whitehouse5731be52008-02-01 13:16:55 +0000175 struct gfs2_bufdata *bd, *tmp;
176 struct gfs2_trans *tr = current->journal_info;
177 unsigned int n = len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178
179 gfs2_log_lock(sdp);
Bob Petersonc0752aa2012-05-01 12:00:34 -0400180 list_for_each_entry_safe(bd, tmp, &sdp->sd_log_le_revoke, bd_list) {
Steven Whitehouse5731be52008-02-01 13:16:55 +0000181 if ((bd->bd_blkno >= blkno) && (bd->bd_blkno < (blkno + len))) {
Bob Petersonc0752aa2012-05-01 12:00:34 -0400182 list_del_init(&bd->bd_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183 gfs2_assert_withdraw(sdp, sdp->sd_log_num_revoke);
184 sdp->sd_log_num_revoke--;
Steven Whitehouse5731be52008-02-01 13:16:55 +0000185 kmem_cache_free(gfs2_bufdata_cachep, bd);
186 tr->tr_num_revoke_rm++;
187 if (--n == 0)
188 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189 }
190 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000191 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192}
193