bcachefs: Fix an unused var warning in userspace
authorKent Overstreet <kent.overstreet@gmail.com>
Fri, 16 Apr 2021 21:34:53 +0000 (17:34 -0400)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 22 Oct 2023 21:09:01 +0000 (17:09 -0400)
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/fsck.c

index 4a48ef5..cfe6063 100644 (file)
@@ -159,13 +159,10 @@ static int reattach_inode(struct btree_trans *trans,
                          struct bch_inode_unpacked *lostfound,
                          u64 inum)
 {
-       struct bch_fs *c = trans->c;
-       int ret;
-
-       ret = __bch2_trans_do(trans, NULL, NULL, BTREE_INSERT_LAZY_RW,
+       int ret = __bch2_trans_do(trans, NULL, NULL, BTREE_INSERT_LAZY_RW,
                              __reattach_inode(trans, lostfound, inum));
        if (ret)
-               bch_err(c, "error %i reattaching inode %llu", ret, inum);
+               bch_err(trans->c, "error %i reattaching inode %llu", ret, inum);
 
        return ret;
 }