|
|
383d26 |
From 5a43aa56f4a0435e9e36884088673513444b8129 Mon Sep 17 00:00:00 2001
|
|
|
383d26 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Date: Tue, 19 Feb 2019 17:00:13 +0100
|
|
|
383d26 |
Subject: [PATCH 12/23] qcow2: Fix Coverity warning when calculating the
|
|
|
383d26 |
refcount cache size
|
|
|
383d26 |
|
|
|
383d26 |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Message-id: <20190219170023.27826-4-kwolf@redhat.com>
|
|
|
383d26 |
Patchwork-id: 84543
|
|
|
383d26 |
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH 03/13] qcow2: Fix Coverity warning when calculating the refcount cache size
|
|
|
383d26 |
Bugzilla: 1656913
|
|
|
383d26 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
|
|
|
383d26 |
From: Alberto Garcia <berto@igalia.com>
|
|
|
383d26 |
|
|
|
383d26 |
MIN_REFCOUNT_CACHE_SIZE is 4 and the cluster size is guaranteed to be
|
|
|
383d26 |
at most 2MB, so the minimum refcount cache size (in bytes) is always
|
|
|
383d26 |
going to fit in a 32-bit integer.
|
|
|
383d26 |
|
|
|
383d26 |
Coverity doesn't know that, and since we're storing the result in a
|
|
|
383d26 |
uint64_t (*refcount_cache_size) it thinks that we need the 64 bits and
|
|
|
383d26 |
that we probably want to do a 64-bit multiplication to prevent the
|
|
|
383d26 |
result from being truncated.
|
|
|
383d26 |
|
|
|
383d26 |
This is a false positive in this case, but it's a fair warning.
|
|
|
383d26 |
We could do a 64-bit multiplication to get rid of it, but since we
|
|
|
383d26 |
know that a 32-bit variable is enough to store this value let's simply
|
|
|
383d26 |
reuse min_refcount_cache, make it a normal int and stop doing casts.
|
|
|
383d26 |
|
|
|
383d26 |
Reported-by: Peter Maydell <peter.maydell@linaro.org>
|
|
|
383d26 |
Signed-off-by: Alberto Garcia <berto@igalia.com>
|
|
|
383d26 |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
(cherry picked from commit 7af5eea9b34ffb7a9a9fc25ba71998a02b76e159)
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
---
|
|
|
383d26 |
block/qcow2.c | 5 ++---
|
|
|
383d26 |
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
383d26 |
|
|
|
383d26 |
diff --git a/block/qcow2.c b/block/qcow2.c
|
|
|
383d26 |
index 4b65e4c..a0f7234 100644
|
|
|
383d26 |
--- a/block/qcow2.c
|
|
|
383d26 |
+++ b/block/qcow2.c
|
|
|
383d26 |
@@ -775,6 +775,7 @@ static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
|
|
|
383d26 |
BDRVQcow2State *s = bs->opaque;
|
|
|
383d26 |
uint64_t combined_cache_size;
|
|
|
383d26 |
bool l2_cache_size_set, refcount_cache_size_set, combined_cache_size_set;
|
|
|
383d26 |
+ int min_refcount_cache = MIN_REFCOUNT_CACHE_SIZE * s->cluster_size;
|
|
|
383d26 |
|
|
|
383d26 |
combined_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_CACHE_SIZE);
|
|
|
383d26 |
l2_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_SIZE);
|
|
|
383d26 |
@@ -811,8 +812,6 @@ static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
|
|
|
383d26 |
} else {
|
|
|
383d26 |
uint64_t virtual_disk_size = bs->total_sectors * BDRV_SECTOR_SIZE;
|
|
|
383d26 |
uint64_t max_l2_cache = virtual_disk_size / (s->cluster_size / 8);
|
|
|
383d26 |
- uint64_t min_refcount_cache =
|
|
|
383d26 |
- (uint64_t) MIN_REFCOUNT_CACHE_SIZE * s->cluster_size;
|
|
|
383d26 |
|
|
|
383d26 |
/* Assign as much memory as possible to the L2 cache, and
|
|
|
383d26 |
* use the remainder for the refcount cache */
|
|
|
383d26 |
@@ -832,7 +831,7 @@ static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
|
|
|
383d26 |
* s->cluster_size);
|
|
|
383d26 |
}
|
|
|
383d26 |
if (!refcount_cache_size_set) {
|
|
|
383d26 |
- *refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE * s->cluster_size;
|
|
|
383d26 |
+ *refcount_cache_size = min_refcount_cache;
|
|
|
383d26 |
}
|
|
|
383d26 |
}
|
|
|
383d26 |
|
|
|
383d26 |
--
|
|
|
383d26 |
1.8.3.1
|
|
|
383d26 |
|