From: Kent Overstreet Date: Sun, 21 Jan 2024 19:57:58 +0000 (-0500) Subject: bcachefs: Repair subvol dirents that point to non subvols X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=45b4ed525e3c5b5dcdee65ae23a27b9efe595714;p=linux.git bcachefs: Repair subvol dirents that point to non subvols when repair switches d_type to or from DT_SUBVOL, we need to update the target accordingly Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/fsck.c b/fs/bcachefs/fsck.c index ff7347cc395fd..0d405b960a7c4 100644 --- a/fs/bcachefs/fsck.c +++ b/fs/bcachefs/fsck.c @@ -1678,6 +1678,12 @@ static int check_dirent_target(struct btree_trans *trans, bkey_reassemble(&n->k_i, d.s_c); n->v.d_type = inode_d_type(target); + if (n->v.d_type == DT_SUBVOL) { + n->v.d_parent_subvol = cpu_to_le32(target->bi_parent_subvol); + n->v.d_child_subvol = cpu_to_le32(target->bi_subvol); + } else { + n->v.d_inum = cpu_to_le64(target->bi_inum); + } ret = bch2_trans_update(trans, iter, &n->k_i, 0); if (ret)