blob: 9c5e4e491e03d871cd60aa17b459c72d226d6a82 [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001/* SPDX-License-Identifier: GPL-2.0-only */
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersond0109bf2008-01-28 11:20:10 -06004 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
7#ifndef __LOPS_DOT_H__
8#define __LOPS_DOT_H__
9
Steven Whitehousef2f7ba52006-09-05 10:39:21 -040010#include <linux/list.h>
11#include "incore.h"
12
Robert Peterson2332c442007-06-18 14:50:20 -050013#define BUF_OFFSET \
14 ((sizeof(struct gfs2_log_descriptor) + sizeof(__be64) - 1) & \
15 ~(sizeof(__be64) - 1))
16#define DATABUF_OFFSET \
17 ((sizeof(struct gfs2_log_descriptor) + (2 * sizeof(__be64) - 1)) & \
18 ~(2 * sizeof(__be64) - 1))
19
Steven Whitehouseb09e5932006-04-07 11:17:32 -040020extern const struct gfs2_log_operations *gfs2_log_ops[];
Andreas Gruenbacher19ebc052019-08-28 22:21:34 +020021extern void gfs2_log_incr_head(struct gfs2_sbd *sdp);
22extern u64 gfs2_log_bmap(struct gfs2_jdesc *jd, unsigned int lbn);
Bob Petersonc1696fb2018-01-17 00:01:33 +010023extern void gfs2_log_write(struct gfs2_sbd *sdp, struct page *page,
24 unsigned size, unsigned offset, u64 blkno);
Steven Whitehousee8c92ed2012-04-16 09:28:31 +010025extern void gfs2_log_write_page(struct gfs2_sbd *sdp, struct page *page);
Abhi Dasf4686c22019-05-02 14:17:40 -050026extern void gfs2_log_submit_bio(struct bio **biop, int opf);
Steven Whitehouse767f4332012-12-14 12:52:14 +000027extern void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh);
Abhi Dasf4686c22019-05-02 14:17:40 -050028extern int gfs2_find_jhead(struct gfs2_jdesc *jd,
29 struct gfs2_log_header_host *head, bool keep_cache);
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
Robert Peterson2332c442007-06-18 14:50:20 -050031static inline unsigned int buf_limit(struct gfs2_sbd *sdp)
32{
33 unsigned int limit;
34
35 limit = (sdp->sd_sb.sb_bsize - BUF_OFFSET) / sizeof(__be64);
36 return limit;
37}
38
39static inline unsigned int databuf_limit(struct gfs2_sbd *sdp)
40{
41 unsigned int limit;
42
43 limit = (sdp->sd_sb.sb_bsize - DATABUF_OFFSET) / (2 * sizeof(__be64));
44 return limit;
45}
46
Steven Whitehoused69a3c62014-02-21 15:22:35 +000047static inline void lops_before_commit(struct gfs2_sbd *sdp,
48 struct gfs2_trans *tr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000049{
50 int x;
51 for (x = 0; gfs2_log_ops[x]; x++)
52 if (gfs2_log_ops[x]->lo_before_commit)
Steven Whitehoused69a3c62014-02-21 15:22:35 +000053 gfs2_log_ops[x]->lo_before_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000054}
55
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050056static inline void lops_after_commit(struct gfs2_sbd *sdp,
57 struct gfs2_trans *tr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000058{
59 int x;
60 for (x = 0; gfs2_log_ops[x]; x++)
61 if (gfs2_log_ops[x]->lo_after_commit)
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050062 gfs2_log_ops[x]->lo_after_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000063}
64
65static inline void lops_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -040066 struct gfs2_log_header_host *head,
David Teiglandb3b94fa2006-01-16 16:50:04 +000067 unsigned int pass)
68{
69 int x;
70 for (x = 0; gfs2_log_ops[x]; x++)
71 if (gfs2_log_ops[x]->lo_before_scan)
72 gfs2_log_ops[x]->lo_before_scan(jd, head, pass);
73}
74
Bob Peterson7c70b892019-03-25 09:34:19 -060075static inline int lops_scan_elements(struct gfs2_jdesc *jd, u32 start,
David Teiglandb3b94fa2006-01-16 16:50:04 +000076 struct gfs2_log_descriptor *ld,
77 __be64 *ptr,
78 unsigned int pass)
79{
80 int x, error;
81 for (x = 0; gfs2_log_ops[x]; x++)
82 if (gfs2_log_ops[x]->lo_scan_elements) {
83 error = gfs2_log_ops[x]->lo_scan_elements(jd, start,
84 ld, ptr, pass);
85 if (error)
86 return error;
87 }
88
89 return 0;
90}
91
92static inline void lops_after_scan(struct gfs2_jdesc *jd, int error,
93 unsigned int pass)
94{
95 int x;
96 for (x = 0; gfs2_log_ops[x]; x++)
97 if (gfs2_log_ops[x]->lo_before_scan)
98 gfs2_log_ops[x]->lo_after_scan(jd, error, pass);
99}
100
101#endif /* __LOPS_DOT_H__ */
102