blob: f707601597dccd2d277846768b1d06f0fbbc588e [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
Steven Whitehouseb09e5932006-04-07 11:17:32 -040013extern const struct gfs2_log_operations *gfs2_log_ops[];
Andreas Gruenbacher19ebc052019-08-28 22:21:34 +020014extern void gfs2_log_incr_head(struct gfs2_sbd *sdp);
15extern u64 gfs2_log_bmap(struct gfs2_jdesc *jd, unsigned int lbn);
Bob Peterson82218942021-01-21 10:10:26 -050016extern void gfs2_log_write(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd,
17 struct page *page, unsigned size, unsigned offset,
18 u64 blkno);
Abhi Dasf4686c22019-05-02 14:17:40 -050019extern void gfs2_log_submit_bio(struct bio **biop, int opf);
Steven Whitehouse767f4332012-12-14 12:52:14 +000020extern void gfs2_pin(struct gfs2_sbd *sdp, struct buffer_head *bh);
Abhi Dasf4686c22019-05-02 14:17:40 -050021extern int gfs2_find_jhead(struct gfs2_jdesc *jd,
22 struct gfs2_log_header_host *head, bool keep_cache);
Bob Petersonf5456b52021-05-19 14:54:02 -040023extern void gfs2_drain_revokes(struct gfs2_sbd *sdp);
Robert Peterson2332c442007-06-18 14:50:20 -050024static inline unsigned int buf_limit(struct gfs2_sbd *sdp)
25{
Andreas Gruenbacher458094c2020-12-05 13:21:50 +010026 return sdp->sd_ldptrs;
Robert Peterson2332c442007-06-18 14:50:20 -050027}
28
29static inline unsigned int databuf_limit(struct gfs2_sbd *sdp)
30{
Andreas Gruenbacher458094c2020-12-05 13:21:50 +010031 return sdp->sd_ldptrs / 2;
Robert Peterson2332c442007-06-18 14:50:20 -050032}
33
Steven Whitehoused69a3c62014-02-21 15:22:35 +000034static inline void lops_before_commit(struct gfs2_sbd *sdp,
35 struct gfs2_trans *tr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000036{
37 int x;
38 for (x = 0; gfs2_log_ops[x]; x++)
39 if (gfs2_log_ops[x]->lo_before_commit)
Steven Whitehoused69a3c62014-02-21 15:22:35 +000040 gfs2_log_ops[x]->lo_before_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000041}
42
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050043static inline void lops_after_commit(struct gfs2_sbd *sdp,
44 struct gfs2_trans *tr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000045{
46 int x;
47 for (x = 0; gfs2_log_ops[x]; x++)
48 if (gfs2_log_ops[x]->lo_after_commit)
Benjamin Marzinski16ca9412013-04-05 20:31:46 -050049 gfs2_log_ops[x]->lo_after_commit(sdp, tr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000050}
51
52static inline void lops_before_scan(struct gfs2_jdesc *jd,
Al Viro55167622006-10-13 21:47:13 -040053 struct gfs2_log_header_host *head,
David Teiglandb3b94fa2006-01-16 16:50:04 +000054 unsigned int pass)
55{
56 int x;
57 for (x = 0; gfs2_log_ops[x]; x++)
58 if (gfs2_log_ops[x]->lo_before_scan)
59 gfs2_log_ops[x]->lo_before_scan(jd, head, pass);
60}
61
Bob Peterson7c70b892019-03-25 09:34:19 -060062static inline int lops_scan_elements(struct gfs2_jdesc *jd, u32 start,
David Teiglandb3b94fa2006-01-16 16:50:04 +000063 struct gfs2_log_descriptor *ld,
64 __be64 *ptr,
65 unsigned int pass)
66{
67 int x, error;
68 for (x = 0; gfs2_log_ops[x]; x++)
69 if (gfs2_log_ops[x]->lo_scan_elements) {
70 error = gfs2_log_ops[x]->lo_scan_elements(jd, start,
71 ld, ptr, pass);
72 if (error)
73 return error;
74 }
75
76 return 0;
77}
78
79static inline void lops_after_scan(struct gfs2_jdesc *jd, int error,
80 unsigned int pass)
81{
82 int x;
83 for (x = 0; gfs2_log_ops[x]; x++)
84 if (gfs2_log_ops[x]->lo_before_scan)
85 gfs2_log_ops[x]->lo_after_scan(jd, error, pass);
86}
87
88#endif /* __LOPS_DOT_H__ */
89