yeahuh / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-qcow2-Avoid-duplication-in-setting-the-refcount-cach.patch

ae23c9
From 3f62574388cc48d3e2e2361e6e32ae1be60fbf42 Mon Sep 17 00:00:00 2001
ae23c9
From: Kevin Wolf <kwolf@redhat.com>
ae23c9
Date: Thu, 6 Dec 2018 17:12:33 +0000
ae23c9
Subject: [PATCH 08/15] qcow2: Avoid duplication in setting the refcount cache
ae23c9
 size
ae23c9
ae23c9
RH-Author: Kevin Wolf <kwolf@redhat.com>
ae23c9
Message-id: <20181206171240.5674-9-kwolf@redhat.com>
ae23c9
Patchwork-id: 83296
ae23c9
O-Subject: [RHEL-8.0 qemu-kvm PATCH 08/15] qcow2: Avoid duplication in setting the refcount cache size
ae23c9
Bugzilla: 1656507
ae23c9
RH-Acked-by: Max Reitz <mreitz@redhat.com>
ae23c9
RH-Acked-by: John Snow <jsnow@redhat.com>
ae23c9
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
ae23c9
ae23c9
From: Leonid Bloch <lbloch@janustech.com>
ae23c9
ae23c9
The refcount cache size does not need to be set to its minimum value in
ae23c9
read_cache_sizes(), as it is set to at least its minimum value in
ae23c9
qcow2_update_options_prepare().
ae23c9
ae23c9
Signed-off-by: Leonid Bloch <lbloch@janustech.com>
ae23c9
Reviewed-by: Alberto Garcia <berto@igalia.com>
ae23c9
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
(cherry picked from commit 657ada52abb85140e56949f522ecec527b256450)
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
ae23c9
---
ae23c9
 block/qcow2.c | 5 ++---
ae23c9
 1 file changed, 2 insertions(+), 3 deletions(-)
ae23c9
ae23c9
diff --git a/block/qcow2.c b/block/qcow2.c
ae23c9
index 3859112..f3b2860 100644
ae23c9
--- a/block/qcow2.c
ae23c9
+++ b/block/qcow2.c
ae23c9
@@ -830,10 +830,9 @@ static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts,
ae23c9
                                  (uint64_t)DEFAULT_L2_CACHE_CLUSTERS
ae23c9
                                  * s->cluster_size);
ae23c9
         }
ae23c9
-        if (!refcount_cache_size_set) {
ae23c9
-            *refcount_cache_size = min_refcount_cache;
ae23c9
-        }
ae23c9
     }
ae23c9
+    /* l2_cache_size and refcount_cache_size are ensured to have at least
ae23c9
+     * their minimum values in qcow2_update_options_prepare() */
ae23c9
 
ae23c9
     if (*l2_cache_entry_size < (1 << MIN_CLUSTER_BITS) ||
ae23c9
         *l2_cache_entry_size > s->cluster_size ||
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9