Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c69b26b0 authored by Josef Bacik's avatar Josef Bacik
Browse files

Btrfs: add some missing iput()'s in btrfs_orphan_cleanup



There are some error cases that we don't do an iput() on our inode, fix this.
Thanks,

Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
parent e78417d1
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3234,13 +3234,16 @@ int btrfs_orphan_cleanup(struct btrfs_root *root)
			/* 1 for the orphan item deletion. */
			trans = btrfs_start_transaction(root, 1);
			if (IS_ERR(trans)) {
				iput(inode);
				ret = PTR_ERR(trans);
				goto out;
			}
			ret = btrfs_orphan_add(trans, inode);
			btrfs_end_transaction(trans, root);
			if (ret)
			if (ret) {
				iput(inode);
				goto out;
			}

			ret = btrfs_truncate(inode);
			if (ret)