bcachefs: Small fsck fix
authorKent Overstreet <kent.overstreet@gmail.com>
Mon, 14 Feb 2022 01:42:12 +0000 (20:42 -0500)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 22 Oct 2023 21:09:23 +0000 (17:09 -0400)
The check_dirents pass handles transaction restarts at the toplevel -
check_subdir_count() was incorrectly handling transaction restarts
without returning -EINTR, meaning that the iterator pointing to the
dirent being checked was left invalid.

Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
fs/bcachefs/fsck.c

index 43b6159be01b64b00a80e33828d221a6a79cd28a..ced4d671eb8d707e49b8600a5bfa607c4711751f 100644 (file)
@@ -1316,8 +1316,9 @@ static int check_subdir_count(struct btree_trans *trans, struct inode_walker *w)
                if (i->inode.bi_nlink == i->count)
                        continue;
 
-               count2 = lockrestart_do(trans,
-                               bch2_count_subdirs(trans, w->cur_inum, i->snapshot));
+               count2 = bch2_count_subdirs(trans, w->cur_inum, i->snapshot);
+               if (count2 < 0)
+                       return count2;
 
                if (i->count != count2) {
                        bch_err(c, "fsck counted subdirectories wrong: got %llu should be %llu",