blob: 4390f6f4047d3466c60899d4b1d2526de985d450 [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>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020016#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017
18#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include "incore.h"
Robert Peterson2332c442007-06-18 14:50:20 -050020#include "inode.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 "recovery.h"
26#include "rgrp.h"
27#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050028#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010030/**
31 * gfs2_pin - Pin a buffer in memory
32 * @sdp: The superblock
33 * @bh: The buffer to be pinned
34 *
35 * The log lock must be held when calling this function
36 */
37static void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh)
38{
39 struct gfs2_bufdata *bd;
40
41 gfs2_assert_withdraw(sdp, test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags));
42
43 clear_buffer_dirty(bh);
44 if (test_set_buffer_pinned(bh))
45 gfs2_assert_withdraw(sdp, 0);
46 if (!buffer_uptodate(bh))
47 gfs2_io_error_bh(sdp, bh);
48 bd = bh->b_private;
49 /* If this buffer is in the AIL and it has already been written
50 * to in-place disk block, remove it from the AIL.
51 */
52 if (bd->bd_ail)
53 list_move(&bd->bd_ail_st_list, &bd->bd_ail->ai_ail2_list);
54 get_bh(bh);
55}
56
57/**
58 * gfs2_unpin - Unpin a buffer
59 * @sdp: the filesystem the buffer belongs to
60 * @bh: The buffer to unpin
61 * @ai:
62 *
63 */
64
65static void gfs2_unpin(struct gfs2_sbd *sdp, struct buffer_head *bh,
66 struct gfs2_ail *ai)
67{
68 struct gfs2_bufdata *bd = bh->b_private;
69
70 gfs2_assert_withdraw(sdp, buffer_uptodate(bh));
71
72 if (!buffer_pinned(bh))
73 gfs2_assert_withdraw(sdp, 0);
74
75 lock_buffer(bh);
76 mark_buffer_dirty(bh);
77 clear_buffer_pinned(bh);
78
79 gfs2_log_lock(sdp);
80 if (bd->bd_ail) {
81 list_del(&bd->bd_ail_st_list);
82 brelse(bh);
83 } else {
84 struct gfs2_glock *gl = bd->bd_gl;
85 list_add(&bd->bd_ail_gl_list, &gl->gl_ail_list);
86 atomic_inc(&gl->gl_ail_count);
87 }
88 bd->bd_ail = ai;
89 list_add(&bd->bd_ail_st_list, &ai->ai_ail1_list);
Steven Whitehouse2bcd6102007-11-08 14:25:12 +000090 clear_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +010091 gfs2_log_unlock(sdp);
92 unlock_buffer(bh);
93}
94
Steven Whitehouse16615be2007-09-17 10:59:52 +010095
96static inline struct gfs2_log_descriptor *bh_log_desc(struct buffer_head *bh)
97{
98 return (struct gfs2_log_descriptor *)bh->b_data;
99}
100
101static inline __be64 *bh_log_ptr(struct buffer_head *bh)
102{
103 struct gfs2_log_descriptor *ld = bh_log_desc(bh);
104 return (__force __be64 *)(ld + 1);
105}
106
107static inline __be64 *bh_ptr_end(struct buffer_head *bh)
108{
109 return (__force __be64 *)(bh->b_data + bh->b_size);
110}
111
112
113static struct buffer_head *gfs2_get_log_desc(struct gfs2_sbd *sdp, u32 ld_type)
114{
115 struct buffer_head *bh = gfs2_log_get_buf(sdp);
116 struct gfs2_log_descriptor *ld = bh_log_desc(bh);
117 ld->ld_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
118 ld->ld_header.mh_type = cpu_to_be32(GFS2_METATYPE_LD);
119 ld->ld_header.mh_format = cpu_to_be32(GFS2_FORMAT_LD);
120 ld->ld_type = cpu_to_be32(ld_type);
121 ld->ld_length = 0;
122 ld->ld_data1 = 0;
123 ld->ld_data2 = 0;
124 memset(ld->ld_reserved, 0, sizeof(ld->ld_reserved));
125 return bh;
126}
127
David Teiglandb3b94fa2006-01-16 16:50:04 +0000128static void buf_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
129{
130 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
131 struct gfs2_trans *tr;
132
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100133 lock_buffer(bd->bd_bh);
Steven Whitehouse8bd95722007-01-25 10:04:20 +0000134 gfs2_log_lock(sdp);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100135 if (!list_empty(&bd->bd_list_tr))
136 goto out;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500137 tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000138 tr->tr_touched = 1;
139 tr->tr_num_buf++;
140 list_add(&bd->bd_list_tr, &tr->tr_list_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141 if (!list_empty(&le->le_list))
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100142 goto out;
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000143 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
144 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145 gfs2_meta_check(sdp, bd->bd_bh);
Steven Whitehousea98ab222006-01-18 13:38:44 +0000146 gfs2_pin(sdp, bd->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 sdp->sd_log_num_buf++;
148 list_add(&le->le_list, &sdp->sd_log_le_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149 tr->tr_num_buf_new++;
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100150out:
151 gfs2_log_unlock(sdp);
152 unlock_buffer(bd->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153}
154
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155static void buf_lo_before_commit(struct gfs2_sbd *sdp)
156{
157 struct buffer_head *bh;
158 struct gfs2_log_descriptor *ld;
159 struct gfs2_bufdata *bd1 = NULL, *bd2;
Bob Peterson905d2ae2007-07-24 14:05:31 -0500160 unsigned int total;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 unsigned int limit;
162 unsigned int num;
163 unsigned n;
164 __be64 *ptr;
165
Robert Peterson2332c442007-06-18 14:50:20 -0500166 limit = buf_limit(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167 /* for 4k blocks, limit = 503 */
168
Bob Peterson905d2ae2007-07-24 14:05:31 -0500169 gfs2_log_lock(sdp);
170 total = sdp->sd_log_num_buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 bd1 = bd2 = list_prepare_entry(bd1, &sdp->sd_log_le_buf, bd_le.le_list);
172 while(total) {
173 num = total;
174 if (total > limit)
175 num = limit;
Bob Peterson905d2ae2007-07-24 14:05:31 -0500176 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100177 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_METADATA);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500178 gfs2_log_lock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100179 ld = bh_log_desc(bh);
180 ptr = bh_log_ptr(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 ld->ld_length = cpu_to_be32(num + 1);
182 ld->ld_data1 = cpu_to_be32(num);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183
184 n = 0;
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500185 list_for_each_entry_continue(bd1, &sdp->sd_log_le_buf,
186 bd_le.le_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 *ptr++ = cpu_to_be64(bd1->bd_bh->b_blocknr);
188 if (++n >= num)
189 break;
190 }
191
Bob Peterson905d2ae2007-07-24 14:05:31 -0500192 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100193 submit_bh(WRITE, bh);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500194 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195
196 n = 0;
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500197 list_for_each_entry_continue(bd2, &sdp->sd_log_le_buf,
198 bd_le.le_list) {
Steven Whitehouse16615be2007-09-17 10:59:52 +0100199 get_bh(bd2->bd_bh);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500200 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100201 lock_buffer(bd2->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000202 bh = gfs2_log_fake_buf(sdp, bd2->bd_bh);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100203 submit_bh(WRITE, bh);
Bob Peterson905d2ae2007-07-24 14:05:31 -0500204 gfs2_log_lock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 if (++n >= num)
206 break;
207 }
208
Bob Peterson905d2ae2007-07-24 14:05:31 -0500209 BUG_ON(total < num);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210 total -= num;
211 }
Bob Peterson905d2ae2007-07-24 14:05:31 -0500212 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000213}
214
215static void buf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
216{
217 struct list_head *head = &sdp->sd_log_le_buf;
218 struct gfs2_bufdata *bd;
219
220 while (!list_empty(head)) {
221 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
222 list_del_init(&bd->bd_le.le_list);
223 sdp->sd_log_num_buf--;
224
Steven Whitehousea98ab222006-01-18 13:38:44 +0000225 gfs2_unpin(sdp, bd->bd_bh, ai);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 }
227 gfs2_assert_warn(sdp, !sdp->sd_log_num_buf);
228}
229
230static void buf_lo_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -0400231 struct gfs2_log_header_host *head, int pass)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400233 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000234
235 if (pass != 0)
236 return;
237
238 sdp->sd_found_blocks = 0;
239 sdp->sd_replayed_blocks = 0;
240}
241
242static int buf_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
243 struct gfs2_log_descriptor *ld, __be64 *ptr,
244 int pass)
245{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400246 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
247 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500248 struct gfs2_glock *gl = ip->i_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249 unsigned int blks = be32_to_cpu(ld->ld_data1);
250 struct buffer_head *bh_log, *bh_ip;
Steven Whitehousecd915492006-09-04 12:49:07 -0400251 u64 blkno;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252 int error = 0;
253
254 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_METADATA)
255 return 0;
256
257 gfs2_replay_incr_blk(sdp, &start);
258
259 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
260 blkno = be64_to_cpu(*ptr++);
261
262 sdp->sd_found_blocks++;
263
264 if (gfs2_revoke_check(sdp, blkno, start))
265 continue;
266
267 error = gfs2_replay_read_block(jd, start, &bh_log);
Steven Whitehouse82ffa512006-09-04 14:47:06 -0400268 if (error)
269 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000270
271 bh_ip = gfs2_meta_new(gl, blkno);
272 memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
273
274 if (gfs2_meta_check(sdp, bh_ip))
275 error = -EIO;
276 else
277 mark_buffer_dirty(bh_ip);
278
279 brelse(bh_log);
280 brelse(bh_ip);
281
282 if (error)
283 break;
284
285 sdp->sd_replayed_blocks++;
286 }
287
288 return error;
289}
290
291static void buf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
292{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400293 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
294 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000295
296 if (error) {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400297 gfs2_meta_sync(ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000298 return;
299 }
300 if (pass != 1)
301 return;
302
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400303 gfs2_meta_sync(ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304
305 fs_info(sdp, "jid=%u: Replayed %u of %u blocks\n",
306 jd->jd_jid, sdp->sd_replayed_blocks, sdp->sd_found_blocks);
307}
308
309static void revoke_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
310{
311 struct gfs2_trans *tr;
312
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500313 tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314 tr->tr_touched = 1;
315 tr->tr_num_revoke++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000316 sdp->sd_log_num_revoke++;
317 list_add(&le->le_list, &sdp->sd_log_le_revoke);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318}
319
320static void revoke_lo_before_commit(struct gfs2_sbd *sdp)
321{
322 struct gfs2_log_descriptor *ld;
323 struct gfs2_meta_header *mh;
324 struct buffer_head *bh;
325 unsigned int offset;
326 struct list_head *head = &sdp->sd_log_le_revoke;
Steven Whitehouse82e86082007-09-02 15:39:43 +0100327 struct gfs2_bufdata *bd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000328
329 if (!sdp->sd_log_num_revoke)
330 return;
331
Steven Whitehouse16615be2007-09-17 10:59:52 +0100332 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_REVOKE);
333 ld = bh_log_desc(bh);
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500334 ld->ld_length = cpu_to_be32(gfs2_struct2blk(sdp, sdp->sd_log_num_revoke,
Steven Whitehousecd915492006-09-04 12:49:07 -0400335 sizeof(u64)));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000336 ld->ld_data1 = cpu_to_be32(sdp->sd_log_num_revoke);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000337 offset = sizeof(struct gfs2_log_descriptor);
338
339 while (!list_empty(head)) {
Steven Whitehouse82e86082007-09-02 15:39:43 +0100340 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
341 list_del_init(&bd->bd_le.le_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342 sdp->sd_log_num_revoke--;
343
Steven Whitehousecd915492006-09-04 12:49:07 -0400344 if (offset + sizeof(u64) > sdp->sd_sb.sb_bsize) {
Steven Whitehouse16615be2007-09-17 10:59:52 +0100345 submit_bh(WRITE, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346
347 bh = gfs2_log_get_buf(sdp);
348 mh = (struct gfs2_meta_header *)bh->b_data;
349 mh->mh_magic = cpu_to_be32(GFS2_MAGIC);
Steven Whitehousee3167de2006-03-30 15:46:23 -0500350 mh->mh_type = cpu_to_be32(GFS2_METATYPE_LB);
351 mh->mh_format = cpu_to_be32(GFS2_FORMAT_LB);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000352 offset = sizeof(struct gfs2_meta_header);
353 }
354
Steven Whitehouse82e86082007-09-02 15:39:43 +0100355 *(__be64 *)(bh->b_data + offset) = cpu_to_be64(bd->bd_blkno);
Steven Whitehouse0820ab52007-09-02 16:47:38 +0100356 kmem_cache_free(gfs2_bufdata_cachep, bd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357
Steven Whitehousecd915492006-09-04 12:49:07 -0400358 offset += sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359 }
360 gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
361
Steven Whitehouse16615be2007-09-17 10:59:52 +0100362 submit_bh(WRITE, bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363}
364
365static void revoke_lo_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -0400366 struct gfs2_log_header_host *head, int pass)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400368 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369
370 if (pass != 0)
371 return;
372
373 sdp->sd_found_revokes = 0;
374 sdp->sd_replay_tail = head->lh_tail;
375}
376
377static int revoke_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
378 struct gfs2_log_descriptor *ld, __be64 *ptr,
379 int pass)
380{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400381 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000382 unsigned int blks = be32_to_cpu(ld->ld_length);
383 unsigned int revokes = be32_to_cpu(ld->ld_data1);
384 struct buffer_head *bh;
385 unsigned int offset;
Steven Whitehousecd915492006-09-04 12:49:07 -0400386 u64 blkno;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000387 int first = 1;
388 int error;
389
390 if (pass != 0 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_REVOKE)
391 return 0;
392
393 offset = sizeof(struct gfs2_log_descriptor);
394
395 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
396 error = gfs2_replay_read_block(jd, start, &bh);
397 if (error)
398 return error;
399
400 if (!first)
401 gfs2_metatype_check(sdp, bh, GFS2_METATYPE_LB);
402
Steven Whitehousecd915492006-09-04 12:49:07 -0400403 while (offset + sizeof(u64) <= sdp->sd_sb.sb_bsize) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404 blkno = be64_to_cpu(*(__be64 *)(bh->b_data + offset));
405
406 error = gfs2_revoke_add(sdp, blkno, start);
Bob Peterson3ad62e82008-01-28 16:35:13 -0600407 if (error < 0) {
408 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000409 return error;
Bob Peterson3ad62e82008-01-28 16:35:13 -0600410 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411 else if (error)
412 sdp->sd_found_revokes++;
413
414 if (!--revokes)
415 break;
Steven Whitehousecd915492006-09-04 12:49:07 -0400416 offset += sizeof(u64);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417 }
418
419 brelse(bh);
420 offset = sizeof(struct gfs2_meta_header);
421 first = 0;
422 }
423
424 return 0;
425}
426
427static void revoke_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
428{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400429 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000430
431 if (error) {
432 gfs2_revoke_clean(sdp);
433 return;
434 }
435 if (pass != 1)
436 return;
437
438 fs_info(sdp, "jid=%u: Found %u revoke tags\n",
439 jd->jd_jid, sdp->sd_found_revokes);
440
441 gfs2_revoke_clean(sdp);
442}
443
444static void rg_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
445{
446 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500447 struct gfs2_trans *tr = current->journal_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000448
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500449 tr->tr_touched = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451 rgd = container_of(le, struct gfs2_rgrpd, rd_le);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452
453 gfs2_log_lock(sdp);
Benjamin Marzinski68835622007-03-23 09:05:12 +0000454 if (!list_empty(&le->le_list)){
455 gfs2_log_unlock(sdp);
456 return;
457 }
458 gfs2_rgrp_bh_hold(rgd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459 sdp->sd_log_num_rg++;
460 list_add(&le->le_list, &sdp->sd_log_le_rg);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400461 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000462}
463
464static void rg_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
465{
466 struct list_head *head = &sdp->sd_log_le_rg;
467 struct gfs2_rgrpd *rgd;
468
469 while (!list_empty(head)) {
470 rgd = list_entry(head->next, struct gfs2_rgrpd, rd_le.le_list);
471 list_del_init(&rgd->rd_le.le_list);
472 sdp->sd_log_num_rg--;
473
474 gfs2_rgrp_repolish_clones(rgd);
475 gfs2_rgrp_bh_put(rgd);
476 }
477 gfs2_assert_warn(sdp, !sdp->sd_log_num_rg);
478}
479
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000480/**
481 * databuf_lo_add - Add a databuf to the transaction.
482 *
483 * This is used in two distinct cases:
484 * i) In ordered write mode
485 * We put the data buffer on a list so that we can ensure that its
486 * synced to disk at the right time
487 * ii) In journaled data mode
488 * We need to journal the data block in the same way as metadata in
489 * the functions above. The difference is that here we have a tag
490 * which is two __be64's being the block number (as per meta data)
491 * and a flag which says whether the data block needs escaping or
492 * not. This means we need a new log entry for each 251 or so data
493 * blocks, which isn't an enormous overhead but twice as much as
494 * for normal metadata blocks.
495 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496static void databuf_lo_add(struct gfs2_sbd *sdp, struct gfs2_log_element *le)
497{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000498 struct gfs2_bufdata *bd = container_of(le, struct gfs2_bufdata, bd_le);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500499 struct gfs2_trans *tr = current->journal_info;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000500 struct address_space *mapping = bd->bd_bh->b_page->mapping;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400501 struct gfs2_inode *ip = GFS2_I(mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100503 lock_buffer(bd->bd_bh);
Steven Whitehouse8bd95722007-01-25 10:04:20 +0000504 gfs2_log_lock(sdp);
Steven Whitehouse9ff8ec32007-09-28 13:49:05 +0100505 if (tr) {
506 if (!list_empty(&bd->bd_list_tr))
507 goto out;
508 tr->tr_touched = 1;
509 if (gfs2_is_jdata(ip)) {
510 tr->tr_num_buf++;
511 list_add(&bd->bd_list_tr, &tr->tr_list_buf);
512 }
Robert Peterson773ed1a2007-06-20 08:34:06 -0500513 }
Robert Peterson2332c442007-06-18 14:50:20 -0500514 if (!list_empty(&le->le_list))
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100515 goto out;
Robert Peterson2332c442007-06-18 14:50:20 -0500516
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000517 set_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
518 set_bit(GLF_DIRTY, &bd->bd_gl->gl_flags);
Robert Peterson2332c442007-06-18 14:50:20 -0500519 if (gfs2_is_jdata(ip)) {
Robert Peterson2332c442007-06-18 14:50:20 -0500520 gfs2_pin(sdp, bd->bd_bh);
521 tr->tr_num_databuf_new++;
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100522 sdp->sd_log_num_databuf++;
523 list_add(&le->le_list, &sdp->sd_log_le_databuf);
524 } else {
525 list_add(&le->le_list, &sdp->sd_log_le_ordered);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100526 }
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100527out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528 gfs2_log_unlock(sdp);
Steven Whitehouse9b9107a2007-08-27 13:54:05 +0100529 unlock_buffer(bd->bd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530}
531
Steven Whitehouse16615be2007-09-17 10:59:52 +0100532static void gfs2_check_magic(struct buffer_head *bh)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000533{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000534 void *kaddr;
535 __be32 *ptr;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000536
Steven Whitehouse16615be2007-09-17 10:59:52 +0100537 clear_buffer_escaped(bh);
538 kaddr = kmap_atomic(bh->b_page, KM_USER0);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000539 ptr = kaddr + bh_offset(bh);
540 if (*ptr == cpu_to_be32(GFS2_MAGIC))
Steven Whitehouse16615be2007-09-17 10:59:52 +0100541 set_buffer_escaped(bh);
Russell Cattelanc312c4f2006-10-12 09:23:41 -0400542 kunmap_atomic(kaddr, KM_USER0);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100543}
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000544
Steven Whitehouse16615be2007-09-17 10:59:52 +0100545static void gfs2_write_blocks(struct gfs2_sbd *sdp, struct buffer_head *bh,
546 struct list_head *list, struct list_head *done,
547 unsigned int n)
548{
549 struct buffer_head *bh1;
550 struct gfs2_log_descriptor *ld;
551 struct gfs2_bufdata *bd;
552 __be64 *ptr;
553
554 if (!bh)
555 return;
556
557 ld = bh_log_desc(bh);
558 ld->ld_length = cpu_to_be32(n + 1);
559 ld->ld_data1 = cpu_to_be32(n);
560
561 ptr = bh_log_ptr(bh);
562
563 get_bh(bh);
564 submit_bh(WRITE, bh);
565 gfs2_log_lock(sdp);
566 while(!list_empty(list)) {
567 bd = list_entry(list->next, struct gfs2_bufdata, bd_le.le_list);
568 list_move_tail(&bd->bd_le.le_list, done);
569 get_bh(bd->bd_bh);
570 while (be64_to_cpu(*ptr) != bd->bd_bh->b_blocknr) {
571 gfs2_log_incr_head(sdp);
572 ptr += 2;
573 }
574 gfs2_log_unlock(sdp);
575 lock_buffer(bd->bd_bh);
576 if (buffer_escaped(bd->bd_bh)) {
577 void *kaddr;
578 bh1 = gfs2_log_get_buf(sdp);
579 kaddr = kmap_atomic(bd->bd_bh->b_page, KM_USER0);
580 memcpy(bh1->b_data, kaddr + bh_offset(bd->bd_bh),
581 bh1->b_size);
582 kunmap_atomic(kaddr, KM_USER0);
583 *(__be32 *)bh1->b_data = 0;
584 clear_buffer_escaped(bd->bd_bh);
585 unlock_buffer(bd->bd_bh);
586 brelse(bd->bd_bh);
587 } else {
588 bh1 = gfs2_log_fake_buf(sdp, bd->bd_bh);
589 }
590 submit_bh(WRITE, bh1);
591 gfs2_log_lock(sdp);
592 ptr += 2;
593 }
594 gfs2_log_unlock(sdp);
595 brelse(bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000596}
597
598/**
599 * databuf_lo_before_commit - Scan the data buffers, writing as we go
600 *
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000601 */
Steven Whitehoused7b616e2007-09-02 10:48:13 +0100602
David Teiglandb3b94fa2006-01-16 16:50:04 +0000603static void databuf_lo_before_commit(struct gfs2_sbd *sdp)
604{
Steven Whitehouse16615be2007-09-17 10:59:52 +0100605 struct gfs2_bufdata *bd = NULL;
606 struct buffer_head *bh = NULL;
607 unsigned int n = 0;
608 __be64 *ptr = NULL, *end = NULL;
609 LIST_HEAD(processed);
610 LIST_HEAD(in_progress);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611
Steven Whitehousef55ab262006-02-21 12:51:39 +0000612 gfs2_log_lock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100613 while (!list_empty(&sdp->sd_log_le_databuf)) {
614 if (ptr == end) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000615 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100616 gfs2_write_blocks(sdp, bh, &in_progress, &processed, n);
617 n = 0;
618 bh = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_JDATA);
619 ptr = bh_log_ptr(bh);
620 end = bh_ptr_end(bh) - 1;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000621 gfs2_log_lock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100622 continue;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000623 }
Steven Whitehouse16615be2007-09-17 10:59:52 +0100624 bd = list_entry(sdp->sd_log_le_databuf.next, struct gfs2_bufdata, bd_le.le_list);
625 list_move_tail(&bd->bd_le.le_list, &in_progress);
626 gfs2_check_magic(bd->bd_bh);
627 *ptr++ = cpu_to_be64(bd->bd_bh->b_blocknr);
628 *ptr++ = cpu_to_be64(buffer_escaped(bh) ? 1 : 0);
629 n++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000630 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000631 gfs2_log_unlock(sdp);
Steven Whitehouse16615be2007-09-17 10:59:52 +0100632 gfs2_write_blocks(sdp, bh, &in_progress, &processed, n);
633 gfs2_log_lock(sdp);
634 list_splice(&processed, &sdp->sd_log_le_databuf);
635 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636}
637
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000638static int databuf_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
639 struct gfs2_log_descriptor *ld,
640 __be64 *ptr, int pass)
641{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400642 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
643 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500644 struct gfs2_glock *gl = ip->i_gl;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000645 unsigned int blks = be32_to_cpu(ld->ld_data1);
646 struct buffer_head *bh_log, *bh_ip;
Steven Whitehousecd915492006-09-04 12:49:07 -0400647 u64 blkno;
648 u64 esc;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000649 int error = 0;
650
651 if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_JDATA)
652 return 0;
653
654 gfs2_replay_incr_blk(sdp, &start);
655 for (; blks; gfs2_replay_incr_blk(sdp, &start), blks--) {
656 blkno = be64_to_cpu(*ptr++);
657 esc = be64_to_cpu(*ptr++);
658
659 sdp->sd_found_blocks++;
660
661 if (gfs2_revoke_check(sdp, blkno, start))
662 continue;
663
664 error = gfs2_replay_read_block(jd, start, &bh_log);
665 if (error)
666 return error;
667
668 bh_ip = gfs2_meta_new(gl, blkno);
669 memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
670
671 /* Unescape */
672 if (esc) {
673 __be32 *eptr = (__be32 *)bh_ip->b_data;
674 *eptr = cpu_to_be32(GFS2_MAGIC);
675 }
676 mark_buffer_dirty(bh_ip);
677
678 brelse(bh_log);
679 brelse(bh_ip);
680 if (error)
681 break;
682
683 sdp->sd_replayed_blocks++;
684 }
685
686 return error;
687}
688
689/* FIXME: sort out accounting for log blocks etc. */
690
691static void databuf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
692{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400693 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
694 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000695
696 if (error) {
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400697 gfs2_meta_sync(ip->i_gl);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000698 return;
699 }
700 if (pass != 1)
701 return;
702
703 /* data sync? */
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400704 gfs2_meta_sync(ip->i_gl);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000705
706 fs_info(sdp, "jid=%u: Replayed %u of %u data blocks\n",
707 jd->jd_jid, sdp->sd_replayed_blocks, sdp->sd_found_blocks);
708}
709
710static void databuf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_ail *ai)
711{
712 struct list_head *head = &sdp->sd_log_le_databuf;
713 struct gfs2_bufdata *bd;
714
715 while (!list_empty(head)) {
716 bd = list_entry(head->next, struct gfs2_bufdata, bd_le.le_list);
Steven Whitehouseb8e1aab2006-08-22 16:25:50 -0400717 list_del_init(&bd->bd_le.le_list);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000718 sdp->sd_log_num_databuf--;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000719 gfs2_unpin(sdp, bd->bd_bh, ai);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000720 }
721 gfs2_assert_warn(sdp, !sdp->sd_log_num_databuf);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000722}
723
724
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400725const struct gfs2_log_operations gfs2_buf_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000726 .lo_add = buf_lo_add,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 .lo_before_commit = buf_lo_before_commit,
728 .lo_after_commit = buf_lo_after_commit,
729 .lo_before_scan = buf_lo_before_scan,
730 .lo_scan_elements = buf_lo_scan_elements,
731 .lo_after_scan = buf_lo_after_scan,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400732 .lo_name = "buf",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000733};
734
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400735const struct gfs2_log_operations gfs2_revoke_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 .lo_add = revoke_lo_add,
737 .lo_before_commit = revoke_lo_before_commit,
738 .lo_before_scan = revoke_lo_before_scan,
739 .lo_scan_elements = revoke_lo_scan_elements,
740 .lo_after_scan = revoke_lo_after_scan,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400741 .lo_name = "revoke",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742};
743
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400744const struct gfs2_log_operations gfs2_rg_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 .lo_add = rg_lo_add,
746 .lo_after_commit = rg_lo_after_commit,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400747 .lo_name = "rg",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748};
749
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400750const struct gfs2_log_operations gfs2_databuf_lops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751 .lo_add = databuf_lo_add,
752 .lo_before_commit = databuf_lo_before_commit,
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000753 .lo_after_commit = databuf_lo_after_commit,
754 .lo_scan_elements = databuf_lo_scan_elements,
755 .lo_after_scan = databuf_lo_after_scan,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400756 .lo_name = "databuf",
David Teiglandb3b94fa2006-01-16 16:50:04 +0000757};
758
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400759const struct gfs2_log_operations *gfs2_log_ops[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 &gfs2_databuf_lops,
Steven Whitehouse16615be2007-09-17 10:59:52 +0100761 &gfs2_buf_lops,
762 &gfs2_rg_lops,
763 &gfs2_revoke_lops,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400764 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765};
766