From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45634) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UgsYo-0001xX-AD for qemu-devel@nongnu.org; Mon, 27 May 2013 04:13:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UgsYi-0008TP-Tf for qemu-devel@nongnu.org; Mon, 27 May 2013 04:13:42 -0400 Received: from mail-ea0-x22b.google.com ([2a00:1450:4013:c01::22b]:51723) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UgsYi-0008TH-Nf for qemu-devel@nongnu.org; Mon, 27 May 2013 04:13:36 -0400 Received: by mail-ea0-f171.google.com with SMTP id b15so3758691eae.30 for ; Mon, 27 May 2013 01:13:36 -0700 (PDT) Received: from yakj.usersys.redhat.com (net-37-117-138-128.cust.dsl.vodafone.it. [37.117.138.128]) by mx.google.com with ESMTPSA id t6sm3728843eev.14.2013.05.27.01.13.33 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 27 May 2013 01:13:34 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <51A315A7.3000900@redhat.com> Date: Mon, 27 May 2013 10:13:27 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1369414987-8839-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1369414987-8839-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/15] IOMMU patches for 1.6, part 1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-devel@nongnu.org Il 24/05/2013 19:02, Paolo Bonzini ha scritto: > Anthony, > > The following changes since commit 9ce0e9275434bacdeba42dd32e0e8269293fe2cf: > > Open up 1.6 development (2013-05-20 10:55:18 -0500) > > are available in the git repository at: > > git://github.com/bonzini/qemu.git iommu-for-anthony > > for you to fetch changes up to fd2989341e758813351c2fc1446cc8fbcae06ad9: > > memory: clean up phys_page_find (2013-05-24 18:43:54 +0200) I dropped two patches, the top commit is now: commit 13cec346d6dbcd310a02d2d8394a89ab642aef6f Author: Paolo Bonzini Date: Mon May 20 12:21:07 2013 +0200 memory: clean up phys_page_find Remove the goto. Reviewed-by: Peter Maydell Signed-off-by: Paolo Bonzini > Next parts include: > - propagate accesses to unassigned memory through the memory API > - IOMMU support (already reviewed, will be in the same batch) > - owners for memory regions > - FlatView reference counting and RCU > - dropping virtio-blk-dataplane hostmem :) > > ---------------------------------------------------------------- > Avi Kivity (2): > memory: fix address space initialization/destruction > memory: limit sections in the radix tree to the actual address space size > > Jan Kiszka (2): > memory: Replace open-coded memory_region_is_romd > memory: Rename readable flag to romd_mode > > Paolo Bonzini (11): > exec: remove obsolete comment > exec: eliminate qemu_put_ram_ptr > exec: make qemu_get_ram_ptr private > exec: eliminate stq_phys_notdirty > memory: assert that PhysPageEntry's ptr does not overflow > memory: allow memory_region_find() to run on non-root memory regions > memory: do not duplicate memory_region_destructor_none > memory: make memory_global_sync_dirty_bitmap take an AddressSpace > s390x: reduce TARGET_PHYS_ADDR_SPACE_BITS to 62 > memory: populate FlatView for new address spaces > memory: clean up phys_page_find > > arch_init.c | 2 +- > exec.c | 68 +++++++++++++----------------------------- > hw/block/pflash_cfi01.c | 6 ++-- > hw/block/pflash_cfi02.c | 2 +- > hw/pci/pci.c | 2 -- > hw/scsi/megasas.c | 1 - > include/exec/cpu-common.h | 4 --- > include/exec/memory-internal.h | 1 + > include/exec/memory.h | 60 ++++++++++++++++++++++--------------- > include/exec/poison.h | 1 - > memory.c | 64 ++++++++++++++++++++++----------------- > target-s390x/cpu.h | 5 +++- > trace-events | 3 -- > translate-all.c | 2 +- > 14 files changed, 103 insertions(+), 118 deletions(-) >