aboutsummaryrefslogtreecommitdiff
path: root/block/vdi.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2019-01-11 20:14:01 +0100
committerKevin Wolf <kwolf@redhat.com>2019-02-01 13:46:45 +0100
commit14632122b82150d42cefac04a219bbead59bc4a7 (patch)
tree53993ff87350059a20a3d8192026b273c0668dcc /block/vdi.c
parentd09ea2d22786e97c5c03cd4d4888f06bb89f8dc7 (diff)
downloadqemu-14632122b82150d42cefac04a219bbead59bc4a7.zip
qemu-14632122b82150d42cefac04a219bbead59bc4a7.tar.gz
qemu-14632122b82150d42cefac04a219bbead59bc4a7.tar.bz2
block: Eliminate the S_1KiB, S_2KiB, ... macros
We define 54 macros for the powers of two >= 1024. We use six, in six macro definitions. Four of them could just as well use the common MiB macro, so do that. The remaining two can't, because they get passed to stringify. Replace the macro by the literal number there. Slightly harder to read in one instance (1048576 vs. S_1MiB), so add a comment there. The other instance is a wash: 65536 vs S_64KiB. 65536 has been good enough for more than seven years there. This effectively reverts commit 540b8492618 and 1240ac558d3. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/vdi.c')
-rw-r--r--block/vdi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/vdi.c b/block/vdi.c
index 0c34f6b..e1c42ad 100644
--- a/block/vdi.c
+++ b/block/vdi.c
@@ -85,7 +85,8 @@
#define BLOCK_OPT_STATIC "static"
#define SECTOR_SIZE 512
-#define DEFAULT_CLUSTER_SIZE S_1MiB
+#define DEFAULT_CLUSTER_SIZE 1048576
+/* Note: can't use 1 * MiB, because it's passed to stringify() */
#if defined(CONFIG_VDI_DEBUG)
#define VDI_DEBUG 1