summaryrefslogtreecommitdiffstats
path: root/fs/xfs/scrub/refcount.c
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2023-12-15 10:03:33 -0800
committerDarrick J. Wong <djwong@kernel.org>2023-12-15 10:03:33 -0800
commit9099cd38002f8029c9a1da08e6832d1cd18e8451 (patch)
tree753066f947410a50279f2da91e118d89740ebfc8 /fs/xfs/scrub/refcount.c
parentdbfbf3bdf639a20da7d5fb390cd2e197d25aa418 (diff)
downloadlinux-stable-9099cd38002f8029c9a1da08e6832d1cd18e8451.tar.gz
linux-stable-9099cd38002f8029c9a1da08e6832d1cd18e8451.tar.bz2
linux-stable-9099cd38002f8029c9a1da08e6832d1cd18e8451.zip
xfs: repair refcount btrees
Reconstruct the refcount data from the rmap btree. Link: https://docs.kernel.org/filesystems/xfs-online-fsck-design.html#case-study-rebuilding-the-space-reference-counts Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/scrub/refcount.c')
-rw-r--r--fs/xfs/scrub/refcount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/scrub/refcount.c b/fs/xfs/scrub/refcount.c
index 304ea1e1bfb0..bf22f245bbfa 100644
--- a/fs/xfs/scrub/refcount.c
+++ b/fs/xfs/scrub/refcount.c
@@ -441,7 +441,7 @@ xchk_refcountbt_rec(
struct xchk_refcbt_records *rrc = bs->private;
xfs_refcount_btrec_to_irec(rec, &irec);
- if (xfs_refcount_check_irec(bs->cur, &irec) != NULL) {
+ if (xfs_refcount_check_irec(bs->cur->bc_ag.pag, &irec) != NULL) {
xchk_btree_set_corrupt(bs->sc, bs->cur, 0);
return 0;
}