xref: /openbmc/linux/fs/gfs2/lops.c (revision a5b1d3fc)
1 /*
2  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
4  *
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.
8  */
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>
15 #include <linux/mempool.h>
16 #include <linux/gfs2_ondisk.h>
17 #include <linux/bio.h>
18 #include <linux/fs.h>
19 #include <linux/list_sort.h>
20 
21 #include "dir.h"
22 #include "gfs2.h"
23 #include "incore.h"
24 #include "inode.h"
25 #include "glock.h"
26 #include "log.h"
27 #include "lops.h"
28 #include "meta_io.h"
29 #include "recovery.h"
30 #include "rgrp.h"
31 #include "trans.h"
32 #include "util.h"
33 #include "trace_gfs2.h"
34 
35 /**
36  * gfs2_pin - Pin a buffer in memory
37  * @sdp: The superblock
38  * @bh: The buffer to be pinned
39  *
40  * The log lock must be held when calling this function
41  */
42 void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh)
43 {
44 	struct gfs2_bufdata *bd;
45 
46 	BUG_ON(!current->journal_info);
47 
48 	clear_buffer_dirty(bh);
49 	if (test_set_buffer_pinned(bh))
50 		gfs2_assert_withdraw(sdp, 0);
51 	if (!buffer_uptodate(bh))
52 		gfs2_io_error_bh_wd(sdp, bh);
53 	bd = bh->b_private;
54 	/* If this buffer is in the AIL and it has already been written
55 	 * to in-place disk block, remove it from the AIL.
56 	 */
57 	spin_lock(&sdp->sd_ail_lock);
58 	if (bd->bd_tr)
59 		list_move(&bd->bd_ail_st_list, &bd->bd_tr->tr_ail2_list);
60 	spin_unlock(&sdp->sd_ail_lock);
61 	get_bh(bh);
62 	atomic_inc(&sdp->sd_log_pinned);
63 	trace_gfs2_pin(bd, 1);
64 }
65 
66 static bool buffer_is_rgrp(const struct gfs2_bufdata *bd)
67 {
68 	return bd->bd_gl->gl_name.ln_type == LM_TYPE_RGRP;
69 }
70 
71 static void maybe_release_space(struct gfs2_bufdata *bd)
72 {
73 	struct gfs2_glock *gl = bd->bd_gl;
74 	struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
75 	struct gfs2_rgrpd *rgd = gfs2_glock2rgrp(gl);
76 	unsigned int index = bd->bd_bh->b_blocknr - gl->gl_name.ln_number;
77 	struct gfs2_bitmap *bi = rgd->rd_bits + index;
78 
79 	if (bi->bi_clone == NULL)
80 		return;
81 	if (sdp->sd_args.ar_discard)
82 		gfs2_rgrp_send_discards(sdp, rgd->rd_data0, bd->bd_bh, bi, 1, NULL);
83 	memcpy(bi->bi_clone + bi->bi_offset,
84 	       bd->bd_bh->b_data + bi->bi_offset, bi->bi_bytes);
85 	clear_bit(GBF_FULL, &bi->bi_flags);
86 	rgd->rd_free_clone = rgd->rd_free;
87 	rgd->rd_extfail_pt = rgd->rd_free;
88 }
89 
90 /**
91  * gfs2_unpin - Unpin a buffer
92  * @sdp: the filesystem the buffer belongs to
93  * @bh: The buffer to unpin
94  * @ai:
95  * @flags: The inode dirty flags
96  *
97  */
98 
99 static void gfs2_unpin(struct gfs2_sbd *sdp, struct buffer_head *bh,
100 		       struct gfs2_trans *tr)
101 {
102 	struct gfs2_bufdata *bd = bh->b_private;
103 
104 	BUG_ON(!buffer_uptodate(bh));
105 	BUG_ON(!buffer_pinned(bh));
106 
107 	lock_buffer(bh);
108 	mark_buffer_dirty(bh);
109 	clear_buffer_pinned(bh);
110 
111 	if (buffer_is_rgrp(bd))
112 		maybe_release_space(bd);
113 
114 	spin_lock(&sdp->sd_ail_lock);
115 	if (bd->bd_tr) {
116 		list_del(&bd->bd_ail_st_list);
117 		brelse(bh);
118 	} else {
119 		struct gfs2_glock *gl = bd->bd_gl;
120 		list_add(&bd->bd_ail_gl_list, &gl->gl_ail_list);
121 		atomic_inc(&gl->gl_ail_count);
122 	}
123 	bd->bd_tr = tr;
124 	list_add(&bd->bd_ail_st_list, &tr->tr_ail1_list);
125 	spin_unlock(&sdp->sd_ail_lock);
126 
127 	clear_bit(GLF_LFLUSH, &bd->bd_gl->gl_flags);
128 	trace_gfs2_pin(bd, 0);
129 	unlock_buffer(bh);
130 	atomic_dec(&sdp->sd_log_pinned);
131 }
132 
133 static void gfs2_log_incr_head(struct gfs2_sbd *sdp)
134 {
135 	BUG_ON((sdp->sd_log_flush_head == sdp->sd_log_tail) &&
136 	       (sdp->sd_log_flush_head != sdp->sd_log_head));
137 
138 	if (++sdp->sd_log_flush_head == sdp->sd_jdesc->jd_blocks)
139 		sdp->sd_log_flush_head = 0;
140 }
141 
142 u64 gfs2_log_bmap(struct gfs2_sbd *sdp)
143 {
144 	unsigned int lbn = sdp->sd_log_flush_head;
145 	struct gfs2_journal_extent *je;
146 	u64 block;
147 
148 	list_for_each_entry(je, &sdp->sd_jdesc->extent_list, list) {
149 		if ((lbn >= je->lblock) && (lbn < (je->lblock + je->blocks))) {
150 			block = je->dblock + lbn - je->lblock;
151 			gfs2_log_incr_head(sdp);
152 			return block;
153 		}
154 	}
155 
156 	return -1;
157 }
158 
159 /**
160  * gfs2_end_log_write_bh - end log write of pagecache data with buffers
161  * @sdp: The superblock
162  * @bvec: The bio_vec
163  * @error: The i/o status
164  *
165  * This finds the relevant buffers and unlocks them and sets the
166  * error flag according to the status of the i/o request. This is
167  * used when the log is writing data which has an in-place version
168  * that is pinned in the pagecache.
169  */
170 
171 static void gfs2_end_log_write_bh(struct gfs2_sbd *sdp,
172 				  struct bio_vec *bvec,
173 				  blk_status_t error)
174 {
175 	struct buffer_head *bh, *next;
176 	struct page *page = bvec->bv_page;
177 	unsigned size;
178 
179 	bh = page_buffers(page);
180 	size = bvec->bv_len;
181 	while (bh_offset(bh) < bvec->bv_offset)
182 		bh = bh->b_this_page;
183 	do {
184 		if (error)
185 			mark_buffer_write_io_error(bh);
186 		unlock_buffer(bh);
187 		next = bh->b_this_page;
188 		size -= bh->b_size;
189 		brelse(bh);
190 		bh = next;
191 	} while(bh && size);
192 }
193 
194 /**
195  * gfs2_end_log_write - end of i/o to the log
196  * @bio: The bio
197  * @error: Status of i/o request
198  *
199  * Each bio_vec contains either data from the pagecache or data
200  * relating to the log itself. Here we iterate over the bio_vec
201  * array, processing both kinds of data.
202  *
203  */
204 
205 static void gfs2_end_log_write(struct bio *bio)
206 {
207 	struct gfs2_sbd *sdp = bio->bi_private;
208 	struct bio_vec *bvec;
209 	struct page *page;
210 	int i;
211 	struct bvec_iter_all iter_all;
212 
213 	if (bio->bi_status) {
214 		fs_err(sdp, "Error %d writing to journal, jid=%u\n",
215 		       bio->bi_status, sdp->sd_jdesc->jd_jid);
216 		wake_up(&sdp->sd_logd_waitq);
217 	}
218 
219 	bio_for_each_segment_all(bvec, bio, i, iter_all) {
220 		page = bvec->bv_page;
221 		if (page_has_buffers(page))
222 			gfs2_end_log_write_bh(sdp, bvec, bio->bi_status);
223 		else
224 			mempool_free(page, gfs2_page_pool);
225 	}
226 
227 	bio_put(bio);
228 	if (atomic_dec_and_test(&sdp->sd_log_in_flight))
229 		wake_up(&sdp->sd_log_flush_wait);
230 }
231 
232 /**
233  * gfs2_log_submit_bio - Submit any pending log bio
234  * @biop: Address of the bio pointer
235  * @op: REQ_OP
236  * @op_flags: req_flag_bits
237  *
238  * Submit any pending part-built or full bio to the block device. If
239  * there is no pending bio, then this is a no-op.
240  */
241 
242 void gfs2_log_submit_bio(struct bio **biop, int op, int op_flags)
243 {
244 	struct bio *bio = *biop;
245 	if (bio) {
246 		struct gfs2_sbd *sdp = bio->bi_private;
247 		atomic_inc(&sdp->sd_log_in_flight);
248 		bio_set_op_attrs(bio, op, op_flags);
249 		submit_bio(bio);
250 		*biop = NULL;
251 	}
252 }
253 
254 /**
255  * gfs2_log_alloc_bio - Allocate a bio
256  * @sdp: The super block
257  * @blkno: The device block number we want to write to
258  * @end_io: The bi_end_io callback
259  *
260  * Allocate a new bio, initialize it with the given parameters and return it.
261  *
262  * Returns: The newly allocated bio
263  */
264 
265 static struct bio *gfs2_log_alloc_bio(struct gfs2_sbd *sdp, u64 blkno,
266 				      bio_end_io_t *end_io)
267 {
268 	struct super_block *sb = sdp->sd_vfs;
269 	struct bio *bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
270 
271 	bio->bi_iter.bi_sector = blkno * (sb->s_blocksize >> 9);
272 	bio_set_dev(bio, sb->s_bdev);
273 	bio->bi_end_io = end_io;
274 	bio->bi_private = sdp;
275 
276 	return bio;
277 }
278 
279 /**
280  * gfs2_log_get_bio - Get cached log bio, or allocate a new one
281  * @sdp: The super block
282  * @blkno: The device block number we want to write to
283  * @bio: The bio to get or allocate
284  * @op: REQ_OP
285  * @end_io: The bi_end_io callback
286  * @flush: Always flush the current bio and allocate a new one?
287  *
288  * If there is a cached bio, then if the next block number is sequential
289  * with the previous one, return it, otherwise flush the bio to the
290  * device. If there is no cached bio, or we just flushed it, then
291  * allocate a new one.
292  *
293  * Returns: The bio to use for log writes
294  */
295 
296 static struct bio *gfs2_log_get_bio(struct gfs2_sbd *sdp, u64 blkno,
297 				    struct bio **biop, int op,
298 				    bio_end_io_t *end_io, bool flush)
299 {
300 	struct bio *bio = *biop;
301 
302 	if (bio) {
303 		u64 nblk;
304 
305 		nblk = bio_end_sector(bio);
306 		nblk >>= sdp->sd_fsb2bb_shift;
307 		if (blkno == nblk && !flush)
308 			return bio;
309 		gfs2_log_submit_bio(biop, op, 0);
310 	}
311 
312 	*biop = gfs2_log_alloc_bio(sdp, blkno, end_io);
313 	return *biop;
314 }
315 
316 /**
317  * gfs2_log_write - write to log
318  * @sdp: the filesystem
319  * @page: the page to write
320  * @size: the size of the data to write
321  * @offset: the offset within the page
322  * @blkno: block number of the log entry
323  *
324  * Try and add the page segment to the current bio. If that fails,
325  * submit the current bio to the device and create a new one, and
326  * then add the page segment to that.
327  */
328 
329 void gfs2_log_write(struct gfs2_sbd *sdp, struct page *page,
330 		    unsigned size, unsigned offset, u64 blkno)
331 {
332 	struct bio *bio;
333 	int ret;
334 
335 	bio = gfs2_log_get_bio(sdp, blkno, &sdp->sd_log_bio, REQ_OP_WRITE,
336 			       gfs2_end_log_write, false);
337 	ret = bio_add_page(bio, page, size, offset);
338 	if (ret == 0) {
339 		bio = gfs2_log_get_bio(sdp, blkno, &sdp->sd_log_bio,
340 				       REQ_OP_WRITE, gfs2_end_log_write, true);
341 		ret = bio_add_page(bio, page, size, offset);
342 		WARN_ON(ret == 0);
343 	}
344 }
345 
346 /**
347  * gfs2_log_write_bh - write a buffer's content to the log
348  * @sdp: The super block
349  * @bh: The buffer pointing to the in-place location
350  *
351  * This writes the content of the buffer to the next available location
352  * in the log. The buffer will be unlocked once the i/o to the log has
353  * completed.
354  */
355 
356 static void gfs2_log_write_bh(struct gfs2_sbd *sdp, struct buffer_head *bh)
357 {
358 	gfs2_log_write(sdp, bh->b_page, bh->b_size, bh_offset(bh),
359 		       gfs2_log_bmap(sdp));
360 }
361 
362 /**
363  * gfs2_log_write_page - write one block stored in a page, into the log
364  * @sdp: The superblock
365  * @page: The struct page
366  *
367  * This writes the first block-sized part of the page into the log. Note
368  * that the page must have been allocated from the gfs2_page_pool mempool
369  * and that after this has been called, ownership has been transferred and
370  * the page may be freed at any time.
371  */
372 
373 void gfs2_log_write_page(struct gfs2_sbd *sdp, struct page *page)
374 {
375 	struct super_block *sb = sdp->sd_vfs;
376 	gfs2_log_write(sdp, page, sb->s_blocksize, 0,
377 		       gfs2_log_bmap(sdp));
378 }
379 
380 static struct page *gfs2_get_log_desc(struct gfs2_sbd *sdp, u32 ld_type,
381 				      u32 ld_length, u32 ld_data1)
382 {
383 	struct page *page = mempool_alloc(gfs2_page_pool, GFP_NOIO);
384 	struct gfs2_log_descriptor *ld = page_address(page);
385 	clear_page(ld);
386 	ld->ld_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
387 	ld->ld_header.mh_type = cpu_to_be32(GFS2_METATYPE_LD);
388 	ld->ld_header.mh_format = cpu_to_be32(GFS2_FORMAT_LD);
389 	ld->ld_type = cpu_to_be32(ld_type);
390 	ld->ld_length = cpu_to_be32(ld_length);
391 	ld->ld_data1 = cpu_to_be32(ld_data1);
392 	ld->ld_data2 = 0;
393 	return page;
394 }
395 
396 static void gfs2_check_magic(struct buffer_head *bh)
397 {
398 	void *kaddr;
399 	__be32 *ptr;
400 
401 	clear_buffer_escaped(bh);
402 	kaddr = kmap_atomic(bh->b_page);
403 	ptr = kaddr + bh_offset(bh);
404 	if (*ptr == cpu_to_be32(GFS2_MAGIC))
405 		set_buffer_escaped(bh);
406 	kunmap_atomic(kaddr);
407 }
408 
409 static int blocknr_cmp(void *priv, struct list_head *a, struct list_head *b)
410 {
411 	struct gfs2_bufdata *bda, *bdb;
412 
413 	bda = list_entry(a, struct gfs2_bufdata, bd_list);
414 	bdb = list_entry(b, struct gfs2_bufdata, bd_list);
415 
416 	if (bda->bd_bh->b_blocknr < bdb->bd_bh->b_blocknr)
417 		return -1;
418 	if (bda->bd_bh->b_blocknr > bdb->bd_bh->b_blocknr)
419 		return 1;
420 	return 0;
421 }
422 
423 static void gfs2_before_commit(struct gfs2_sbd *sdp, unsigned int limit,
424 				unsigned int total, struct list_head *blist,
425 				bool is_databuf)
426 {
427 	struct gfs2_log_descriptor *ld;
428 	struct gfs2_bufdata *bd1 = NULL, *bd2;
429 	struct page *page;
430 	unsigned int num;
431 	unsigned n;
432 	__be64 *ptr;
433 
434 	gfs2_log_lock(sdp);
435 	list_sort(NULL, blist, blocknr_cmp);
436 	bd1 = bd2 = list_prepare_entry(bd1, blist, bd_list);
437 	while(total) {
438 		num = total;
439 		if (total > limit)
440 			num = limit;
441 		gfs2_log_unlock(sdp);
442 		page = gfs2_get_log_desc(sdp,
443 					 is_databuf ? GFS2_LOG_DESC_JDATA :
444 					 GFS2_LOG_DESC_METADATA, num + 1, num);
445 		ld = page_address(page);
446 		gfs2_log_lock(sdp);
447 		ptr = (__be64 *)(ld + 1);
448 
449 		n = 0;
450 		list_for_each_entry_continue(bd1, blist, bd_list) {
451 			*ptr++ = cpu_to_be64(bd1->bd_bh->b_blocknr);
452 			if (is_databuf) {
453 				gfs2_check_magic(bd1->bd_bh);
454 				*ptr++ = cpu_to_be64(buffer_escaped(bd1->bd_bh) ? 1 : 0);
455 			}
456 			if (++n >= num)
457 				break;
458 		}
459 
460 		gfs2_log_unlock(sdp);
461 		gfs2_log_write_page(sdp, page);
462 		gfs2_log_lock(sdp);
463 
464 		n = 0;
465 		list_for_each_entry_continue(bd2, blist, bd_list) {
466 			get_bh(bd2->bd_bh);
467 			gfs2_log_unlock(sdp);
468 			lock_buffer(bd2->bd_bh);
469 
470 			if (buffer_escaped(bd2->bd_bh)) {
471 				void *kaddr;
472 				page = mempool_alloc(gfs2_page_pool, GFP_NOIO);
473 				ptr = page_address(page);
474 				kaddr = kmap_atomic(bd2->bd_bh->b_page);
475 				memcpy(ptr, kaddr + bh_offset(bd2->bd_bh),
476 				       bd2->bd_bh->b_size);
477 				kunmap_atomic(kaddr);
478 				*(__be32 *)ptr = 0;
479 				clear_buffer_escaped(bd2->bd_bh);
480 				unlock_buffer(bd2->bd_bh);
481 				brelse(bd2->bd_bh);
482 				gfs2_log_write_page(sdp, page);
483 			} else {
484 				gfs2_log_write_bh(sdp, bd2->bd_bh);
485 			}
486 			gfs2_log_lock(sdp);
487 			if (++n >= num)
488 				break;
489 		}
490 
491 		BUG_ON(total < num);
492 		total -= num;
493 	}
494 	gfs2_log_unlock(sdp);
495 }
496 
497 static void buf_lo_before_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
498 {
499 	unsigned int limit = buf_limit(sdp); /* 503 for 4k blocks */
500 	unsigned int nbuf;
501 	if (tr == NULL)
502 		return;
503 	nbuf = tr->tr_num_buf_new - tr->tr_num_buf_rm;
504 	gfs2_before_commit(sdp, limit, nbuf, &tr->tr_buf, 0);
505 }
506 
507 static void buf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
508 {
509 	struct list_head *head;
510 	struct gfs2_bufdata *bd;
511 
512 	if (tr == NULL)
513 		return;
514 
515 	head = &tr->tr_buf;
516 	while (!list_empty(head)) {
517 		bd = list_entry(head->next, struct gfs2_bufdata, bd_list);
518 		list_del_init(&bd->bd_list);
519 		gfs2_unpin(sdp, bd->bd_bh, tr);
520 	}
521 }
522 
523 static void buf_lo_before_scan(struct gfs2_jdesc *jd,
524 			       struct gfs2_log_header_host *head, int pass)
525 {
526 	if (pass != 0)
527 		return;
528 
529 	jd->jd_found_blocks = 0;
530 	jd->jd_replayed_blocks = 0;
531 }
532 
533 static int buf_lo_scan_elements(struct gfs2_jdesc *jd, u32 start,
534 				struct gfs2_log_descriptor *ld, __be64 *ptr,
535 				int pass)
536 {
537 	struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
538 	struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
539 	struct gfs2_glock *gl = ip->i_gl;
540 	unsigned int blks = be32_to_cpu(ld->ld_data1);
541 	struct buffer_head *bh_log, *bh_ip;
542 	u64 blkno;
543 	int error = 0;
544 
545 	if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_METADATA)
546 		return 0;
547 
548 	gfs2_replay_incr_blk(jd, &start);
549 
550 	for (; blks; gfs2_replay_incr_blk(jd, &start), blks--) {
551 		blkno = be64_to_cpu(*ptr++);
552 
553 		jd->jd_found_blocks++;
554 
555 		if (gfs2_revoke_check(jd, blkno, start))
556 			continue;
557 
558 		error = gfs2_replay_read_block(jd, start, &bh_log);
559 		if (error)
560 			return error;
561 
562 		bh_ip = gfs2_meta_new(gl, blkno);
563 		memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
564 
565 		if (gfs2_meta_check(sdp, bh_ip))
566 			error = -EIO;
567 		else
568 			mark_buffer_dirty(bh_ip);
569 
570 		brelse(bh_log);
571 		brelse(bh_ip);
572 
573 		if (error)
574 			break;
575 
576 		jd->jd_replayed_blocks++;
577 	}
578 
579 	return error;
580 }
581 
582 /**
583  * gfs2_meta_sync - Sync all buffers associated with a glock
584  * @gl: The glock
585  *
586  */
587 
588 static void gfs2_meta_sync(struct gfs2_glock *gl)
589 {
590 	struct address_space *mapping = gfs2_glock2aspace(gl);
591 	struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
592 	int error;
593 
594 	if (mapping == NULL)
595 		mapping = &sdp->sd_aspace;
596 
597 	filemap_fdatawrite(mapping);
598 	error = filemap_fdatawait(mapping);
599 
600 	if (error)
601 		gfs2_io_error(gl->gl_name.ln_sbd);
602 }
603 
604 static void buf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
605 {
606 	struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
607 	struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
608 
609 	if (error) {
610 		gfs2_meta_sync(ip->i_gl);
611 		return;
612 	}
613 	if (pass != 1)
614 		return;
615 
616 	gfs2_meta_sync(ip->i_gl);
617 
618 	fs_info(sdp, "jid=%u: Replayed %u of %u blocks\n",
619 	        jd->jd_jid, jd->jd_replayed_blocks, jd->jd_found_blocks);
620 }
621 
622 static void revoke_lo_before_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
623 {
624 	struct gfs2_meta_header *mh;
625 	unsigned int offset;
626 	struct list_head *head = &sdp->sd_log_revokes;
627 	struct gfs2_bufdata *bd;
628 	struct page *page;
629 	unsigned int length;
630 
631 	gfs2_write_revokes(sdp);
632 	if (!sdp->sd_log_num_revoke)
633 		return;
634 
635 	length = gfs2_struct2blk(sdp, sdp->sd_log_num_revoke, sizeof(u64));
636 	page = gfs2_get_log_desc(sdp, GFS2_LOG_DESC_REVOKE, length, sdp->sd_log_num_revoke);
637 	offset = sizeof(struct gfs2_log_descriptor);
638 
639 	list_for_each_entry(bd, head, bd_list) {
640 		sdp->sd_log_num_revoke--;
641 
642 		if (offset + sizeof(u64) > sdp->sd_sb.sb_bsize) {
643 
644 			gfs2_log_write_page(sdp, page);
645 			page = mempool_alloc(gfs2_page_pool, GFP_NOIO);
646 			mh = page_address(page);
647 			clear_page(mh);
648 			mh->mh_magic = cpu_to_be32(GFS2_MAGIC);
649 			mh->mh_type = cpu_to_be32(GFS2_METATYPE_LB);
650 			mh->mh_format = cpu_to_be32(GFS2_FORMAT_LB);
651 			offset = sizeof(struct gfs2_meta_header);
652 		}
653 
654 		*(__be64 *)(page_address(page) + offset) = cpu_to_be64(bd->bd_blkno);
655 		offset += sizeof(u64);
656 	}
657 	gfs2_assert_withdraw(sdp, !sdp->sd_log_num_revoke);
658 
659 	gfs2_log_write_page(sdp, page);
660 }
661 
662 static void revoke_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
663 {
664 	struct list_head *head = &sdp->sd_log_revokes;
665 	struct gfs2_bufdata *bd, *tmp;
666 
667 	/*
668 	 * Glocks can be referenced repeatedly on the revoke list, but the list
669 	 * only holds one reference.  All glocks on the list will have the
670 	 * GLF_REVOKES flag set initially.
671 	 */
672 
673 	list_for_each_entry_safe(bd, tmp, head, bd_list) {
674 		struct gfs2_glock *gl = bd->bd_gl;
675 
676 		if (test_bit(GLF_REVOKES, &gl->gl_flags)) {
677 			/* Keep each glock on the list exactly once. */
678 			clear_bit(GLF_REVOKES, &gl->gl_flags);
679 			continue;
680 		}
681 		list_del(&bd->bd_list);
682 		kmem_cache_free(gfs2_bufdata_cachep, bd);
683 	}
684 	list_for_each_entry_safe(bd, tmp, head, bd_list) {
685 		struct gfs2_glock *gl = bd->bd_gl;
686 
687 		list_del(&bd->bd_list);
688 		kmem_cache_free(gfs2_bufdata_cachep, bd);
689 		clear_bit(GLF_LFLUSH, &gl->gl_flags);
690 		gfs2_glock_queue_put(gl);
691 	}
692 	/* the list is empty now */
693 }
694 
695 static void revoke_lo_before_scan(struct gfs2_jdesc *jd,
696 				  struct gfs2_log_header_host *head, int pass)
697 {
698 	if (pass != 0)
699 		return;
700 
701 	jd->jd_found_revokes = 0;
702 	jd->jd_replay_tail = head->lh_tail;
703 }
704 
705 static int revoke_lo_scan_elements(struct gfs2_jdesc *jd, u32 start,
706 				   struct gfs2_log_descriptor *ld, __be64 *ptr,
707 				   int pass)
708 {
709 	struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
710 	unsigned int blks = be32_to_cpu(ld->ld_length);
711 	unsigned int revokes = be32_to_cpu(ld->ld_data1);
712 	struct buffer_head *bh;
713 	unsigned int offset;
714 	u64 blkno;
715 	int first = 1;
716 	int error;
717 
718 	if (pass != 0 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_REVOKE)
719 		return 0;
720 
721 	offset = sizeof(struct gfs2_log_descriptor);
722 
723 	for (; blks; gfs2_replay_incr_blk(jd, &start), blks--) {
724 		error = gfs2_replay_read_block(jd, start, &bh);
725 		if (error)
726 			return error;
727 
728 		if (!first)
729 			gfs2_metatype_check(sdp, bh, GFS2_METATYPE_LB);
730 
731 		while (offset + sizeof(u64) <= sdp->sd_sb.sb_bsize) {
732 			blkno = be64_to_cpu(*(__be64 *)(bh->b_data + offset));
733 
734 			error = gfs2_revoke_add(jd, blkno, start);
735 			if (error < 0) {
736 				brelse(bh);
737 				return error;
738 			}
739 			else if (error)
740 				jd->jd_found_revokes++;
741 
742 			if (!--revokes)
743 				break;
744 			offset += sizeof(u64);
745 		}
746 
747 		brelse(bh);
748 		offset = sizeof(struct gfs2_meta_header);
749 		first = 0;
750 	}
751 
752 	return 0;
753 }
754 
755 static void revoke_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
756 {
757 	struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
758 
759 	if (error) {
760 		gfs2_revoke_clean(jd);
761 		return;
762 	}
763 	if (pass != 1)
764 		return;
765 
766 	fs_info(sdp, "jid=%u: Found %u revoke tags\n",
767 	        jd->jd_jid, jd->jd_found_revokes);
768 
769 	gfs2_revoke_clean(jd);
770 }
771 
772 /**
773  * databuf_lo_before_commit - Scan the data buffers, writing as we go
774  *
775  */
776 
777 static void databuf_lo_before_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
778 {
779 	unsigned int limit = databuf_limit(sdp);
780 	unsigned int nbuf;
781 	if (tr == NULL)
782 		return;
783 	nbuf = tr->tr_num_databuf_new - tr->tr_num_databuf_rm;
784 	gfs2_before_commit(sdp, limit, nbuf, &tr->tr_databuf, 1);
785 }
786 
787 static int databuf_lo_scan_elements(struct gfs2_jdesc *jd, u32 start,
788 				    struct gfs2_log_descriptor *ld,
789 				    __be64 *ptr, int pass)
790 {
791 	struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
792 	struct gfs2_glock *gl = ip->i_gl;
793 	unsigned int blks = be32_to_cpu(ld->ld_data1);
794 	struct buffer_head *bh_log, *bh_ip;
795 	u64 blkno;
796 	u64 esc;
797 	int error = 0;
798 
799 	if (pass != 1 || be32_to_cpu(ld->ld_type) != GFS2_LOG_DESC_JDATA)
800 		return 0;
801 
802 	gfs2_replay_incr_blk(jd, &start);
803 	for (; blks; gfs2_replay_incr_blk(jd, &start), blks--) {
804 		blkno = be64_to_cpu(*ptr++);
805 		esc = be64_to_cpu(*ptr++);
806 
807 		jd->jd_found_blocks++;
808 
809 		if (gfs2_revoke_check(jd, blkno, start))
810 			continue;
811 
812 		error = gfs2_replay_read_block(jd, start, &bh_log);
813 		if (error)
814 			return error;
815 
816 		bh_ip = gfs2_meta_new(gl, blkno);
817 		memcpy(bh_ip->b_data, bh_log->b_data, bh_log->b_size);
818 
819 		/* Unescape */
820 		if (esc) {
821 			__be32 *eptr = (__be32 *)bh_ip->b_data;
822 			*eptr = cpu_to_be32(GFS2_MAGIC);
823 		}
824 		mark_buffer_dirty(bh_ip);
825 
826 		brelse(bh_log);
827 		brelse(bh_ip);
828 
829 		jd->jd_replayed_blocks++;
830 	}
831 
832 	return error;
833 }
834 
835 /* FIXME: sort out accounting for log blocks etc. */
836 
837 static void databuf_lo_after_scan(struct gfs2_jdesc *jd, int error, int pass)
838 {
839 	struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
840 	struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode);
841 
842 	if (error) {
843 		gfs2_meta_sync(ip->i_gl);
844 		return;
845 	}
846 	if (pass != 1)
847 		return;
848 
849 	/* data sync? */
850 	gfs2_meta_sync(ip->i_gl);
851 
852 	fs_info(sdp, "jid=%u: Replayed %u of %u data blocks\n",
853 		jd->jd_jid, jd->jd_replayed_blocks, jd->jd_found_blocks);
854 }
855 
856 static void databuf_lo_after_commit(struct gfs2_sbd *sdp, struct gfs2_trans *tr)
857 {
858 	struct list_head *head;
859 	struct gfs2_bufdata *bd;
860 
861 	if (tr == NULL)
862 		return;
863 
864 	head = &tr->tr_databuf;
865 	while (!list_empty(head)) {
866 		bd = list_entry(head->next, struct gfs2_bufdata, bd_list);
867 		list_del_init(&bd->bd_list);
868 		gfs2_unpin(sdp, bd->bd_bh, tr);
869 	}
870 }
871 
872 
873 static const struct gfs2_log_operations gfs2_buf_lops = {
874 	.lo_before_commit = buf_lo_before_commit,
875 	.lo_after_commit = buf_lo_after_commit,
876 	.lo_before_scan = buf_lo_before_scan,
877 	.lo_scan_elements = buf_lo_scan_elements,
878 	.lo_after_scan = buf_lo_after_scan,
879 	.lo_name = "buf",
880 };
881 
882 static const struct gfs2_log_operations gfs2_revoke_lops = {
883 	.lo_before_commit = revoke_lo_before_commit,
884 	.lo_after_commit = revoke_lo_after_commit,
885 	.lo_before_scan = revoke_lo_before_scan,
886 	.lo_scan_elements = revoke_lo_scan_elements,
887 	.lo_after_scan = revoke_lo_after_scan,
888 	.lo_name = "revoke",
889 };
890 
891 static const struct gfs2_log_operations gfs2_databuf_lops = {
892 	.lo_before_commit = databuf_lo_before_commit,
893 	.lo_after_commit = databuf_lo_after_commit,
894 	.lo_scan_elements = databuf_lo_scan_elements,
895 	.lo_after_scan = databuf_lo_after_scan,
896 	.lo_name = "databuf",
897 };
898 
899 const struct gfs2_log_operations *gfs2_log_ops[] = {
900 	&gfs2_databuf_lops,
901 	&gfs2_buf_lops,
902 	&gfs2_revoke_lops,
903 	NULL,
904 };
905 
906