|
|
383d26 |
From c2b9a080a8c98bb536ce97c47efda84538458bd0 Mon Sep 17 00:00:00 2001
|
|
|
383d26 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Date: Tue, 19 Feb 2019 17:00:15 +0100
|
|
|
383d26 |
Subject: [PATCH 14/23] include: Add a lookup table of sizes
|
|
|
383d26 |
|
|
|
383d26 |
RH-Author: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Message-id: <20190219170023.27826-6-kwolf@redhat.com>
|
|
|
383d26 |
Patchwork-id: 84545
|
|
|
383d26 |
O-Subject: [RHEL-7.7 qemu-kvm-rhev PATCH 05/13] include: Add a lookup table of sizes
|
|
|
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: Leonid Bloch <lbloch@janustech.com>
|
|
|
383d26 |
|
|
|
383d26 |
Adding a lookup table for the powers of two, with the appropriate size
|
|
|
383d26 |
prefixes. This is needed when a size has to be stringified, in which
|
|
|
383d26 |
case something like '(1 * KiB)' would become a literal '(1 * (1L << 10))'
|
|
|
383d26 |
string. Powers of two are used very often for sizes, so such a table
|
|
|
383d26 |
will also make it easier and more intuitive to write them.
|
|
|
383d26 |
|
|
|
383d26 |
This table is generatred using the following AWK script:
|
|
|
383d26 |
|
|
|
383d26 |
BEGIN {
|
|
|
383d26 |
suffix="KMGTPE";
|
|
|
383d26 |
for(i=10; i<64; i++) {
|
|
|
383d26 |
val=2**i;
|
|
|
383d26 |
s=substr(suffix, int(i/10), 1);
|
|
|
383d26 |
n=2**(i%10);
|
|
|
383d26 |
pad=21-int(log(n)/log(10));
|
|
|
383d26 |
printf("#define S_%d%siB %*d\n", n, s, pad, val);
|
|
|
383d26 |
}
|
|
|
383d26 |
}
|
|
|
383d26 |
|
|
|
383d26 |
Signed-off-by: Leonid Bloch <lbloch@janustech.com>
|
|
|
383d26 |
Reviewed-by: Alberto Garcia <berto@igalia.com>
|
|
|
383d26 |
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
(cherry picked from commit 540b8492618ebbe98e7462bd7d31361b8cb10a05)
|
|
|
383d26 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
383d26 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
---
|
|
|
383d26 |
include/qemu/units.h | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
383d26 |
1 file changed, 55 insertions(+)
|
|
|
383d26 |
|
|
|
383d26 |
diff --git a/include/qemu/units.h b/include/qemu/units.h
|
|
|
383d26 |
index 692db3f..68a7758 100644
|
|
|
383d26 |
--- a/include/qemu/units.h
|
|
|
383d26 |
+++ b/include/qemu/units.h
|
|
|
383d26 |
@@ -17,4 +17,59 @@
|
|
|
383d26 |
#define PiB (INT64_C(1) << 50)
|
|
|
383d26 |
#define EiB (INT64_C(1) << 60)
|
|
|
383d26 |
|
|
|
383d26 |
+#define S_1KiB 1024
|
|
|
383d26 |
+#define S_2KiB 2048
|
|
|
383d26 |
+#define S_4KiB 4096
|
|
|
383d26 |
+#define S_8KiB 8192
|
|
|
383d26 |
+#define S_16KiB 16384
|
|
|
383d26 |
+#define S_32KiB 32768
|
|
|
383d26 |
+#define S_64KiB 65536
|
|
|
383d26 |
+#define S_128KiB 131072
|
|
|
383d26 |
+#define S_256KiB 262144
|
|
|
383d26 |
+#define S_512KiB 524288
|
|
|
383d26 |
+#define S_1MiB 1048576
|
|
|
383d26 |
+#define S_2MiB 2097152
|
|
|
383d26 |
+#define S_4MiB 4194304
|
|
|
383d26 |
+#define S_8MiB 8388608
|
|
|
383d26 |
+#define S_16MiB 16777216
|
|
|
383d26 |
+#define S_32MiB 33554432
|
|
|
383d26 |
+#define S_64MiB 67108864
|
|
|
383d26 |
+#define S_128MiB 134217728
|
|
|
383d26 |
+#define S_256MiB 268435456
|
|
|
383d26 |
+#define S_512MiB 536870912
|
|
|
383d26 |
+#define S_1GiB 1073741824
|
|
|
383d26 |
+#define S_2GiB 2147483648
|
|
|
383d26 |
+#define S_4GiB 4294967296
|
|
|
383d26 |
+#define S_8GiB 8589934592
|
|
|
383d26 |
+#define S_16GiB 17179869184
|
|
|
383d26 |
+#define S_32GiB 34359738368
|
|
|
383d26 |
+#define S_64GiB 68719476736
|
|
|
383d26 |
+#define S_128GiB 137438953472
|
|
|
383d26 |
+#define S_256GiB 274877906944
|
|
|
383d26 |
+#define S_512GiB 549755813888
|
|
|
383d26 |
+#define S_1TiB 1099511627776
|
|
|
383d26 |
+#define S_2TiB 2199023255552
|
|
|
383d26 |
+#define S_4TiB 4398046511104
|
|
|
383d26 |
+#define S_8TiB 8796093022208
|
|
|
383d26 |
+#define S_16TiB 17592186044416
|
|
|
383d26 |
+#define S_32TiB 35184372088832
|
|
|
383d26 |
+#define S_64TiB 70368744177664
|
|
|
383d26 |
+#define S_128TiB 140737488355328
|
|
|
383d26 |
+#define S_256TiB 281474976710656
|
|
|
383d26 |
+#define S_512TiB 562949953421312
|
|
|
383d26 |
+#define S_1PiB 1125899906842624
|
|
|
383d26 |
+#define S_2PiB 2251799813685248
|
|
|
383d26 |
+#define S_4PiB 4503599627370496
|
|
|
383d26 |
+#define S_8PiB 9007199254740992
|
|
|
383d26 |
+#define S_16PiB 18014398509481984
|
|
|
383d26 |
+#define S_32PiB 36028797018963968
|
|
|
383d26 |
+#define S_64PiB 72057594037927936
|
|
|
383d26 |
+#define S_128PiB 144115188075855872
|
|
|
383d26 |
+#define S_256PiB 288230376151711744
|
|
|
383d26 |
+#define S_512PiB 576460752303423488
|
|
|
383d26 |
+#define S_1EiB 1152921504606846976
|
|
|
383d26 |
+#define S_2EiB 2305843009213693952
|
|
|
383d26 |
+#define S_4EiB 4611686018427387904
|
|
|
383d26 |
+#define S_8EiB 9223372036854775808
|
|
|
383d26 |
+
|
|
|
383d26 |
#endif
|
|
|
383d26 |
--
|
|
|
383d26 |
1.8.3.1
|
|
|
383d26 |
|