Skip to content

Commit

Permalink
vdi: Use a literal number of bytes for DEFAULT_CLUSTER_SIZE
Browse files Browse the repository at this point in the history
If an expression is used to define DEFAULT_CLUSTER_SIZE, when compiled,
it will be embedded as a literal expression in the binary (as the
default value) because it is stringified to mark the size of the default
value. Now this is fixed by using a defined number to define this value.

Signed-off-by: Leonid Bloch <[email protected]>
Reviewed-by: Stefan Weil <[email protected]>
Signed-off-by: Kevin Wolf <[email protected]>
  • Loading branch information
blochl authored and kevmw committed Nov 5, 2018
1 parent 679be30 commit 3dd5b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions block/vdi.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
#define BLOCK_OPT_STATIC "static"

#define SECTOR_SIZE 512
#define DEFAULT_CLUSTER_SIZE (1 * MiB)
#define DEFAULT_CLUSTER_SIZE S_1MiB

#if defined(CONFIG_VDI_DEBUG)
#define VDI_DEBUG 1
Expand Down Expand Up @@ -432,7 +432,7 @@ static int vdi_open(BlockDriverState *bs, QDict *options, int flags,
goto fail;
} else if (header.block_size != DEFAULT_CLUSTER_SIZE) {
error_setg(errp, "unsupported VDI image (block size %" PRIu32
" is not %" PRIu64 ")",
" is not %" PRIu32 ")",
header.block_size, DEFAULT_CLUSTER_SIZE);
ret = -ENOTSUP;
goto fail;
Expand Down

0 comments on commit 3dd5b8f

Please sign in to comment.