|
|
0a122b |
From 11ef790c7cca491bba62d8cb94018c1cf78e033c Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
From: Juan Quintela <quintela@redhat.com>
|
|
|
0a122b |
Date: Tue, 14 Jan 2014 15:07:36 +0100
|
|
|
0a122b |
Subject: [PATCH 25/40] memory: use find_next_bit() to find dirty bits
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Juan Quintela <quintela@redhat.com>
|
|
|
0a122b |
Message-id: <1389712071-23303-26-git-send-email-quintela@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56680
|
|
|
0a122b |
O-Subject: [RHEL7 qemu-kvm PATCH 25/40] memory: use find_next_bit() to find dirty bits
|
|
|
0a122b |
Bugzilla: 997559
|
|
|
0a122b |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Orit Wasserman <owasserm@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Dr. David Alan Gilbert (git) <dgilbert@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
This operation is way faster than doing it bit by bit.
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
|
|
0a122b |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
0a122b |
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
|
|
|
0a122b |
(cherry picked from commit 1bafff0c7cb99972fd243464632eca0780c6a8f1)
|
|
|
0a122b |
Signed-off-by: Juan Quintela <quintela@trasno.org>
|
|
|
0a122b |
---
|
|
|
0a122b |
include/exec/memory-internal.h | 16 ++++++----------
|
|
|
0a122b |
1 file changed, 6 insertions(+), 10 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
include/exec/memory-internal.h | 16 ++++++----------
|
|
|
0a122b |
1 files changed, 6 insertions(+), 10 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h
|
|
|
0a122b |
index caff5b4..1eda526 100644
|
|
|
0a122b |
--- a/include/exec/memory-internal.h
|
|
|
0a122b |
+++ b/include/exec/memory-internal.h
|
|
|
0a122b |
@@ -53,19 +53,15 @@ static inline bool cpu_physical_memory_get_dirty(ram_addr_t start,
|
|
|
0a122b |
ram_addr_t length,
|
|
|
0a122b |
unsigned client)
|
|
|
0a122b |
{
|
|
|
0a122b |
- ram_addr_t addr, end;
|
|
|
0a122b |
+ unsigned long end, page, next;
|
|
|
0a122b |
|
|
|
0a122b |
assert(client < DIRTY_MEMORY_NUM);
|
|
|
0a122b |
|
|
|
0a122b |
- end = TARGET_PAGE_ALIGN(start + length);
|
|
|
0a122b |
- start &= TARGET_PAGE_MASK;
|
|
|
0a122b |
- for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
|
|
0a122b |
- if (test_bit(addr >> TARGET_PAGE_BITS,
|
|
|
0a122b |
- ram_list.dirty_memory[client])) {
|
|
|
0a122b |
- return true;
|
|
|
0a122b |
- }
|
|
|
0a122b |
- }
|
|
|
0a122b |
- return false;
|
|
|
0a122b |
+ end = TARGET_PAGE_ALIGN(start + length) >> TARGET_PAGE_BITS;
|
|
|
0a122b |
+ page = start >> TARGET_PAGE_BITS;
|
|
|
0a122b |
+ next = find_next_bit(ram_list.dirty_memory[client], end, page);
|
|
|
0a122b |
+
|
|
|
0a122b |
+ return next < end;
|
|
|
0a122b |
}
|
|
|
0a122b |
|
|
|
0a122b |
static inline bool cpu_physical_memory_get_dirty_flag(ram_addr_t addr,
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.1
|
|
|
0a122b |
|