xfs: rename xchk_get_inode -> xchk_iget_for_scrubbing
authorDarrick J. Wong <djwong@kernel.org>
Wed, 12 Apr 2023 02:00:21 +0000 (19:00 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Wed, 12 Apr 2023 02:00:21 +0000 (19:00 -0700)
commit46e0dd89659923dd02cfa45080675fc4f0926528
tree8bcf6ed39a8bc217c8f0f0e6c60c645a76bd78f9
parent302436c27c3fc61c1dab83f4c995dec12eb43161
xfs: rename xchk_get_inode -> xchk_iget_for_scrubbing

Dave Chinner suggested renaming this function to make more obvious what
it does.  The function returns an incore inode to callers that want to
scrub a metadata structure that hangs off an inode.  If the iget fails
with EINVAL, it will single-step the loading process to distinguish
between actually free inodes or impossible inumbers (ENOENT);
discrepancies between the inobt freemask and the free status in the
inode record (EFSCORRUPTED).  Any other negative errno is returned
unchanged.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
fs/xfs/scrub/bmap.c
fs/xfs/scrub/common.c
fs/xfs/scrub/common.h
fs/xfs/scrub/inode.c