1
2
3
4
5
6
7
8
9
10#ifndef __RGRP_DOT_H__
11#define __RGRP_DOT_H__
12
13#include <linux/slab.h>
14#include <linux/uaccess.h>
15
16
17
18
19
20
21#define RGRP_RSRV_MINBYTES 8
22#define RGRP_RSRV_MINBLKS ((u32)(RGRP_RSRV_MINBYTES * GFS2_NBBY))
23
24struct gfs2_rgrpd;
25struct gfs2_sbd;
26struct gfs2_holder;
27
28extern void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd);
29
30extern struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk, bool exact);
31extern struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp);
32extern struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd);
33
34extern void gfs2_clear_rgrpd(struct gfs2_sbd *sdp);
35extern int gfs2_rindex_update(struct gfs2_sbd *sdp);
36extern void gfs2_free_clones(struct gfs2_rgrpd *rgd);
37extern int gfs2_rgrp_go_lock(struct gfs2_holder *gh);
38extern void gfs2_rgrp_go_unlock(struct gfs2_holder *gh);
39
40extern struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip);
41
42extern int gfs2_inplace_reserve(struct gfs2_inode *ip, u32 requested);
43extern void gfs2_inplace_release(struct gfs2_inode *ip);
44
45extern int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *n,
46 bool dinode, u64 *generation);
47
48extern int gfs2_rs_alloc(struct gfs2_inode *ip);
49extern void gfs2_rs_deltree(struct gfs2_blkreserv *rs);
50extern void gfs2_rs_delete(struct gfs2_inode *ip);
51extern void __gfs2_free_blocks(struct gfs2_inode *ip, u64 bstart, u32 blen, int meta);
52extern void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen);
53extern void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip);
54extern void gfs2_unlink_di(struct inode *inode);
55extern int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr,
56 unsigned int type);
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
65extern void gfs2_rlist_add(struct gfs2_inode *ip, struct gfs2_rgrp_list *rlist,
66 u64 block);
67extern void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state);
68extern void gfs2_rlist_free(struct gfs2_rgrp_list *rlist);
69extern u64 gfs2_ri_total(struct gfs2_sbd *sdp);
70extern int gfs2_rgrp_dump(struct seq_file *seq, const struct gfs2_glock *gl);
71extern int gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
72 struct buffer_head *bh,
73 const struct gfs2_bitmap *bi, unsigned minlen, u64 *ptrimmed);
74extern int gfs2_fitrim(struct file *filp, void __user *argp);
75
76
77static inline int gfs2_mb_reserved(struct gfs2_inode *ip)
78{
79 if (ip->i_res && ip->i_res->rs_requested)
80 return 1;
81 return 0;
82}
83
84
85static inline int gfs2_rs_active(struct gfs2_blkreserv *rs)
86{
87 if (rs && rs->rs_bi)
88 return 1;
89 return 0;
90}
91
92static inline u32 gfs2_bi2rgd_blk(const struct gfs2_bitmap *bi, u32 blk)
93{
94 return (bi->bi_start * GFS2_NBBY) + blk;
95}
96
97static inline u64 gfs2_rs_startblk(const struct gfs2_blkreserv *rs)
98{
99 return gfs2_bi2rgd_blk(rs->rs_bi, rs->rs_biblk) + rs->rs_rgd->rd_data0;
100}
101
102#endif
103