2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
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 version 2.
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>
15 #include <linux/gfs2_ondisk.h>
16 #include <linux/kallsyms.h>
17 #include <linux/lm_interface.h>
28 int gfs2_trans_begin(struct gfs2_sbd
*sdp
, unsigned int blocks
,
31 struct gfs2_trans
*tr
;
34 BUG_ON(current
->journal_info
);
35 BUG_ON(blocks
== 0 && revokes
== 0);
37 tr
= kzalloc(sizeof(struct gfs2_trans
), GFP_NOFS
);
41 tr
->tr_ip
= (unsigned long)__builtin_return_address(0);
42 tr
->tr_blocks
= blocks
;
43 tr
->tr_revokes
= revokes
;
46 tr
->tr_reserved
+= 6 + blocks
;
48 tr
->tr_reserved
+= gfs2_struct2blk(sdp
, revokes
,
50 INIT_LIST_HEAD(&tr
->tr_list_buf
);
52 gfs2_holder_init(sdp
->sd_trans_gl
, LM_ST_SHARED
, 0, &tr
->tr_t_gh
);
54 error
= gfs2_glock_nq(&tr
->tr_t_gh
);
56 goto fail_holder_uninit
;
58 if (!test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
59 tr
->tr_t_gh
.gh_flags
|= GL_NOCACHE
;
64 error
= gfs2_log_reserve(sdp
, tr
->tr_reserved
);
68 current
->journal_info
= tr
;
73 gfs2_glock_dq(&tr
->tr_t_gh
);
76 gfs2_holder_uninit(&tr
->tr_t_gh
);
82 void gfs2_trans_end(struct gfs2_sbd
*sdp
)
84 struct gfs2_trans
*tr
= current
->journal_info
;
87 current
->journal_info
= NULL
;
89 if (!tr
->tr_touched
) {
90 gfs2_log_release(sdp
, tr
->tr_reserved
);
91 gfs2_glock_dq(&tr
->tr_t_gh
);
92 gfs2_holder_uninit(&tr
->tr_t_gh
);
97 if (gfs2_assert_withdraw(sdp
, tr
->tr_num_buf
<= tr
->tr_blocks
)) {
98 fs_err(sdp
, "tr_num_buf = %u, tr_blocks = %u ",
99 tr
->tr_num_buf
, tr
->tr_blocks
);
100 print_symbol(KERN_WARNING
"GFS2: Transaction created at: %s\n", tr
->tr_ip
);
102 if (gfs2_assert_withdraw(sdp
, tr
->tr_num_revoke
<= tr
->tr_revokes
)) {
103 fs_err(sdp
, "tr_num_revoke = %u, tr_revokes = %u ",
104 tr
->tr_num_revoke
, tr
->tr_revokes
);
105 print_symbol(KERN_WARNING
"GFS2: Transaction created at: %s\n", tr
->tr_ip
);
108 gfs2_log_commit(sdp
, tr
);
109 gfs2_glock_dq(&tr
->tr_t_gh
);
110 gfs2_holder_uninit(&tr
->tr_t_gh
);
113 if (sdp
->sd_vfs
->s_flags
& MS_SYNCHRONOUS
)
114 gfs2_log_flush(sdp
, NULL
);
118 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
119 * @gl: the glock the buffer belongs to
120 * @bh: The buffer to add
121 * @meta: True in the case of adding metadata
125 void gfs2_trans_add_bh(struct gfs2_glock
*gl
, struct buffer_head
*bh
, int meta
)
127 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
128 struct gfs2_bufdata
*bd
;
132 gfs2_assert(sdp
, bd
->bd_gl
== gl
);
134 gfs2_attach_bufdata(gl
, bh
, meta
);
137 lops_add(sdp
, &bd
->bd_le
);
140 void gfs2_trans_add_revoke(struct gfs2_sbd
*sdp
, struct gfs2_bufdata
*bd
)
142 BUG_ON(!list_empty(&bd
->bd_le
.le_list
));
143 BUG_ON(!list_empty(&bd
->bd_ail_st_list
));
144 BUG_ON(!list_empty(&bd
->bd_ail_gl_list
));
145 lops_init_le(&bd
->bd_le
, &gfs2_revoke_lops
);
146 lops_add(sdp
, &bd
->bd_le
);
149 void gfs2_trans_add_unrevoke(struct gfs2_sbd
*sdp
, u64 blkno
)
151 struct gfs2_bufdata
*bd
;
156 list_for_each_entry(bd
, &sdp
->sd_log_le_revoke
, bd_le
.le_list
) {
157 if (bd
->bd_blkno
== blkno
) {
158 list_del_init(&bd
->bd_le
.le_list
);
159 gfs2_assert_withdraw(sdp
, sdp
->sd_log_num_revoke
);
160 sdp
->sd_log_num_revoke
--;
166 gfs2_log_unlock(sdp
);
169 struct gfs2_trans
*tr
= current
->journal_info
;
170 kmem_cache_free(gfs2_bufdata_cachep
, bd
);
171 tr
->tr_num_revoke_rm
++;
175 void gfs2_trans_add_rg(struct gfs2_rgrpd
*rgd
)
177 lops_add(rgd
->rd_sbd
, &rgd
->rd_le
);