diff options
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/exec.c b/exec.c index c85321a38b..6a5adab502 100644 --- a/exec.c +++ b/exec.c @@ -1347,6 +1347,8 @@ int qemu_ram_resize(ram_addr_t base, ram_addr_t newsize, Error **errp) assert(block); + newsize = TARGET_PAGE_ALIGN(newsize); + if (block->used_length == newsize) { return 0; } |