cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-memory-cpu_physical_memory_get_dirty-is-used-as-retu.patch

9ae3a8
From 0a833a763d5ab1da11f11303e96b0c56100ce2b9 Mon Sep 17 00:00:00 2001
9ae3a8
From: Juan Quintela <quintela@redhat.com>
9ae3a8
Date: Tue, 14 Jan 2014 15:07:34 +0100
9ae3a8
Subject: [PATCH 23/40] memory: cpu_physical_memory_get_dirty() is used as returning a bool
9ae3a8
9ae3a8
RH-Author: Juan Quintela <quintela@redhat.com>
9ae3a8
Message-id: <1389712071-23303-24-git-send-email-quintela@redhat.com>
9ae3a8
Patchwork-id: 56676
9ae3a8
O-Subject: [RHEL7 qemu-kvm PATCH 23/40] memory: cpu_physical_memory_get_dirty() is used as returning a bool
9ae3a8
Bugzilla: 997559
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
RH-Acked-by: Orit Wasserman <owasserm@redhat.com>
9ae3a8
RH-Acked-by: Dr. David Alan Gilbert (git) <dgilbert@redhat.com>
9ae3a8
9ae3a8
Signed-off-by: Juan Quintela <quintela@redhat.com>
9ae3a8
Reviewed-by: Eric Blake <eblake@redhat.com>
9ae3a8
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
9ae3a8
(cherry picked from commit 94833c896d2d339571a66542f2715b1897d70fa7)
9ae3a8
Signed-off-by: Juan Quintela <quintela@trasno.org>
9ae3a8
---
9ae3a8
 include/exec/memory-internal.h | 15 ++++++++-------
9ae3a8
 1 file changed, 8 insertions(+), 7 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 include/exec/memory-internal.h |   15 ++++++++-------
9ae3a8
 1 files changed, 8 insertions(+), 7 deletions(-)
9ae3a8
9ae3a8
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h
9ae3a8
index 9099561..f27b830 100644
9ae3a8
--- a/include/exec/memory-internal.h
9ae3a8
+++ b/include/exec/memory-internal.h
9ae3a8
@@ -49,11 +49,10 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr);
9ae3a8
 void qemu_ram_free(ram_addr_t addr);
9ae3a8
 void qemu_ram_free_from_ptr(ram_addr_t addr);
9ae3a8
 
9ae3a8
-static inline int cpu_physical_memory_get_dirty(ram_addr_t start,
9ae3a8
-                                                ram_addr_t length,
9ae3a8
-                                                unsigned client)
9ae3a8
+static inline bool cpu_physical_memory_get_dirty(ram_addr_t start,
9ae3a8
+                                                 ram_addr_t length,
9ae3a8
+                                                 unsigned client)
9ae3a8
 {
9ae3a8
-    int ret = 0;
9ae3a8
     ram_addr_t addr, end;
9ae3a8
 
9ae3a8
     assert(client < DIRTY_MEMORY_NUM);
9ae3a8
@@ -61,10 +60,12 @@ static inline int cpu_physical_memory_get_dirty(ram_addr_t start,
9ae3a8
     end = TARGET_PAGE_ALIGN(start + length);
9ae3a8
     start &= TARGET_PAGE_MASK;
9ae3a8
     for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
9ae3a8
-        ret |= test_bit(addr >> TARGET_PAGE_BITS,
9ae3a8
-                        ram_list.dirty_memory[client]);
9ae3a8
+        if (test_bit(addr >> TARGET_PAGE_BITS,
9ae3a8
+                     ram_list.dirty_memory[client])) {
9ae3a8
+            return true;
9ae3a8
+        }
9ae3a8
     }
9ae3a8
-    return ret;
9ae3a8
+    return false;
9ae3a8
 }
9ae3a8
 
9ae3a8
 static inline bool cpu_physical_memory_get_dirty_flag(ram_addr_t addr,
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8