diff options
author | Darrick J. Wong | 2021-08-12 09:53:27 -0700 |
---|---|---|
committer | Darrick J. Wong | 2021-08-18 18:46:02 -0700 |
commit | deb06b9ab6dfa167c280a68d5acb2f12e007073f (patch) | |
tree | 519ceb881b11c16af2e39fddf81d95ec6e873afc /fs/xfs/libxfs/xfs_btree.h | |
parent | b5a6e5fe0e6840bc90e51cf522d6c5a880cde567 (diff) |
xfs: make the start pointer passed to btree alloc_block functions const
The @start pointer passed to each per-AG btree type's ->alloc_block
function isn't supposed to be modified, since it's a hint about the
location of the btree block being split that is to be fed to the
allocator, so mark the parameter const.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/libxfs/xfs_btree.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_btree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_btree.h b/fs/xfs/libxfs/xfs_btree.h index 504032d91a0a..8a36012a2e89 100644 --- a/fs/xfs/libxfs/xfs_btree.h +++ b/fs/xfs/libxfs/xfs_btree.h @@ -110,7 +110,7 @@ struct xfs_btree_ops { /* block allocation / freeing */ int (*alloc_block)(struct xfs_btree_cur *cur, - union xfs_btree_ptr *start_bno, + const union xfs_btree_ptr *start_bno, union xfs_btree_ptr *new_bno, int *stat); int (*free_block)(struct xfs_btree_cur *cur, struct xfs_buf *bp); |