blob: 0301be655b1229dad781a66aeab2b99327e9dbe0 [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 Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehousec969f582009-04-07 14:13:01 +010016#include <linux/bio.h>
17#include <linux/fs.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
Robert Peterson2332c442007-06-18 14:50:20 -050021#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "glock.h"
23#include "log.h"
24#include "lops.h"
25#include "meta_io.h"
26#include "recovery.h"
27#include "rgrp.h"
28#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050029#include "util.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010030#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010032/**
33 * gfs2_pin - Pin a buffer in memory
34 * @sdp: The superblock
35 * @bh: The buffer to be pinned
36 *
37 * The log lock must be held when calling this function
38 */
39static void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh)
40{
41 struct gfs2_bufdata *bd;
42
Steven Whitehouse29687a22011-03-30 16:33:25 +010043 BUG_ON(!current->journal_info);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010044
45 clear_buffer_dirty(bh);
46 if (test_set_buffer_pinned(bh))
47 gfs2_assert_withdraw(sdp, 0);
48 if (!buffer_uptodate(bh))
49 gfs2_io_error_bh(sdp, bh);
50 bd = bh->b_private;
51 /* If this buffer is in the AIL and it has already been written
52 * to in-place disk block, remove it from the AIL.
53 */
Steven Whitehousec618e872011-03-14 12:40:29 +000054 spin_lock(&sdp->sd_ail_lock);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010055 if (bd->bd_ail)
56 list_move(&bd->bd_ail_st_list, &bd->bd_ail->ai_ail2_list);
Steven Whitehousec618e872011-03-14 12:40:29 +000057 spin_unlock(&sdp->sd_ail_lock);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010058 get_bh(bh);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -050059 atomic_inc(&sdp->sd_log_pinned);
Steven Whitehouse63997772009-06-12 08:49:20 +010060 trace_gfs2_pin(bd, 1);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010061}
62
Bob Peterson7c9ca622011-08-31 09:53:19 +010063static bool buffer_is_rgrp(const struct gfs2_bufdata *bd)
64{
65 return bd->bd_gl->gl_name.ln_type == LM_TYPE_RGRP;
66}
67
68static void maybe_release_space(struct gfs2_bufdata *bd)
69{
70 struct gfs2_glock *gl = bd->bd_gl;
71 struct gfs2_sbd *sdp = gl->gl_sbd;
72 struct gfs2_rgrpd *rgd = gl->gl_object;
73 unsigned int index = bd->bd_bh->b_blocknr - gl->gl_name.ln_number;
74 struct gfs2_bitmap *bi = rgd->rd_bits + index;
75
76 if (bi->bi_clone == 0)
77 return;
78 if (sdp->sd_args.ar_discard)
79 gfs2_rgrp_send_discards(sdp, rgd->rd_data0, bd->bd_bh, bi);
80 memcpy(bi->bi_clone + bi->bi_offset,
81 bd->bd_bh->b_data + bi->bi_offset, bi->bi_len);
82 clear_bit(GBF_FULL, &bi->bi_flags);
83 rgd->rd_free_clone = rgd->rd_free;
84}
85
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010086/**
87 * gfs2_unpin - Unpin a buffer
88 * @sdp: the filesystem the buffer belongs to
89 * @bh: The buffer to unpin
90 * @ai:
Steven Whitehouse29687a22011-03-30 16:33:25 +010091 * @flags: The inode dirty flags
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010092 *
93 */
94
95static void gfs2_unpin(struct gfs2_sbd *sdp, struct buffer_head *bh,
96 struct gfs2_ail *ai)
97{
98 struct gfs2_bufdata *bd = bh->b_private;
99
Steven Whitehouse29687a22011-03-30 16:33:25 +0100100 BUG_ON(!buffer_uptodate(bh));
101 BUG_ON(!buffer_pinned(bh));
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100102
103 lock_buffer(bh);
104 mark_buffer_dirty(bh);
105 clear_buffer_pinned(bh);
106
Bob Peterson7c9ca622011-08-31 09:53:19 +0100107 if (buffer_is_rgrp(bd))
108 maybe_release_space(bd);
109
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000110 spin_lock(&sdp->sd_ail_lock);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100111 if (bd->bd_ail) {
112 list_del(&bd->bd_ail_st_list);
113 brelse(bh);
114 } else {
115 struct gfs2_glock *gl = bd->bd_gl;
116 list_add(&bd->bd_ail_gl_list, &gl->gl_ail_list);
117 atomic_inc(&gl->gl_ail_count);
118 }
119 bd->bd_ail = ai;
120 list_add(&bd->bd_ail_st_list, &ai->ai_ail1_list);
Dave Chinnerd6a079e2011-03-11 11:52:25 +0000121 spin_unlock(&sdp->sd_ail_lock);
122
Steven Whitehouse29687a22011-03-30 16:33:25 +0100123 clear_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100124 trace_gfs2_pin(bd, 0);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100125 unlock_buffer(bh);
Benjamin Marzinski5e687ea2010-05-04 14:29:16 -0500126 atomic_dec(&sdp->sd_log_pinned);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100127}
128
Steven Whitehouse16615be2007-09-17 10:59:52 +0100129
130static inline struct gfs2_log_descriptor *bh_log_desc(struct buffer_head *bh)
131{
132 return (struct gfs2_log_descriptor *)bh->b_data;
133}
134
135static inline __be64 *bh_log_ptr(struct buffer_head *bh)
136{
137 struct gfs2_log_descriptor *ld = bh_log_desc(bh);
138 return (__force __be64 *)(ld + 1);
139}
140
141static inline __be64 *bh_ptr_end(struct buffer_head *bh)
142{
143 return (__force __be64 *)(bh->b_data + bh->b_size);
144}
145
146
147static struct buffer_head *gfs2_get_log_desc(struct gfs2_sbd *sdp, u32 ld_type)
148{
149 struct buffer_head *bh = gfs2_log_get_buf(sdp);
150 struct gfs2_log_descriptor *ld = bh_log_desc(bh);
151 ld->ld_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
152 ld->ld_header.mh_type = cpu_to_be32(GFS2_METATYPE_LD);
153 ld->ld_header.mh_format = cpu_to_be32(GFS2_FORMAT_LD);
154 ld->ld_type = cpu_to_be32(ld_type);
155 ld->ld_length = 0;
156 ld->ld_data1 = 0;
157 ld->ld_data2 = 0;
158 memset(ld->ld_reserved, 0, sizeof(ld->ld_reserved));
159 return bh;
160}
161
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162static void buf_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
163{
164 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
Steven Whitehouse0ab7d132009-11-06 16:20:51 +0000165 struct gfs2_meta_header *mh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166 struct gfs2_trans *tr;
167
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100168 lock_buffer(bd->bd_bh);
Steven Whitehouse8bd95722007-01-25 10:04:20 +0000169 gfs2_log_lock(sdp);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100170 if (!list_empty(&bd->bd_list_tr))
171 goto out;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500172 tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000173 tr->tr_touched = 1;
174 tr->tr_num_buf++;
175 list_add(&bd->bd_list_tr, &tr->tr_list_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000176 if (!list_empty(&le->le_list))
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100177 goto out;
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000178 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
179 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180 gfs2_meta_check(sdp, bd->bd_bh);
Steven Whitehousea98ab222006-01-18 13:38:44 +0000181 gfs2_pin(sdp, bd->bd_bh);
Steven Whitehouse0ab7d132009-11-06 16:20:51 +0000182 mh = (struct gfs2_meta_header *)bd->bd_bh->b_data;
183 mh->__pad0 = cpu_to_be64(0);
184 mh->mh_jid = cpu_to_be32(sdp->sd_jdesc->jd_jid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185 sdp->sd_log_num_buf++;
186 list_add(&le->le_list, &sdp->sd_log_le_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 tr->tr_num_buf_new++;
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100188out:
189 gfs2_log_unlock(sdp);
190 unlock_buffer(bd->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000191}
192
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193static void buf_lo_before_commit(struct gfs2_sbd *sdp)
194{
195 struct buffer_head *bh;
196 struct gfs2_log_descriptor *ld;
197 struct gfs2_bufdata *bd1 = NULL, *bd2;
Bob Peterson905d2ae2007-07-24 14:05:31 -0500198 unsigned int total;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000199 unsigned int limit;
200 unsigned int num;
201 unsigned n;
202 __be64 *ptr;
203
Robert Peterson2332c442007-06-18 14:50:20 -0500204 limit = buf_limit(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 /* for 4k blocks, limit = 503 */
206
Bob Peterson905d2ae2007-07-24 14:05:31 -0500207 gfs2_log_lock(sdp);
208 total = sdp->sd_log_num_buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209 bd1 = bd2 = list_prepare_entry(bd1, &sdp->sd_log_le_buf, bd_le.le_list);
210 while(total) {
211 num = total;
212 if (total > limit)
213 num = limit;
Bob Peterson905d2ae2007-07-24 14:05:31 -0500214 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100215 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_METADATA);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500216 gfs2_log_lock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100217 ld = bh_log_desc(bh);
218 ptr = bh_log_ptr(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 ld->ld_length = cpu_to_be32(num + 1);
220 ld->ld_data1 = cpu_to_be32(num);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221
222 n = 0;
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500223 list_for_each_entry_continue(bd1, &sdp->sd_log_le_buf,
224 bd_le.le_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000225 *ptr++ = cpu_to_be64(bd1->bd_bh->b_blocknr);
226 if (++n >= num)
227 break;
228 }
229
Bob Peterson905d2ae2007-07-24 14:05:31 -0500230 gfs2_log_unlock(sdp);
Jens Axboe721a9602011-03-09 11:56:30 +0100231 submit_bh(WRITE_SYNC, bh);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500232 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000233
234 n = 0;
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500235 list_for_each_entry_continue(bd2, &sdp->sd_log_le_buf,
236 bd_le.le_list) {
Steven Whitehouse16615be2007-09-17 10:59:52 +0100237 get_bh(bd2->bd_bh);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500238 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100239 lock_buffer(bd2->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 bh = gfs2_log_fake_buf(sdp, bd2->bd_bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100241 submit_bh(WRITE_SYNC, bh);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500242 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243 if (++n >= num)
244 break;
245 }
246
Bob Peterson905d2ae2007-07-24 14:05:31 -0500247 BUG_ON(total < num);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 total -= num;
249 }
Bob Peterson905d2ae2007-07-24 14:05:31 -0500250 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251}
252
253static void buf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
254{
255 struct list_head *head = &sdp->sd_log_le_buf;
256 struct gfs2_bufdata *bd;
257
258 while (!list_empty(head)) {
259 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
260 list_del_init(&bd->bd_le.le_list);
261 sdp->sd_log_num_buf--;
262
Steven Whitehousea98ab222006-01-18 13:38:44 +0000263 gfs2_unpin(sdp, bd->bd_bh, ai);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000264 }
265 gfs2_assert_warn(sdp, !sdp->sd_log_num_buf);
266}
267
268static void buf_lo_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -0400269 struct gfs2_log_header_host *head, int pass)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000270{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400271 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272
273 if (pass != 0)
274 return;
275
276 sdp->sd_found_blocks = 0;
277 sdp->sd_replayed_blocks = 0;
278}
279
280static int buf_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
281 struct gfs2_log_descriptor *ld, __be64 *ptr,
282 int pass)
283{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400284 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
285 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500286 struct gfs2_glock *gl = ip->i_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000287 unsigned int blks = be32_to_cpu(ld->ld_data1);
288 struct buffer_head *bh_log, *bh_ip;
Steven Whitehousecd915492006-09-04 12:49:07 -0400289 u64 blkno;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000290 int error = 0;
291
292 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_METADATA)
293 return 0;
294
295 gfs2_replay_incr_blk(sdp, &start);
296
297 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
298 blkno = be64_to_cpu(*ptr++);
299
300 sdp->sd_found_blocks++;
301
302 if (gfs2_revoke_check(sdp, blkno, start))
303 continue;
304
305 error = gfs2_replay_read_block(jd, start, &bh_log);
Steven Whitehouse82ffa512006-09-04 14:47:06 -0400306 if (error)
307 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308
309 bh_ip = gfs2_meta_new(gl, blkno);
310 memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
311
312 if (gfs2_meta_check(sdp, bh_ip))
313 error = -EIO;
314 else
315 mark_buffer_dirty(bh_ip);
316
317 brelse(bh_log);
318 brelse(bh_ip);
319
320 if (error)
321 break;
322
323 sdp->sd_replayed_blocks++;
324 }
325
326 return error;
327}
328
329static void buf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
330{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400331 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
332 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333
334 if (error) {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400335 gfs2_meta_sync(ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000336 return;
337 }
338 if (pass != 1)
339 return;
340
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400341 gfs2_meta_sync(ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342
343 fs_info(sdp, "jid=%u: Replayed %u of %u blocks\n",
344 jd->jd_jid, sdp->sd_replayed_blocks, sdp->sd_found_blocks);
345}
346
347static void revoke_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
348{
Steven Whitehousef42ab082011-04-14 16:50:31 +0100349 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
350 struct gfs2_glock *gl = bd->bd_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351 struct gfs2_trans *tr;
352
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500353 tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000354 tr->tr_touched = 1;
355 tr->tr_num_revoke++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000356 sdp->sd_log_num_revoke++;
Steven Whitehousef42ab082011-04-14 16:50:31 +0100357 atomic_inc(&gl->gl_revokes);
358 set_bit(GLF_LFLUSH, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359 list_add(&le->le_list, &sdp->sd_log_le_revoke);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360}
361
362static void revoke_lo_before_commit(struct gfs2_sbd *sdp)
363{
364 struct gfs2_log_descriptor *ld;
365 struct gfs2_meta_header *mh;
366 struct buffer_head *bh;
367 unsigned int offset;
368 struct list_head *head = &sdp->sd_log_le_revoke;
Steven Whitehouse82e86082007-09-02 15:39:43 +0100369 struct gfs2_bufdata *bd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000370
371 if (!sdp->sd_log_num_revoke)
372 return;
373
Steven Whitehouse16615be2007-09-17 10:59:52 +0100374 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_REVOKE);
375 ld = bh_log_desc(bh);
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500376 ld->ld_length = cpu_to_be32(gfs2_struct2blk(sdp, sdp->sd_log_num_revoke,
Steven Whitehousecd915492006-09-04 12:49:07 -0400377 sizeof(u64)));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378 ld->ld_data1 = cpu_to_be32(sdp->sd_log_num_revoke);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000379 offset = sizeof(struct gfs2_log_descriptor);
380
Steven Whitehousef42ab082011-04-14 16:50:31 +0100381 list_for_each_entry(bd, head, bd_le.le_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382 sdp->sd_log_num_revoke--;
383
Steven Whitehousecd915492006-09-04 12:49:07 -0400384 if (offset + sizeof(u64) > sdp->sd_sb.sb_bsize) {
Jens Axboe721a9602011-03-09 11:56:30 +0100385 submit_bh(WRITE_SYNC, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000386
387 bh = gfs2_log_get_buf(sdp);
388 mh = (struct gfs2_meta_header *)bh->b_data;
389 mh->mh_magic = cpu_to_be32(GFS2_MAGIC);
Steven Whitehousee3167de2006-03-30 15:46:23 -0500390 mh->mh_type = cpu_to_be32(GFS2_METATYPE_LB);
391 mh->mh_format = cpu_to_be32(GFS2_FORMAT_LB);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000392 offset = sizeof(struct gfs2_meta_header);
393 }
394
Steven Whitehouse82e86082007-09-02 15:39:43 +0100395 *(__be64 *)(bh->b_data + offset) = cpu_to_be64(bd->bd_blkno);
Steven Whitehousecd915492006-09-04 12:49:07 -0400396 offset += sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397 }
398 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
399
Jens Axboe721a9602011-03-09 11:56:30 +0100400 submit_bh(WRITE_SYNC, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000401}
402
Steven Whitehousef42ab082011-04-14 16:50:31 +0100403static void revoke_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
404{
405 struct list_head *head = &sdp->sd_log_le_revoke;
406 struct gfs2_bufdata *bd;
407 struct gfs2_glock *gl;
408
409 while (!list_empty(head)) {
410 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
411 list_del_init(&bd->bd_le.le_list);
412 gl = bd->bd_gl;
413 atomic_dec(&gl->gl_revokes);
414 clear_bit(GLF_LFLUSH, &gl->gl_flags);
415 kmem_cache_free(gfs2_bufdata_cachep, bd);
416 }
417}
418
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419static void revoke_lo_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -0400420 struct gfs2_log_header_host *head, int pass)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400422 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423
424 if (pass != 0)
425 return;
426
427 sdp->sd_found_revokes = 0;
428 sdp->sd_replay_tail = head->lh_tail;
429}
430
431static int revoke_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
432 struct gfs2_log_descriptor *ld, __be64 *ptr,
433 int pass)
434{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400435 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000436 unsigned int blks = be32_to_cpu(ld->ld_length);
437 unsigned int revokes = be32_to_cpu(ld->ld_data1);
438 struct buffer_head *bh;
439 unsigned int offset;
Steven Whitehousecd915492006-09-04 12:49:07 -0400440 u64 blkno;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441 int first = 1;
442 int error;
443
444 if (pass != 0 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_REVOKE)
445 return 0;
446
447 offset = sizeof(struct gfs2_log_descriptor);
448
449 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
450 error = gfs2_replay_read_block(jd, start, &bh);
451 if (error)
452 return error;
453
454 if (!first)
455 gfs2_metatype_check(sdp, bh, GFS2_METATYPE_LB);
456
Steven Whitehousecd915492006-09-04 12:49:07 -0400457 while (offset + sizeof(u64) <= sdp->sd_sb.sb_bsize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458 blkno = be64_to_cpu(*(__be64 *)(bh->b_data + offset));
459
460 error = gfs2_revoke_add(sdp, blkno, start);
Bob Peterson3ad62e82008-01-28 16:35:13 -0600461 if (error < 0) {
462 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463 return error;
Bob Peterson3ad62e82008-01-28 16:35:13 -0600464 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000465 else if (error)
466 sdp->sd_found_revokes++;
467
468 if (!--revokes)
469 break;
Steven Whitehousecd915492006-09-04 12:49:07 -0400470 offset += sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471 }
472
473 brelse(bh);
474 offset = sizeof(struct gfs2_meta_header);
475 first = 0;
476 }
477
478 return 0;
479}
480
481static void revoke_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
482{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400483 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484
485 if (error) {
486 gfs2_revoke_clean(sdp);
487 return;
488 }
489 if (pass != 1)
490 return;
491
492 fs_info(sdp, "jid=%u: Found %u revoke tags\n",
493 jd->jd_jid, sdp->sd_found_revokes);
494
495 gfs2_revoke_clean(sdp);
496}
497
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000498/**
499 * databuf_lo_add - Add a databuf to the transaction.
500 *
501 * This is used in two distinct cases:
502 * i) In ordered write mode
503 * We put the data buffer on a list so that we can ensure that its
504 * synced to disk at the right time
505 * ii) In journaled data mode
506 * We need to journal the data block in the same way as metadata in
507 * the functions above. The difference is that here we have a tag
508 * which is two __be64's being the block number (as per meta data)
509 * and a flag which says whether the data block needs escaping or
510 * not. This means we need a new log entry for each 251 or so data
511 * blocks, which isn't an enormous overhead but twice as much as
512 * for normal metadata blocks.
513 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514static void databuf_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
515{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000516 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500517 struct gfs2_trans *tr = current->journal_info;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000518 struct address_space *mapping = bd->bd_bh->b_page->mapping;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400519 struct gfs2_inode *ip = GFS2_I(mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000520
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100521 lock_buffer(bd->bd_bh);
Steven Whitehouse8bd95722007-01-25 10:04:20 +0000522 gfs2_log_lock(sdp);
Steven Whitehouse9ff8ec32007-09-28 13:49:05 +0100523 if (tr) {
524 if (!list_empty(&bd->bd_list_tr))
525 goto out;
526 tr->tr_touched = 1;
527 if (gfs2_is_jdata(ip)) {
528 tr->tr_num_buf++;
529 list_add(&bd->bd_list_tr, &tr->tr_list_buf);
530 }
Robert Peterson773ed1a2007-06-20 08:34:06 -0500531 }
Robert Peterson2332c442007-06-18 14:50:20 -0500532 if (!list_empty(&le->le_list))
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100533 goto out;
Robert Peterson2332c442007-06-18 14:50:20 -0500534
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000535 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
536 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
Robert Peterson2332c442007-06-18 14:50:20 -0500537 if (gfs2_is_jdata(ip)) {
Robert Peterson2332c442007-06-18 14:50:20 -0500538 gfs2_pin(sdp, bd->bd_bh);
539 tr->tr_num_databuf_new++;
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100540 sdp->sd_log_num_databuf++;
Dave Chinnere5884632010-02-05 16:45:25 +1100541 list_add_tail(&le->le_list, &sdp->sd_log_le_databuf);
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100542 } else {
Dave Chinnere5884632010-02-05 16:45:25 +1100543 list_add_tail(&le->le_list, &sdp->sd_log_le_ordered);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100544 }
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100545out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546 gfs2_log_unlock(sdp);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100547 unlock_buffer(bd->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000548}
549
Steven Whitehouse16615be2007-09-17 10:59:52 +0100550static void gfs2_check_magic(struct buffer_head *bh)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000551{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000552 void *kaddr;
553 __be32 *ptr;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000554
Steven Whitehouse16615be2007-09-17 10:59:52 +0100555 clear_buffer_escaped(bh);
556 kaddr = kmap_atomic(bh->b_page, KM_USER0);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000557 ptr = kaddr + bh_offset(bh);
558 if (*ptr == cpu_to_be32(GFS2_MAGIC))
Steven Whitehouse16615be2007-09-17 10:59:52 +0100559 set_buffer_escaped(bh);
Russell Cattelanc312c4f2006-10-12 09:23:41 -0400560 kunmap_atomic(kaddr, KM_USER0);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100561}
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000562
Steven Whitehouse16615be2007-09-17 10:59:52 +0100563static void gfs2_write_blocks(struct gfs2_sbd *sdp, struct buffer_head *bh,
564 struct list_head *list, struct list_head *done,
565 unsigned int n)
566{
567 struct buffer_head *bh1;
568 struct gfs2_log_descriptor *ld;
569 struct gfs2_bufdata *bd;
570 __be64 *ptr;
571
572 if (!bh)
573 return;
574
575 ld = bh_log_desc(bh);
576 ld->ld_length = cpu_to_be32(n + 1);
577 ld->ld_data1 = cpu_to_be32(n);
578
579 ptr = bh_log_ptr(bh);
580
581 get_bh(bh);
Jens Axboe721a9602011-03-09 11:56:30 +0100582 submit_bh(WRITE_SYNC, bh);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100583 gfs2_log_lock(sdp);
584 while(!list_empty(list)) {
585 bd = list_entry(list->next, struct gfs2_bufdata, bd_le.le_list);
586 list_move_tail(&bd->bd_le.le_list, done);
587 get_bh(bd->bd_bh);
588 while (be64_to_cpu(*ptr) != bd->bd_bh->b_blocknr) {
589 gfs2_log_incr_head(sdp);
590 ptr += 2;
591 }
592 gfs2_log_unlock(sdp);
593 lock_buffer(bd->bd_bh);
594 if (buffer_escaped(bd->bd_bh)) {
595 void *kaddr;
596 bh1 = gfs2_log_get_buf(sdp);
597 kaddr = kmap_atomic(bd->bd_bh->b_page, KM_USER0);
598 memcpy(bh1->b_data, kaddr + bh_offset(bd->bd_bh),
599 bh1->b_size);
600 kunmap_atomic(kaddr, KM_USER0);
601 *(__be32 *)bh1->b_data = 0;
602 clear_buffer_escaped(bd->bd_bh);
603 unlock_buffer(bd->bd_bh);
604 brelse(bd->bd_bh);
605 } else {
606 bh1 = gfs2_log_fake_buf(sdp, bd->bd_bh);
607 }
Jens Axboe721a9602011-03-09 11:56:30 +0100608 submit_bh(WRITE_SYNC, bh1);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100609 gfs2_log_lock(sdp);
610 ptr += 2;
611 }
612 gfs2_log_unlock(sdp);
613 brelse(bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000614}
615
616/**
617 * databuf_lo_before_commit - Scan the data buffers, writing as we go
618 *
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000619 */
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100620
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621static void databuf_lo_before_commit(struct gfs2_sbd *sdp)
622{
Steven Whitehouse16615be2007-09-17 10:59:52 +0100623 struct gfs2_bufdata *bd = NULL;
624 struct buffer_head *bh = NULL;
625 unsigned int n = 0;
626 __be64 *ptr = NULL, *end = NULL;
627 LIST_HEAD(processed);
628 LIST_HEAD(in_progress);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629
Steven Whitehousef55ab262006-02-21 12:51:39 +0000630 gfs2_log_lock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100631 while (!list_empty(&sdp->sd_log_le_databuf)) {
632 if (ptr == end) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000633 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100634 gfs2_write_blocks(sdp, bh, &in_progress, &processed, n);
635 n = 0;
636 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_JDATA);
637 ptr = bh_log_ptr(bh);
638 end = bh_ptr_end(bh) - 1;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000639 gfs2_log_lock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100640 continue;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000641 }
Steven Whitehouse16615be2007-09-17 10:59:52 +0100642 bd = list_entry(sdp->sd_log_le_databuf.next, struct gfs2_bufdata, bd_le.le_list);
643 list_move_tail(&bd->bd_le.le_list, &in_progress);
644 gfs2_check_magic(bd->bd_bh);
645 *ptr++ = cpu_to_be64(bd->bd_bh->b_blocknr);
646 *ptr++ = cpu_to_be64(buffer_escaped(bh) ? 1 : 0);
647 n++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000649 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100650 gfs2_write_blocks(sdp, bh, &in_progress, &processed, n);
651 gfs2_log_lock(sdp);
652 list_splice(&processed, &sdp->sd_log_le_databuf);
653 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000654}
655
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000656static int databuf_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
657 struct gfs2_log_descriptor *ld,
658 __be64 *ptr, int pass)
659{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400660 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
661 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500662 struct gfs2_glock *gl = ip->i_gl;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000663 unsigned int blks = be32_to_cpu(ld->ld_data1);
664 struct buffer_head *bh_log, *bh_ip;
Steven Whitehousecd915492006-09-04 12:49:07 -0400665 u64 blkno;
666 u64 esc;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000667 int error = 0;
668
669 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_JDATA)
670 return 0;
671
672 gfs2_replay_incr_blk(sdp, &start);
673 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
674 blkno = be64_to_cpu(*ptr++);
675 esc = be64_to_cpu(*ptr++);
676
677 sdp->sd_found_blocks++;
678
679 if (gfs2_revoke_check(sdp, blkno, start))
680 continue;
681
682 error = gfs2_replay_read_block(jd, start, &bh_log);
683 if (error)
684 return error;
685
686 bh_ip = gfs2_meta_new(gl, blkno);
687 memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
688
689 /* Unescape */
690 if (esc) {
691 __be32 *eptr = (__be32 *)bh_ip->b_data;
692 *eptr = cpu_to_be32(GFS2_MAGIC);
693 }
694 mark_buffer_dirty(bh_ip);
695
696 brelse(bh_log);
697 brelse(bh_ip);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000698
699 sdp->sd_replayed_blocks++;
700 }
701
702 return error;
703}
704
705/* FIXME: sort out accounting for log blocks etc. */
706
707static void databuf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
708{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400709 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
710 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000711
712 if (error) {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400713 gfs2_meta_sync(ip->i_gl);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000714 return;
715 }
716 if (pass != 1)
717 return;
718
719 /* data sync? */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400720 gfs2_meta_sync(ip->i_gl);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000721
722 fs_info(sdp, "jid=%u: Replayed %u of %u data blocks\n",
723 jd->jd_jid, sdp->sd_replayed_blocks, sdp->sd_found_blocks);
724}
725
726static void databuf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
727{
728 struct list_head *head = &sdp->sd_log_le_databuf;
729 struct gfs2_bufdata *bd;
730
731 while (!list_empty(head)) {
732 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
Steven Whitehouseb8e1aab2006-08-22 16:25:50 -0400733 list_del_init(&bd->bd_le.le_list);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000734 sdp->sd_log_num_databuf--;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000735 gfs2_unpin(sdp, bd->bd_bh, ai);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000736 }
737 gfs2_assert_warn(sdp, !sdp->sd_log_num_databuf);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000738}
739
740
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400741const struct gfs2_log_operations gfs2_buf_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 .lo_add = buf_lo_add,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743 .lo_before_commit = buf_lo_before_commit,
744 .lo_after_commit = buf_lo_after_commit,
745 .lo_before_scan = buf_lo_before_scan,
746 .lo_scan_elements = buf_lo_scan_elements,
747 .lo_after_scan = buf_lo_after_scan,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400748 .lo_name = "buf",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000749};
750
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400751const struct gfs2_log_operations gfs2_revoke_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752 .lo_add = revoke_lo_add,
753 .lo_before_commit = revoke_lo_before_commit,
Steven Whitehousef42ab082011-04-14 16:50:31 +0100754 .lo_after_commit = revoke_lo_after_commit,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 .lo_before_scan = revoke_lo_before_scan,
756 .lo_scan_elements = revoke_lo_scan_elements,
757 .lo_after_scan = revoke_lo_after_scan,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400758 .lo_name = "revoke",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759};
760
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400761const struct gfs2_log_operations gfs2_rg_lops = {
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400762 .lo_name = "rg",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763};
764
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400765const struct gfs2_log_operations gfs2_databuf_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766 .lo_add = databuf_lo_add,
767 .lo_before_commit = databuf_lo_before_commit,
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000768 .lo_after_commit = databuf_lo_after_commit,
769 .lo_scan_elements = databuf_lo_scan_elements,
770 .lo_after_scan = databuf_lo_after_scan,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400771 .lo_name = "databuf",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772};
773
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400774const struct gfs2_log_operations *gfs2_log_ops[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000775 &gfs2_databuf_lops,
Steven Whitehouse16615be2007-09-17 10:59:52 +0100776 &gfs2_buf_lops,
777 &gfs2_rg_lops,
778 &gfs2_revoke_lops,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400779 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780};
781