blob: 4e81742de7a0c3394f23ae82d0f2327335b7a17a [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersond0109bf2008-01-28 11:20:10 -06003 * Copyright (C) 2004-2008 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#ifndef __LOPS_DOT_H__
11#define __LOPS_DOT_H__
12
Steven Whitehousef2f7ba52006-09-05 10:39:21 -040013#include <linux/list.h>
14#include "incore.h"
15
Robert Peterson2332c442007-06-18 14:50:20 -050016#define BUF_OFFSET \
17 ((sizeof(struct gfs2_log_descriptor) + sizeof(__be64) - 1) & \
18 ~(sizeof(__be64) - 1))
19#define DATABUF_OFFSET \
20 ((sizeof(struct gfs2_log_descriptor) + (2 * sizeof(__be64) - 1)) & \
21 ~(2 * sizeof(__be64) - 1))
22
Steven Whitehouseb09e5932006-04-07 11:17:32 -040023extern const struct gfs2_log_operations gfs2_glock_lops;
24extern const struct gfs2_log_operations gfs2_buf_lops;
25extern const struct gfs2_log_operations gfs2_revoke_lops;
Steven Whitehouseb09e5932006-04-07 11:17:32 -040026extern const struct gfs2_log_operations gfs2_databuf_lops;
David Teiglandb3b94fa2006-01-16 16:50:04 +000027
Steven Whitehouseb09e5932006-04-07 11:17:32 -040028extern const struct gfs2_log_operations *gfs2_log_ops[];
Bob Petersonc1696fb2018-01-17 00:01:33 +010029extern u64 gfs2_log_bmap(struct gfs2_sbd *sdp);
30extern void gfs2_log_write(struct gfs2_sbd *sdp, struct page *page,
31 unsigned size, unsigned offset, u64 blkno);
Steven Whitehousee8c92ed2012-04-16 09:28:31 +010032extern void gfs2_log_write_page(struct gfs2_sbd *sdp, struct page *page);
Bob Peterson23e93c92019-02-13 15:12:17 -050033extern void gfs2_log_submit_bio(struct bio **biop, int op, int op_flags);
Steven Whitehouse767f4332012-12-14 12:52:14 +000034extern void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +000035
Robert Peterson2332c442007-06-18 14:50:20 -050036static inline unsigned int buf_limit(struct gfs2_sbd *sdp)
37{
38 unsigned int limit;
39
40 limit = (sdp->sd_sb.sb_bsize - BUF_OFFSET) / sizeof(__be64);
41 return limit;
42}
43
44static inline unsigned int databuf_limit(struct gfs2_sbd *sdp)
45{
46 unsigned int limit;
47
48 limit = (sdp->sd_sb.sb_bsize - DATABUF_OFFSET) / (2 * sizeof(__be64));
49 return limit;
50}
51
Steven Whitehoused69a3c62014-02-21 15:22:35 +000052static inline void lops_before_commit(struct gfs2_sbd *sdp,
53 struct gfs2_trans *tr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000054{
55 int x;
56 for (x = 0; gfs2_log_ops[x]; x++)
57 if (gfs2_log_ops[x]->lo_before_commit)
Steven Whitehoused69a3c62014-02-21 15:22:35 +000058 gfs2_log_ops[x]->lo_before_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000059}
60
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050061static inline void lops_after_commit(struct gfs2_sbd *sdp,
62 struct gfs2_trans *tr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000063{
64 int x;
65 for (x = 0; gfs2_log_ops[x]; x++)
66 if (gfs2_log_ops[x]->lo_after_commit)
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050067 gfs2_log_ops[x]->lo_after_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000068}
69
70static inline void lops_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -040071 struct gfs2_log_header_host *head,
David Teiglandb3b94fa2006-01-16 16:50:04 +000072 unsigned int pass)
73{
74 int x;
75 for (x = 0; gfs2_log_ops[x]; x++)
76 if (gfs2_log_ops[x]->lo_before_scan)
77 gfs2_log_ops[x]->lo_before_scan(jd, head, pass);
78}
79
Bob Peterson7c70b892019-03-25 09:34:19 -060080static inline int lops_scan_elements(struct gfs2_jdesc *jd, u32 start,
David Teiglandb3b94fa2006-01-16 16:50:04 +000081 struct gfs2_log_descriptor *ld,
82 __be64 *ptr,
83 unsigned int pass)
84{
85 int x, error;
86 for (x = 0; gfs2_log_ops[x]; x++)
87 if (gfs2_log_ops[x]->lo_scan_elements) {
88 error = gfs2_log_ops[x]->lo_scan_elements(jd, start,
89 ld, ptr, pass);
90 if (error)
91 return error;
92 }
93
94 return 0;
95}
96
97static inline void lops_after_scan(struct gfs2_jdesc *jd, int error,
98 unsigned int pass)
99{
100 int x;
101 for (x = 0; gfs2_log_ops[x]; x++)
102 if (gfs2_log_ops[x]->lo_before_scan)
103 gfs2_log_ops[x]->lo_after_scan(jd, error, pass);
104}
105
106#endif /* __LOPS_DOT_H__ */
107