[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 13/38] memory: make sure that client is always insid
From: |
Juan Quintela |
Subject: |
[Qemu-devel] [PATCH 13/38] memory: make sure that client is always inside range |
Date: |
Tue, 17 Dec 2013 16:25:49 +0100 |
Signed-off-by: Juan Quintela <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
---
include/exec/memory-internal.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h
index b58010f..d09d6d8 100644
--- a/include/exec/memory-internal.h
+++ b/include/exec/memory-internal.h
@@ -43,6 +43,7 @@ void qemu_ram_free_from_ptr(ram_addr_t addr);
static inline bool cpu_physical_memory_get_dirty_flag(ram_addr_t addr,
unsigned client)
{
+ assert(client < DIRTY_MEMORY_NUM);
return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & (1 << client);
}
@@ -74,6 +75,7 @@ static inline int cpu_physical_memory_get_dirty(ram_addr_t
start,
static inline void cpu_physical_memory_set_dirty_flag(ram_addr_t addr,
unsigned client)
{
+ assert(client < DIRTY_MEMORY_NUM);
ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= (1 << client);
}
@@ -89,6 +91,8 @@ static inline int
cpu_physical_memory_clear_dirty_flag(ram_addr_t addr,
{
int mask = ~(1 << client);
+ assert(client < DIRTY_MEMORY_NUM);
+
return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] &= mask;
}
--
1.8.3.1
- [Qemu-devel] [PATCH 07/38] memory: make cpu_physical_memory_is_dirty return bool, (continued)
- [Qemu-devel] [PATCH 07/38] memory: make cpu_physical_memory_is_dirty return bool, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 08/38] memory: all users of cpu_physical_memory_get_dirty used only one flag, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 09/38] memory: set single dirty flags when possible, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 10/38] memory: cpu_physical_memory_set_dirty_range() always dirty all flags, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 12/38] memory: use bit 2 for migration, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 13/38] memory: make sure that client is always inside range,
Juan Quintela <=
- [Qemu-devel] [PATCH 11/38] memory: cpu_physical_memory_mask_dirty_range() always clears a single flag, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 14/38] memory: only resize dirty bitmap when memory size increases, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 15/38] memory: cpu_physical_memory_clear_dirty_flag() result is never used, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 16/38] bitmap: Add bitmap_zero_extend operation, Juan Quintela, 2013/12/17
- [Qemu-devel] [PATCH 17/38] memory: split dirty bitmap into three, Juan Quintela, 2013/12/17