Commit 8a8f4dea authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba
Browse files

btrfs: return bool from should_end_transaction

parent 8df01fdd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -898,12 +898,12 @@ void btrfs_throttle(struct btrfs_fs_info *fs_info)
	wait_current_trans(fs_info);
}

static int should_end_transaction(struct btrfs_trans_handle *trans)
static bool should_end_transaction(struct btrfs_trans_handle *trans)
{
	struct btrfs_fs_info *fs_info = trans->fs_info;

	if (btrfs_check_space_for_delayed_refs(fs_info))
		return 1;
		return true;

	return !!btrfs_block_rsv_check(&fs_info->global_block_rsv, 5);
}