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