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