[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v10 3/9] qcow2: Make sizes more humanly readable
From: |
Leonid Bloch |
Subject: |
[Qemu-devel] [PATCH v10 3/9] qcow2: Make sizes more humanly readable |
Date: |
Fri, 21 Sep 2018 20:23:04 +0300 |
Signed-off-by: Leonid Bloch <address@hidden>
Reviewed-by: Alberto Garcia <address@hidden>
---
block/qcow2.c | 2 +-
block/qcow2.h | 9 +++++----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/block/qcow2.c b/block/qcow2.c
index ec9e6238a0..67cc82f0b9 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -830,7 +830,7 @@ static void read_cache_sizes(BlockDriverState *bs, QemuOpts
*opts,
}
} else {
if (!l2_cache_size_set) {
- *l2_cache_size = MAX(DEFAULT_L2_CACHE_BYTE_SIZE,
+ *l2_cache_size = MAX(DEFAULT_L2_CACHE_SIZE,
(uint64_t)DEFAULT_L2_CACHE_CLUSTERS
* s->cluster_size);
}
diff --git a/block/qcow2.h b/block/qcow2.h
index 81b844e936..a8d6f757b1 100644
--- a/block/qcow2.h
+++ b/block/qcow2.h
@@ -27,6 +27,7 @@
#include "crypto/block.h"
#include "qemu/coroutine.h"
+#include "qemu/units.h"
//#define DEBUG_ALLOC
//#define DEBUG_ALLOC2
@@ -43,11 +44,11 @@
/* 8 MB refcount table is enough for 2 PB images at 64k cluster size
* (128 GB for 512 byte clusters, 2 EB for 2 MB clusters) */
-#define QCOW_MAX_REFTABLE_SIZE 0x800000
+#define QCOW_MAX_REFTABLE_SIZE S_8MiB
/* 32 MB L1 table is enough for 2 PB images at 64k cluster size
* (128 GB for 512 byte clusters, 2 EB for 2 MB clusters) */
-#define QCOW_MAX_L1_SIZE 0x2000000
+#define QCOW_MAX_L1_SIZE S_32MiB
/* Allow for an average of 1k per snapshot table entry, should be plenty of
* space for snapshot names and IDs */
@@ -75,9 +76,9 @@
/* Whichever is more */
#define DEFAULT_L2_CACHE_CLUSTERS 8 /* clusters */
-#define DEFAULT_L2_CACHE_BYTE_SIZE 1048576 /* bytes */
+#define DEFAULT_L2_CACHE_SIZE S_1MiB
-#define DEFAULT_CLUSTER_SIZE 65536
+#define DEFAULT_CLUSTER_SIZE S_64KiB
#define QCOW2_OPT_LAZY_REFCOUNTS "lazy-refcounts"
--
2.17.1
- [Qemu-devel] [PATCH v10 0/9] Take the image size into account when allocating the L2 cache, Leonid Bloch, 2018/09/21
- [Qemu-devel] [PATCH v10 1/9] qcow2: Options' documentation fixes, Leonid Bloch, 2018/09/21
- [Qemu-devel] [PATCH v10 3/9] qcow2: Make sizes more humanly readable,
Leonid Bloch <=
- [Qemu-devel] [PATCH v10 2/9] include: Add a lookup table of sizes, Leonid Bloch, 2018/09/21
- [Qemu-devel] [PATCH v10 4/9] qcow2: Avoid duplication in setting the refcount cache size, Leonid Bloch, 2018/09/21
- [Qemu-devel] [PATCH v10 5/9] qcow2: Assign the L2 cache relatively to the image size, Leonid Bloch, 2018/09/21
- [Qemu-devel] [PATCH v10 6/9] qcow2: Increase the default upper limit on the L2 cache size, Leonid Bloch, 2018/09/21