[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 4/7] libqos: Correct mask to align size to PAGE_S
From: |
Marc Marí |
Subject: |
[Qemu-devel] [PATCH v2 4/7] libqos: Correct mask to align size to PAGE_SIZE in malloc-pc |
Date: |
Fri, 25 Jul 2014 23:37:40 +0200 |
Reviewed-by: Stefan Hajnoczi <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
Signed-off-by: Marc Marí <address@hidden>
---
tests/libqos/malloc-pc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/libqos/malloc-pc.c b/tests/libqos/malloc-pc.c
index db1496c..2efd095 100644
--- a/tests/libqos/malloc-pc.c
+++ b/tests/libqos/malloc-pc.c
@@ -36,7 +36,7 @@ static uint64_t pc_alloc(QGuestAllocator *allocator, size_t
size)
size += (PAGE_SIZE - 1);
- size &= PAGE_SIZE;
+ size &= -PAGE_SIZE;
g_assert_cmpint((s->start + size), <=, s->end);
--
1.7.10.4
- [Qemu-devel] [PATCH v2 0/7] Virtio PCI libqos driver, Marc Marí, 2014/07/25
- [Qemu-devel] [PATCH v2 1/7] tests: Functions bus_foreach and device_find from libqos virtio API, Marc Marí, 2014/07/25
- [Qemu-devel] [PATCH v2 3/7] libqtest: add QTEST_LOG for debugging qtest testcases, Marc Marí, 2014/07/25
- [Qemu-devel] [PATCH v2 4/7] libqos: Correct mask to align size to PAGE_SIZE in malloc-pc,
Marc Marí <=
- [Qemu-devel] [PATCH v2 2/7] tests: Add virtio device initialization, Marc Marí, 2014/07/25
- [Qemu-devel] [PATCH v2 5/7] libqos: Change free function called in malloc, Marc Marí, 2014/07/25
- [Qemu-devel] [PATCH v2 6/7] virtio-blk: Correct bug in support for flexible descriptor layout, Marc Marí, 2014/07/25
- [Qemu-devel] [PATCH v2 7/7] libqos: Added basic virtqueue support to virtio implementation, Marc Marí, 2014/07/25