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/kallsyms.h>
16 #include <linux/gfs2_ondisk.h>
27 int gfs2_trans_begin(struct gfs2_sbd
*sdp
, unsigned int blocks
,
30 struct gfs2_trans
*tr
;
33 BUG_ON(current
->journal_info
);
34 BUG_ON(blocks
== 0 && revokes
== 0);
36 tr
= kzalloc(sizeof(struct gfs2_trans
), GFP_NOFS
);
40 tr
->tr_ip
= (unsigned long)__builtin_return_address(0);
41 tr
->tr_blocks
= blocks
;
42 tr
->tr_revokes
= revokes
;
45 tr
->tr_reserved
+= 6 + blocks
;
47 tr
->tr_reserved
+= gfs2_struct2blk(sdp
, revokes
,
49 INIT_LIST_HEAD(&tr
->tr_list_buf
);
51 gfs2_holder_init(sdp
->sd_trans_gl
, LM_ST_SHARED
, 0, &tr
->tr_t_gh
);
53 error
= gfs2_glock_nq(&tr
->tr_t_gh
);
55 goto fail_holder_uninit
;
57 if (!test_bit(SDF_JOURNAL_LIVE
, &sdp
->sd_flags
)) {
58 tr
->tr_t_gh
.gh_flags
|= GL_NOCACHE
;
63 error
= gfs2_log_reserve(sdp
, tr
->tr_reserved
);
67 current
->journal_info
= tr
;
72 gfs2_glock_dq(&tr
->tr_t_gh
);
75 gfs2_holder_uninit(&tr
->tr_t_gh
);
81 void gfs2_trans_end(struct gfs2_sbd
*sdp
)
83 struct gfs2_trans
*tr
= current
->journal_info
;
86 current
->journal_info
= NULL
;
88 if (!tr
->tr_touched
) {
89 gfs2_log_release(sdp
, tr
->tr_reserved
);
90 if (tr
->tr_t_gh
.gh_gl
) {
91 gfs2_glock_dq(&tr
->tr_t_gh
);
92 gfs2_holder_uninit(&tr
->tr_t_gh
);
98 if (gfs2_assert_withdraw(sdp
, tr
->tr_num_buf
<= tr
->tr_blocks
)) {
99 fs_err(sdp
, "tr_num_buf = %u, tr_blocks = %u ",
100 tr
->tr_num_buf
, tr
->tr_blocks
);
101 print_symbol(KERN_WARNING
"GFS2: Transaction created at: %s\n", tr
->tr_ip
);
103 if (gfs2_assert_withdraw(sdp
, tr
->tr_num_revoke
<= tr
->tr_revokes
)) {
104 fs_err(sdp
, "tr_num_revoke = %u, tr_revokes = %u ",
105 tr
->tr_num_revoke
, tr
->tr_revokes
);
106 print_symbol(KERN_WARNING
"GFS2: Transaction created at: %s\n", tr
->tr_ip
);
109 gfs2_log_commit(sdp
, tr
);
110 if (tr
->tr_t_gh
.gh_gl
) {
111 gfs2_glock_dq(&tr
->tr_t_gh
);
112 gfs2_holder_uninit(&tr
->tr_t_gh
);
116 if (sdp
->sd_vfs
->s_flags
& MS_SYNCHRONOUS
)
117 gfs2_log_flush(sdp
, NULL
);
121 * gfs2_trans_add_bh - Add a to-be-modified buffer to the current transaction
122 * @gl: the glock the buffer belongs to
123 * @bh: The buffer to add
124 * @meta: True in the case of adding metadata
128 void gfs2_trans_add_bh(struct gfs2_glock
*gl
, struct buffer_head
*bh
, int meta
)
130 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
131 struct gfs2_bufdata
*bd
;
135 gfs2_assert(sdp
, bd
->bd_gl
== gl
);
137 gfs2_attach_bufdata(gl
, bh
, meta
);
140 lops_add(sdp
, &bd
->bd_le
);
143 void gfs2_trans_add_revoke(struct gfs2_sbd
*sdp
, struct gfs2_bufdata
*bd
)
145 BUG_ON(!list_empty(&bd
->bd_le
.le_list
));
146 BUG_ON(!list_empty(&bd
->bd_ail_st_list
));
147 BUG_ON(!list_empty(&bd
->bd_ail_gl_list
));
148 lops_init_le(&bd
->bd_le
, &gfs2_revoke_lops
);
149 lops_add(sdp
, &bd
->bd_le
);
152 void gfs2_trans_add_unrevoke(struct gfs2_sbd
*sdp
, u64 blkno
, unsigned int len
)
154 struct gfs2_bufdata
*bd
, *tmp
;
155 struct gfs2_trans
*tr
= current
->journal_info
;
156 unsigned int n
= len
;
159 list_for_each_entry_safe(bd
, tmp
, &sdp
->sd_log_le_revoke
, bd_le
.le_list
) {
160 if ((bd
->bd_blkno
>= blkno
) && (bd
->bd_blkno
< (blkno
+ len
))) {
161 list_del_init(&bd
->bd_le
.le_list
);
162 gfs2_assert_withdraw(sdp
, sdp
->sd_log_num_revoke
);
163 sdp
->sd_log_num_revoke
--;
164 kmem_cache_free(gfs2_bufdata_cachep
, bd
);
165 tr
->tr_num_revoke_rm
++;
170 gfs2_log_unlock(sdp
);
173 void gfs2_trans_add_rg(struct gfs2_rgrpd
*rgd
)
175 lops_add(rgd
->rd_sbd
, &rgd
->rd_le
);