On 08/28/2011 06:52 PM, Avi Kivity wrote:
Anthony, please pull from

  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git memory/core

to receive fixes for the rom/device API - initialize ->ops and a new ->opaque.

Avi Kivity (2):
      memory: fix memory_region_init_rom_device() not initializing ->ops
      memory: add opaque parameter to memory_region_init_rom_device()


I tacked on a third commit:

commit b5fe14cc7efa4e3ef58f591728e69203287a9de4
Author: Avi Kivity <a...@redhat.com>
Date:   Mon Aug 29 09:12:49 2011 +0300

    memory: fix rom_device I/O mode

    When adding a rom_device in I/O mode, we incorrectly masked off the low
bits, resulting in a pure RAM map. Fix my masking off the high bits and
    IO_MEM_ROMD, yielding a pure I/O map.

    Signed-off-by: Avi Kivity <a...@redhat.com>

diff --git a/memory.c b/memory.c
index 1491a39..eb31fa8 100644
--- a/memory.c
+++ b/memory.c
@@ -304,7 +304,7 @@ static void as_memory_range_add(AddressSpace *as, FlatRange *fr)
     }

     if (!fr->readable) {
-        phys_offset &= TARGET_PAGE_MASK;
+        phys_offset &= ~TARGET_PAGE_MASK & ~IO_MEM_ROMD;
     }

     cpu_register_physical_memory_log(fr->addr.start,


--
error compiling committee.c: too many arguments to function


Reply via email to