2018-06-06 10:42:14 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2005-11-02 11:58:39 +08:00
|
|
|
* Copyright (c) 2000,2005 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
#ifndef __XFS_IALLOC_BTREE_H__
|
|
|
|
#define __XFS_IALLOC_BTREE_H__
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Inode map on-disk structures
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct xfs_buf;
|
|
|
|
struct xfs_btree_cur;
|
|
|
|
struct xfs_mount;
|
2021-06-02 08:48:24 +08:00
|
|
|
struct xfs_perag;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-10-30 14:14:34 +08:00
|
|
|
/*
|
|
|
|
* Btree block header size depends on a superblock flag.
|
|
|
|
*/
|
2013-04-22 03:53:46 +08:00
|
|
|
#define XFS_INOBT_BLOCK_LEN(mp) \
|
2021-08-19 09:46:37 +08:00
|
|
|
(xfs_has_crc(((mp))) ? \
|
2013-04-22 03:53:46 +08:00
|
|
|
XFS_BTREE_SBLOCK_CRC_LEN : XFS_BTREE_SBLOCK_LEN)
|
2008-10-30 14:14:34 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Record, key, and pointer address macros for btree blocks.
|
2008-10-30 14:11:40 +08:00
|
|
|
*
|
|
|
|
* (note that some of these may appear unused, but they are used in userspace)
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2008-10-30 14:11:40 +08:00
|
|
|
#define XFS_INOBT_REC_ADDR(mp, block, index) \
|
|
|
|
((xfs_inobt_rec_t *) \
|
|
|
|
((char *)(block) + \
|
2008-10-30 14:14:34 +08:00
|
|
|
XFS_INOBT_BLOCK_LEN(mp) + \
|
2008-10-30 14:11:40 +08:00
|
|
|
(((index) - 1) * sizeof(xfs_inobt_rec_t))))
|
|
|
|
|
|
|
|
#define XFS_INOBT_KEY_ADDR(mp, block, index) \
|
|
|
|
((xfs_inobt_key_t *) \
|
|
|
|
((char *)(block) + \
|
2008-10-30 14:14:34 +08:00
|
|
|
XFS_INOBT_BLOCK_LEN(mp) + \
|
2008-10-30 14:11:40 +08:00
|
|
|
((index) - 1) * sizeof(xfs_inobt_key_t)))
|
|
|
|
|
|
|
|
#define XFS_INOBT_PTR_ADDR(mp, block, index, maxrecs) \
|
|
|
|
((xfs_inobt_ptr_t *) \
|
|
|
|
((char *)(block) + \
|
2008-10-30 14:14:34 +08:00
|
|
|
XFS_INOBT_BLOCK_LEN(mp) + \
|
2008-10-30 14:11:40 +08:00
|
|
|
(maxrecs) * sizeof(xfs_inobt_key_t) + \
|
|
|
|
((index) - 1) * sizeof(xfs_inobt_ptr_t)))
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2024-02-23 04:40:49 +08:00
|
|
|
struct xfs_btree_cur *xfs_inobt_init_cursor(struct xfs_perag *pag,
|
|
|
|
struct xfs_trans *tp, struct xfs_buf *agbp);
|
|
|
|
struct xfs_btree_cur *xfs_finobt_init_cursor(struct xfs_perag *pag,
|
|
|
|
struct xfs_trans *tp, struct xfs_buf *agbp);
|
2024-08-31 06:37:21 +08:00
|
|
|
unsigned int xfs_inobt_maxrecs(struct xfs_mount *mp, unsigned int blocklen,
|
|
|
|
bool leaf);
|
2008-10-30 13:53:59 +08:00
|
|
|
|
2015-05-29 07:09:05 +08:00
|
|
|
/* ir_holemask to inode allocation bitmap conversion */
|
2023-04-12 10:00:01 +08:00
|
|
|
uint64_t xfs_inobt_irec_to_allocmask(const struct xfs_inobt_rec_incore *irec);
|
2015-05-29 07:09:05 +08:00
|
|
|
|
2015-05-29 07:18:32 +08:00
|
|
|
#if defined(DEBUG) || defined(XFS_WARN)
|
|
|
|
int xfs_inobt_rec_check_count(struct xfs_mount *,
|
|
|
|
struct xfs_inobt_rec_incore *);
|
|
|
|
#else
|
|
|
|
#define xfs_inobt_rec_check_count(mp, rec) 0
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2023-02-13 06:14:52 +08:00
|
|
|
int xfs_finobt_calc_reserves(struct xfs_perag *perag, struct xfs_trans *tp,
|
|
|
|
xfs_extlen_t *ask, xfs_extlen_t *used);
|
2018-05-10 01:02:01 +08:00
|
|
|
extern xfs_extlen_t xfs_iallocbt_calc_size(struct xfs_mount *mp,
|
|
|
|
unsigned long long len);
|
2017-01-25 23:49:35 +08:00
|
|
|
|
2020-03-12 02:01:04 +08:00
|
|
|
void xfs_inobt_commit_staged_btree(struct xfs_btree_cur *cur,
|
|
|
|
struct xfs_trans *tp, struct xfs_buf *agbp);
|
|
|
|
|
2021-09-24 01:32:06 +08:00
|
|
|
unsigned int xfs_iallocbt_maxlevels_ondisk(void);
|
|
|
|
|
2021-09-24 03:21:37 +08:00
|
|
|
int __init xfs_inobt_init_cur_cache(void);
|
|
|
|
void xfs_inobt_destroy_cur_cache(void);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* __XFS_IALLOC_BTREE_H__ */
|