Linux Audio

Check our new training course

Loading...
v4.10.11
 
 1/*
 2 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
 3 * All Rights Reserved.
 4 *
 5 * This program is free software; you can redistribute it and/or
 6 * modify it under the terms of the GNU General Public License as
 7 * published by the Free Software Foundation.
 8 *
 9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18#ifndef __XFS_ALLOC_BTREE_H__
19#define	__XFS_ALLOC_BTREE_H__
20
21/*
22 * Freespace on-disk structures
23 */
24
25struct xfs_buf;
26struct xfs_btree_cur;
27struct xfs_mount;
 
 
28
29/*
30 * Btree block header size depends on a superblock flag.
31 */
32#define XFS_ALLOC_BLOCK_LEN(mp) \
33	(xfs_sb_version_hascrc(&((mp)->m_sb)) ? \
34		XFS_BTREE_SBLOCK_CRC_LEN : XFS_BTREE_SBLOCK_LEN)
35
36/*
37 * Record, key, and pointer address macros for btree blocks.
38 *
39 * (note that some of these may appear unused, but they are used in userspace)
40 */
41#define XFS_ALLOC_REC_ADDR(mp, block, index) \
42	((xfs_alloc_rec_t *) \
43		((char *)(block) + \
44		 XFS_ALLOC_BLOCK_LEN(mp) + \
45		 (((index) - 1) * sizeof(xfs_alloc_rec_t))))
46
47#define XFS_ALLOC_KEY_ADDR(mp, block, index) \
48	((xfs_alloc_key_t *) \
49		((char *)(block) + \
50		 XFS_ALLOC_BLOCK_LEN(mp) + \
51		 ((index) - 1) * sizeof(xfs_alloc_key_t)))
52
53#define XFS_ALLOC_PTR_ADDR(mp, block, index, maxrecs) \
54	((xfs_alloc_ptr_t *) \
55		((char *)(block) + \
56		 XFS_ALLOC_BLOCK_LEN(mp) + \
57		 (maxrecs) * sizeof(xfs_alloc_key_t) + \
58		 ((index) - 1) * sizeof(xfs_alloc_ptr_t)))
59
60extern struct xfs_btree_cur *xfs_allocbt_init_cursor(struct xfs_mount *,
61		struct xfs_trans *, struct xfs_buf *,
62		xfs_agnumber_t, xfs_btnum_t);
 
 
 
63extern int xfs_allocbt_maxrecs(struct xfs_mount *, int, int);
 
 
 
 
 
 
 
 
 
 
64
65#endif	/* __XFS_ALLOC_BTREE_H__ */
v6.9.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/*
 3 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
 4 * All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
 5 */
 6#ifndef __XFS_ALLOC_BTREE_H__
 7#define	__XFS_ALLOC_BTREE_H__
 8
 9/*
10 * Freespace on-disk structures
11 */
12
13struct xfs_buf;
14struct xfs_btree_cur;
15struct xfs_mount;
16struct xfs_perag;
17struct xbtree_afakeroot;
18
19/*
20 * Btree block header size depends on a superblock flag.
21 */
22#define XFS_ALLOC_BLOCK_LEN(mp) \
23	(xfs_has_crc(((mp))) ? \
24		XFS_BTREE_SBLOCK_CRC_LEN : XFS_BTREE_SBLOCK_LEN)
25
26/*
27 * Record, key, and pointer address macros for btree blocks.
28 *
29 * (note that some of these may appear unused, but they are used in userspace)
30 */
31#define XFS_ALLOC_REC_ADDR(mp, block, index) \
32	((xfs_alloc_rec_t *) \
33		((char *)(block) + \
34		 XFS_ALLOC_BLOCK_LEN(mp) + \
35		 (((index) - 1) * sizeof(xfs_alloc_rec_t))))
36
37#define XFS_ALLOC_KEY_ADDR(mp, block, index) \
38	((xfs_alloc_key_t *) \
39		((char *)(block) + \
40		 XFS_ALLOC_BLOCK_LEN(mp) + \
41		 ((index) - 1) * sizeof(xfs_alloc_key_t)))
42
43#define XFS_ALLOC_PTR_ADDR(mp, block, index, maxrecs) \
44	((xfs_alloc_ptr_t *) \
45		((char *)(block) + \
46		 XFS_ALLOC_BLOCK_LEN(mp) + \
47		 (maxrecs) * sizeof(xfs_alloc_key_t) + \
48		 ((index) - 1) * sizeof(xfs_alloc_ptr_t)))
49
50struct xfs_btree_cur *xfs_bnobt_init_cursor(struct xfs_mount *mp,
51		struct xfs_trans *tp, struct xfs_buf *bp,
52		struct xfs_perag *pag);
53struct xfs_btree_cur *xfs_cntbt_init_cursor(struct xfs_mount *mp,
54		struct xfs_trans *tp, struct xfs_buf *bp,
55		struct xfs_perag *pag);
56extern int xfs_allocbt_maxrecs(struct xfs_mount *, int, int);
57extern xfs_extlen_t xfs_allocbt_calc_size(struct xfs_mount *mp,
58		unsigned long long len);
59
60void xfs_allocbt_commit_staged_btree(struct xfs_btree_cur *cur,
61		struct xfs_trans *tp, struct xfs_buf *agbp);
62
63unsigned int xfs_allocbt_maxlevels_ondisk(void);
64
65int __init xfs_allocbt_init_cur_cache(void);
66void xfs_allocbt_destroy_cur_cache(void);
67
68#endif	/* __XFS_ALLOC_BTREE_H__ */