From: Anthony Liguori <anthony@codemonkey.ws>
To: Avi Kivity <avi@redhat.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [Qemu-devel] [PATCH v2 00/23] Memory API, batch 1
Date: Fri, 29 Jul 2011 09:18:13 -0500 [thread overview]
Message-ID: <4E32C125.9070102@codemonkey.ws> (raw)
In-Reply-To: <1311679582-11211-1-git-send-email-avi@redhat.com>
On 07/26/2011 06:25 AM, Avi Kivity wrote:
> This patchset contains the core of the memory API, with one device
> (usb-ohci) coverted for reference. The API is currently implemented on
> top of the old ram_addr_t/cpu_register_physical_memory() API, but the plan
> is to make it standalone later.
>
> The goals of the API are:
> - correctness: by modelling the memory hierarchy, things like the 440FX PAM
> registers and movable, overlapping PCI BARs can be modelled accurately.
> - efficiency: by maintaining an object tree describing guest memory, we
> can eventually get rid of the page descriptor array
> - security: by having more information available declaratively, we reduce
> coding errors that may be exploited by malicious guests
Applied all. Thanks.
Regards,
Anthony Liguori
>
> Also available from
>
> git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git
> refs/tags/memory-region-batch-1-v2
>
> Changes from v1:
> - switched to gtk-doc
> - more copyright blurbs
> - simplified flatview_simplify()
> - use assert() instead of abort() for invariant checks
> (but keep abort() for runtime errors)
> - commit log fixups
>
> Avi Kivity (23):
> Add memory API documentation
> Hierarchical memory region API
> memory: implement dirty tracking
> memory: merge adjacent segments of a single memory region
> Internal interfaces for memory API
> memory: abstract address space operations
> memory: rename MemoryRegion::has_ram_addr to ::terminates
> memory: late initialization of ram_addr
> memory: I/O address space support
> memory: add backward compatibility for old portio registration
> memory: add backward compatibility for old mmio registration
> memory: add ioeventfd support
> memory: separate building the final memory map into two steps
> memory: transaction API
> exec.c: initialize memory map
> ioport: register ranges by byte aligned addresses always
> pc: grab system_memory
> pc: convert pc_memory_init() to memory API
> pc: move global memory map out of pc_init1() and into its callers
> pci: pass address space to pci bus when created
> pci: add MemoryRegion based BAR management API
> sysbus: add MemoryRegion based memory management API
> usb-ohci: convert to MemoryRegion
>
> Makefile.target | 1 +
> docs/memory.txt | 172 ++++++++
> exec-memory.h | 39 ++
> exec.c | 19 +
> hw/apb_pci.c | 2 +
> hw/bonito.c | 4 +-
> hw/grackle_pci.c | 5 +-
> hw/gt64xxx.c | 4 +-
> hw/pc.c | 62 ++-
> hw/pc.h | 9 +-
> hw/pc_piix.c | 20 +-
> hw/pci.c | 63 +++-
> hw/pci.h | 15 +-
> hw/pci_host.h | 1 +
> hw/pci_internals.h | 1 +
> hw/piix_pci.c | 13 +-
> hw/ppc4xx_pci.c | 5 +-
> hw/ppc_mac.h | 9 +-
> hw/ppc_newworld.c | 5 +-
> hw/ppc_oldworld.c | 3 +-
> hw/ppc_prep.c | 3 +-
> hw/ppce500_pci.c | 6 +-
> hw/prep_pci.c | 5 +-
> hw/prep_pci.h | 3 +-
> hw/sh_pci.c | 4 +-
> hw/sysbus.c | 27 ++-
> hw/sysbus.h | 3 +
> hw/unin_pci.c | 10 +-
> hw/usb-ohci.c | 42 +--
> hw/versatile_pci.c | 2 +
> ioport.c | 4 +-
> memory.c | 1141 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> memory.h | 469 +++++++++++++++++++++
> 33 files changed, 2072 insertions(+), 99 deletions(-)
> create mode 100644 docs/memory.txt
> create mode 100644 exec-memory.h
> create mode 100644 memory.c
> create mode 100644 memory.h
>
prev parent reply other threads:[~2011-07-29 14:18 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-26 11:25 [Qemu-devel] [PATCH v2 00/23] Memory API, batch 1 Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 01/23] Add memory API documentation Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 02/23] Hierarchical memory region API Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 03/23] memory: implement dirty tracking Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 04/23] memory: merge adjacent segments of a single memory region Avi Kivity
2011-07-26 11:36 ` Paolo Bonzini
2011-07-26 11:38 ` Avi Kivity
2011-07-26 11:51 ` Paolo Bonzini
2011-07-26 12:04 ` Avi Kivity
2011-07-26 15:41 ` Richard Henderson
2011-07-26 16:04 ` Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 05/23] Internal interfaces for memory API Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 06/23] memory: abstract address space operations Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 07/23] memory: rename MemoryRegion::has_ram_addr to ::terminates Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 08/23] memory: late initialization of ram_addr Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 09/23] memory: I/O address space support Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 10/23] memory: add backward compatibility for old portio registration Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 11/23] memory: add backward compatibility for old mmio registration Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 12/23] memory: add ioeventfd support Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 13/23] memory: separate building the final memory map into two steps Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 14/23] memory: transaction API Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 15/23] exec.c: initialize memory map Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 16/23] ioport: register ranges by byte aligned addresses always Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 17/23] pc: grab system_memory Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 18/23] pc: convert pc_memory_init() to memory API Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 19/23] pc: move global memory map out of pc_init1() and into its callers Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 20/23] pci: pass address space to pci bus when created Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 21/23] pci: add MemoryRegion based BAR management API Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 22/23] sysbus: add MemoryRegion based memory " Avi Kivity
2011-07-26 11:26 ` [Qemu-devel] [PATCH v2 23/23] usb-ohci: convert to MemoryRegion Avi Kivity
2011-07-29 14:18 ` Anthony Liguori [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E32C125.9070102@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).