blob: 93e77b2213559d8ad932d47a18afa1522e7d97ba [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6#ifndef __XFS_RTALLOC_H__
7#define __XFS_RTALLOC_H__
8
Dave Chinnerc7298202013-08-12 20:49:29 +10009/* kernel only definitions and functions */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011struct xfs_mount;
12struct xfs_trans;
13
Darrick J. Wonga0e5c432018-05-31 09:12:10 -070014/*
15 * XXX: Most of the realtime allocation functions deal in units of realtime
16 * extents, not realtime blocks. This looks funny when paired with the type
17 * name and screams for a larger cleanup.
18 */
Darrick J. Wongfb3c3de2017-03-28 14:56:36 -070019struct xfs_rtalloc_rec {
Darrick J. Wonga0e5c432018-05-31 09:12:10 -070020 xfs_rtblock_t ar_startext;
21 xfs_rtblock_t ar_extcount;
Darrick J. Wongfb3c3de2017-03-28 14:56:36 -070022};
23
24typedef int (*xfs_rtalloc_query_range_fn)(
25 struct xfs_trans *tp,
26 struct xfs_rtalloc_rec *rec,
27 void *priv);
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#ifdef CONFIG_XFS_RT
30/*
31 * Function prototypes for exported functions.
32 */
33
34/*
35 * Allocate an extent in the realtime subvolume, with the usual allocation
36 * parameters. The length units are all in realtime extents, as is the
37 * result block number.
38 */
39int /* error */
40xfs_rtallocate_extent(
41 struct xfs_trans *tp, /* transaction pointer */
42 xfs_rtblock_t bno, /* starting block number to allocate */
43 xfs_extlen_t minlen, /* minimum length to allocate */
44 xfs_extlen_t maxlen, /* maximum length to allocate */
45 xfs_extlen_t *len, /* out: actual length allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 int wasdel, /* was a delayed allocation extent */
47 xfs_extlen_t prod, /* extent product factor */
48 xfs_rtblock_t *rtblock); /* out: start block allocated */
49
50/*
51 * Free an extent in the realtime subvolume. Length is expressed in
52 * realtime extents, as is the block number.
53 */
54int /* error */
55xfs_rtfree_extent(
56 struct xfs_trans *tp, /* transaction pointer */
57 xfs_rtblock_t bno, /* starting block number to free */
58 xfs_extlen_t len); /* length of extent freed */
59
60/*
61 * Initialize realtime fields in the mount structure.
62 */
63int /* error */
64xfs_rtmount_init(
65 struct xfs_mount *mp); /* file system mount structure */
Christoph Hellwigb93b6e42009-02-04 09:33:58 +010066void
67xfs_rtunmount_inodes(
68 struct xfs_mount *mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*
71 * Get the bitmap and summary inodes into the mount structure
72 * at mount time.
73 */
74int /* error */
75xfs_rtmount_inodes(
76 struct xfs_mount *mp); /* file system mount structure */
77
78/*
79 * Pick an extent for allocation at the start of a new realtime file.
80 * Use the sequence number stored in the atime field of the bitmap inode.
81 * Translate this to a fraction of the rtextents, and return the product
82 * of rtextents and the fraction.
83 * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
84 */
85int /* error */
86xfs_rtpick_extent(
87 struct xfs_mount *mp, /* file system mount point */
88 struct xfs_trans *tp, /* transaction pointer */
89 xfs_extlen_t len, /* allocation length (rtextents) */
90 xfs_rtblock_t *pick); /* result rt extent */
91
92/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * Grow the realtime area of the filesystem.
94 */
95int
96xfs_growfs_rt(
97 struct xfs_mount *mp, /* file system mount structure */
98 xfs_growfs_rt_t *in); /* user supplied growfs struct */
99
Dave Chinnerc963c612013-10-15 09:17:56 +1100100/*
101 * From xfs_rtbitmap.c
102 */
Darrick J. Wong26788092017-06-16 11:00:07 -0700103int xfs_rtbuf_get(struct xfs_mount *mp, struct xfs_trans *tp,
104 xfs_rtblock_t block, int issum, struct xfs_buf **bpp);
Dave Chinnerc963c612013-10-15 09:17:56 +1100105int xfs_rtcheck_range(struct xfs_mount *mp, struct xfs_trans *tp,
106 xfs_rtblock_t start, xfs_extlen_t len, int val,
107 xfs_rtblock_t *new, int *stat);
108int xfs_rtfind_back(struct xfs_mount *mp, struct xfs_trans *tp,
109 xfs_rtblock_t start, xfs_rtblock_t limit,
110 xfs_rtblock_t *rtblock);
111int xfs_rtfind_forw(struct xfs_mount *mp, struct xfs_trans *tp,
112 xfs_rtblock_t start, xfs_rtblock_t limit,
113 xfs_rtblock_t *rtblock);
114int xfs_rtmodify_range(struct xfs_mount *mp, struct xfs_trans *tp,
115 xfs_rtblock_t start, xfs_extlen_t len, int val);
Eric Sandeenafabfd32014-09-09 11:58:42 +1000116int xfs_rtmodify_summary_int(struct xfs_mount *mp, struct xfs_trans *tp,
117 int log, xfs_rtblock_t bbno, int delta,
118 xfs_buf_t **rbpp, xfs_fsblock_t *rsb,
119 xfs_suminfo_t *sum);
Dave Chinnerc963c612013-10-15 09:17:56 +1100120int xfs_rtmodify_summary(struct xfs_mount *mp, struct xfs_trans *tp, int log,
121 xfs_rtblock_t bbno, int delta, xfs_buf_t **rbpp,
122 xfs_fsblock_t *rsb);
123int xfs_rtfree_range(struct xfs_mount *mp, struct xfs_trans *tp,
124 xfs_rtblock_t start, xfs_extlen_t len,
125 struct xfs_buf **rbpp, xfs_fsblock_t *rsb);
Darrick J. Wongfb3c3de2017-03-28 14:56:36 -0700126int xfs_rtalloc_query_range(struct xfs_trans *tp,
127 struct xfs_rtalloc_rec *low_rec,
128 struct xfs_rtalloc_rec *high_rec,
129 xfs_rtalloc_query_range_fn fn,
130 void *priv);
131int xfs_rtalloc_query_all(struct xfs_trans *tp,
132 xfs_rtalloc_query_range_fn fn,
133 void *priv);
Darrick J. Wong21ec5412017-10-17 21:37:32 -0700134bool xfs_verify_rtbno(struct xfs_mount *mp, xfs_rtblock_t rtbno);
Darrick J. Wong46d9bfb2018-01-16 18:53:10 -0800135int xfs_rtalloc_extent_is_free(struct xfs_mount *mp, struct xfs_trans *tp,
136 xfs_rtblock_t start, xfs_extlen_t len,
137 bool *is_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#else
Christoph Hellwig089ec2f2017-02-17 08:21:06 -0800139# define xfs_rtallocate_extent(t,b,min,max,l,f,p,rb) (ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140# define xfs_rtfree_extent(t,b,l) (ENOSYS)
141# define xfs_rtpick_extent(m,t,l,rb) (ENOSYS)
142# define xfs_growfs_rt(mp,in) (ENOSYS)
Darrick J. Wongfb3c3de2017-03-28 14:56:36 -0700143# define xfs_rtalloc_query_range(t,l,h,f,p) (ENOSYS)
144# define xfs_rtalloc_query_all(t,f,p) (ENOSYS)
Darrick J. Wong26788092017-06-16 11:00:07 -0700145# define xfs_rtbuf_get(m,t,b,i,p) (ENOSYS)
Darrick J. Wong21ec5412017-10-17 21:37:32 -0700146# define xfs_verify_rtbno(m, r) (false)
Darrick J. Wong46d9bfb2018-01-16 18:53:10 -0800147# define xfs_rtalloc_extent_is_free(m,t,s,l,i) (ENOSYS)
Eric Sandeen32891b22010-04-30 16:43:48 +0000148static inline int /* error */
149xfs_rtmount_init(
150 xfs_mount_t *mp) /* file system mount structure */
151{
152 if (mp->m_sb.sb_rblocks == 0)
153 return 0;
154
Dave Chinner0b932cc2011-03-07 10:08:35 +1100155 xfs_warn(mp, "Not built with CONFIG_XFS_RT");
Dave Chinner24513372014-06-25 14:58:08 +1000156 return -ENOSYS;
Eric Sandeen32891b22010-04-30 16:43:48 +0000157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158# define xfs_rtmount_inodes(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
Christoph Hellwigb93b6e42009-02-04 09:33:58 +0100159# define xfs_rtunmount_inodes(m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#endif /* CONFIG_XFS_RT */
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#endif /* __XFS_RTALLOC_H__ */