[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v4 04/26] qcow2: Only return status from qcow2_g
|
From: |
Eric Blake |
|
Subject: |
Re: [Qemu-devel] [PATCH v4 04/26] qcow2: Only return status from qcow2_get_refcount |
|
Date: |
Wed, 03 Dec 2014 08:37:47 -0700 |
|
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 |
On 12/03/2014 06:37 AM, Max Reitz wrote:
> Refcounts can theoretically be of type uint64_t; in order to be able to
> represent the full range, qcow2_get_refcount() cannot use a single
> variable to represent both all refcount values and also keep some values
> reserved for errors.
>
> One solution would be to add an Error pointer parameter to
> qcow2_get_refcount(); however, no caller could (currently) pass that
> error message, so it would have to be emitted immediately and be
> passed to the next caller by returning -EIO or something similar.
> Therefore, an Error parameter does not offer any advantages here.
>
> The solution applied by this patch is simpler to use. Because no caller
> would be able to pass the error message, they would have to print it and
> free it, whereas with this patch the caller only needs to pass the
> returned integer (which is often a no-op from the code perspective,
> because that integer will be stored in a variable "ret" which will be
> returned by the fail path of many callers).
>
> Signed-off-by: Max Reitz <address@hidden>
> ---
> block/qcow2-cluster.c | 8 ++---
> block/qcow2-refcount.c | 79
> +++++++++++++++++++++++++++-----------------------
> block/qcow2.h | 3 +-
> 3 files changed, 49 insertions(+), 41 deletions(-)
>
> @@ -1670,7 +1677,7 @@ static void compare_refcounts(BlockDriverState *bs,
> BdrvCheckResult *res,
>
> if (num_fixed) {
> ret = update_refcount(bs, i << s->cluster_bits, 1,
> - refcount2 - refcount1,
> + (int)refcount2 - (int)refcount1,
The casts look a bit odd (uint16_t already naturally promotes to int for
32-bit int), but keep it, since we'll have to re-think this operation
when a later patch widens to 64 bits anyways.
Reviewed-by: Eric Blake <address@hidden>
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
- [Qemu-devel] [PATCH v4 01/26] qcow2: Add two new fields to BDRVQcowState, (continued)
- [Qemu-devel] [PATCH v4 01/26] qcow2: Add two new fields to BDRVQcowState, Max Reitz, 2014/12/03
- [Qemu-devel] [PATCH v4 02/26] qcow2: Add refcount_bits to format-specific info, Max Reitz, 2014/12/03
- [Qemu-devel] [PATCH v4 03/26] qcow2: Do not return new value after refcount update, Max Reitz, 2014/12/03
- [Qemu-devel] [PATCH v4 04/26] qcow2: Only return status from qcow2_get_refcount, Max Reitz, 2014/12/03
- [Qemu-devel] [PATCH v4 05/26] qcow2: Use unsigned addend for update_refcount(), Max Reitz, 2014/12/03
- [Qemu-devel] [PATCH v4 06/26] qcow2: Use 64 bits for refcount values, Max Reitz, 2014/12/03