]> git.ipfire.org Git - people/ms/linux.git/blame - fs/gfs2/rgrp.h
Merge branch 'for-6.0/dax' into libnvdimm-fixes
[people/ms/linux.git] / fs / gfs2 / rgrp.h
CommitLineData
7336d0e6 1/* SPDX-License-Identifier: GPL-2.0-only */
b3b94faa
DT
2/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
fe6c991c 4 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
b3b94faa
DT
5 */
6
7#ifndef __RGRP_DOT_H__
8#define __RGRP_DOT_H__
9
5a0e3ad6 10#include <linux/slab.h>
66fc061b 11#include <linux/uaccess.h>
5a0e3ad6 12
8e2e0047
BP
13/* Since each block in the file system is represented by two bits in the
14 * bitmap, one 64-bit word in the bitmap will represent 32 blocks.
15 * By reserving 32 blocks at a time, we can optimize / shortcut how we search
16 * through the bitmaps by looking a word at a time.
17 */
ad899458 18#define RGRP_RSRV_MINBLKS 32
1a855033 19#define RGRP_RSRV_ADDBLKS 64
8e2e0047 20
f2f7ba52
SW
21struct gfs2_rgrpd;
22struct gfs2_sbd;
23struct gfs2_holder;
24
09010978 25extern void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd);
b3b94faa 26
66fc061b 27extern struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk, bool exact);
8339ee54
SW
28extern struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp);
29extern struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd);
b3b94faa 30
09010978 31extern void gfs2_clear_rgrpd(struct gfs2_sbd *sdp);
8339ee54
SW
32extern int gfs2_rindex_update(struct gfs2_sbd *sdp);
33extern void gfs2_free_clones(struct gfs2_rgrpd *rgd);
5f38a4d3 34extern int gfs2_rgrp_go_instantiate(struct gfs2_glock *gl);
39b0f1e9 35extern void gfs2_rgrp_brelse(struct gfs2_rgrpd *rgd);
b3b94faa 36
8e2e0047
BP
37extern struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip);
38
9dbe9610 39#define GFS2_AF_ORLOV 1
25435e5e
AD
40extern int gfs2_inplace_reserve(struct gfs2_inode *ip,
41 struct gfs2_alloc_parms *ap);
09010978 42extern void gfs2_inplace_release(struct gfs2_inode *ip);
b3b94faa 43
6e87ed0f
BP
44extern int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *n,
45 bool dinode, u64 *generation);
b3b94faa 46
20095218 47extern void gfs2_rs_deltree(struct gfs2_blkreserv *rs);
7336905a 48extern void gfs2_rs_delete(struct gfs2_inode *ip);
0ddeded4
AG
49extern void __gfs2_free_blocks(struct gfs2_inode *ip, struct gfs2_rgrpd *rgd,
50 u64 bstart, u32 blen, int meta);
51extern void gfs2_free_meta(struct gfs2_inode *ip, struct gfs2_rgrpd *rgd,
52 u64 bstart, u32 blen);
09010978
SW
53extern void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip);
54extern void gfs2_unlink_di(struct inode *inode);
acf7e244
SW
55extern int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr,
56 unsigned int type);
b3b94faa
DT
57
58struct gfs2_rgrp_list {
59 unsigned int rl_rgrps;
60 unsigned int rl_space;
61 struct gfs2_rgrpd **rl_rgd;
62 struct gfs2_holder *rl_ghs;
63};
64
70b0c365 65extern void gfs2_rlist_add(struct gfs2_inode *ip, struct gfs2_rgrp_list *rlist,
09010978 66 u64 block);
44dab005
AG
67extern void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist,
68 unsigned int state, u16 flags);
09010978
SW
69extern void gfs2_rlist_free(struct gfs2_rgrp_list *rlist);
70extern u64 gfs2_ri_total(struct gfs2_sbd *sdp);
0e539ca1 71extern void gfs2_rgrp_dump(struct seq_file *seq, struct gfs2_rgrpd *rgd,
3792ce97 72 const char *fs_id_buf);
66fc061b
SW
73extern int gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
74 struct buffer_head *bh,
75 const struct gfs2_bitmap *bi, unsigned minlen, u64 *ptrimmed);
76extern int gfs2_fitrim(struct file *filp, void __user *argp);
b3b94faa 77
4a993fb1 78/* This is how to tell if a reservation is in the rgrp tree: */
a097dc7e 79static inline bool gfs2_rs_active(const struct gfs2_blkreserv *rs)
8e2e0047 80{
3d39fcd1 81 return !RB_EMPTY_NODE(&rs->rs_node);
8e2e0047
BP
82}
83
d552a2b9
BP
84static inline int rgrp_contains_block(struct gfs2_rgrpd *rgd, u64 block)
85{
86 u64 first = rgd->rd_data0;
87 u64 last = first + rgd->rd_data;
88 return first <= block && block < last;
89}
90
00a158be 91extern void check_and_update_goal(struct gfs2_inode *ip);
9e514605
AG
92
93extern void rgrp_lock_local(struct gfs2_rgrpd *rgd);
94extern void rgrp_unlock_local(struct gfs2_rgrpd *rgd);
95
b3b94faa 96#endif /* __RGRP_DOT_H__ */