diff options
| author | Darrick J. Wong <[email protected]> | 2024-08-30 22:37:21 +0000 |
|---|---|---|
| committer | Darrick J. Wong <[email protected]> | 2024-09-01 15:58:20 +0000 |
| commit | 411a71256de6f5a0015a28929cfbe6bc36c503dc (patch) | |
| tree | ac551b3047333e36e1b533fe2db0329cf54906c1 /fs/xfs/libxfs/xfs_ialloc_btree.h | |
| parent | xfs: replace shouty XFS_BM{BT,DR} macros (diff) | |
| download | kernel-411a71256de6f5a0015a28929cfbe6bc36c503dc.tar.gz kernel-411a71256de6f5a0015a28929cfbe6bc36c503dc.zip | |
xfs: standardize the btree maxrecs function parameters
Standardize the parameters in xfs_{alloc,bm,ino,rmap,refcount}bt_maxrecs
so that we have consistent calling conventions. This doesn't affect the
kernel that much, but enables us to clean up userspace a bit.
Signed-off-by: Darrick J. Wong <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Diffstat (limited to 'fs/xfs/libxfs/xfs_ialloc_btree.h')
| -rw-r--r-- | fs/xfs/libxfs/xfs_ialloc_btree.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_ialloc_btree.h b/fs/xfs/libxfs/xfs_ialloc_btree.h index 6472ec1ecbb4..300edf5bc009 100644 --- a/fs/xfs/libxfs/xfs_ialloc_btree.h +++ b/fs/xfs/libxfs/xfs_ialloc_btree.h @@ -50,7 +50,8 @@ 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); -extern int xfs_inobt_maxrecs(struct xfs_mount *, int, int); +unsigned int xfs_inobt_maxrecs(struct xfs_mount *mp, unsigned int blocklen, + bool leaf); /* ir_holemask to inode allocation bitmap conversion */ uint64_t xfs_inobt_irec_to_allocmask(const struct xfs_inobt_rec_incore *irec); |
