[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 11/30] misc: use QEMU_IS_ALIGNED
From: |
Juan Quintela |
Subject: |
[PULL 11/30] misc: use QEMU_IS_ALIGNED |
Date: |
Tue, 14 Jan 2020 12:39:07 +0100 |
From: Marc-André Lureau <address@hidden>
Signed-off-by: Marc-André Lureau <address@hidden>
Reviewed-by: Juan Quintela <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Stefan Berger <address@hidden>
Reviewed-by: Paolo Bonzini <address@hidden>
Signed-off-by: Juan Quintela <address@hidden>
---
exec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/exec.c b/exec.c
index d4b769d0d4..1feda49ca1 100644
--- a/exec.c
+++ b/exec.c
@@ -3895,7 +3895,7 @@ int ram_block_discard_range(RAMBlock *rb, uint64_t start,
size_t length)
uint8_t *host_startaddr = rb->host + start;
- if ((uintptr_t)host_startaddr & (rb->page_size - 1)) {
+ if (!QEMU_PTR_IS_ALIGNED(host_startaddr, rb->page_size)) {
error_report("ram_block_discard_range: Unaligned start address: %p",
host_startaddr);
goto err;
@@ -3903,7 +3903,7 @@ int ram_block_discard_range(RAMBlock *rb, uint64_t start,
size_t length)
if ((start + length) <= rb->used_length) {
bool need_madvise, need_fallocate;
- if (length & (rb->page_size - 1)) {
+ if (!QEMU_IS_ALIGNED(length, rb->page_size)) {
error_report("ram_block_discard_range: Unaligned length: %zx",
length);
goto err;
--
2.24.1
- [PULL 02/30] migration-test: Add migration multifd test, (continued)
- [PULL 02/30] migration-test: Add migration multifd test, Juan Quintela, 2020/01/14
- [PULL 03/30] migration: Make sure that we don't call write() in case of error, Juan Quintela, 2020/01/14
- [PULL 04/30] migration-test: introduce functions to handle string parameters, Juan Quintela, 2020/01/14
- [PULL 05/30] migration-test: ppc64: fix FORTH test program, Juan Quintela, 2020/01/14
- [PULL 06/30] runstate: ignore finishmigrate -> prelaunch transition, Juan Quintela, 2020/01/14
- [PULL 07/30] ram.c: remove unneeded labels, Juan Quintela, 2020/01/14
- [PULL 08/30] migration: Rate limit inside host pages, Juan Quintela, 2020/01/14
- [PULL 09/30] migration: Fix incorrect integer->float conversion caught by clang, Juan Quintela, 2020/01/14
- [PULL 10/30] migration: Fix the re-run check of the migrate-incoming command, Juan Quintela, 2020/01/14
- [PULL 12/30] migration: add savevm_state_handler_remove(), Juan Quintela, 2020/01/14
- [PULL 11/30] misc: use QEMU_IS_ALIGNED,
Juan Quintela <=
- [PULL 13/30] migration: savevm_state_handler_insert: constant-time element insertion, Juan Quintela, 2020/01/14
- [PULL 14/30] migration/ram: Yield periodically to the main loop, Juan Quintela, 2020/01/14
- [PULL 15/30] migration/postcopy: reduce memset when it is zero page and matches_target_page_size, Juan Quintela, 2020/01/14
- [PULL 16/30] migration/postcopy: wait for decompress thread in precopy, Juan Quintela, 2020/01/14
- [PULL 17/30] migration/postcopy: count target page number to decide the place_needed, Juan Quintela, 2020/01/14
- [PULL 18/30] migration/postcopy: set all_zero to true on the first target page, Juan Quintela, 2020/01/14
- [PULL 19/30] migration/postcopy: enable random order target page arrival, Juan Quintela, 2020/01/14
- [PULL 20/30] migration/postcopy: enable compress during postcopy, Juan Quintela, 2020/01/14
- [PULL 21/30] migration/multifd: clean pages after filling packet, Juan Quintela, 2020/01/14
- [PULL 22/30] migration/multifd: not use multifd during postcopy, Juan Quintela, 2020/01/14