From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TVFPD-0008FD-Vm for qemu-devel@nongnu.org; Mon, 05 Nov 2012 00:39:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TVFPC-0005hC-Ar for qemu-devel@nongnu.org; Mon, 05 Nov 2012 00:39:27 -0500 Received: from mail-ob0-f173.google.com ([209.85.214.173]:37662) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TVFPC-0005Ov-5b for qemu-devel@nongnu.org; Mon, 05 Nov 2012 00:39:26 -0500 Received: by mail-ob0-f173.google.com with SMTP id wc18so4916290obb.4 for ; Sun, 04 Nov 2012 21:39:25 -0800 (PST) From: Liu Ping Fan Date: Mon, 5 Nov 2012 13:38:41 +0800 Message-Id: <1352093924-17598-6-git-send-email-qemulist@gmail.com> In-Reply-To: <1352093924-17598-1-git-send-email-qemulist@gmail.com> References: <1352093924-17598-1-git-send-email-qemulist@gmail.com> Subject: [Qemu-devel] [PATCH v6 5/8] memory: introduce local lock for address space List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Jan Kiszka , Marcelo Tosatti , Avi Kivity , Anthony Liguori , Stefan Hajnoczi , Paolo Bonzini From: Liu Ping Fan For those address spaces which want to be able out of big lock, they will be protected by their own local. Signed-off-by: Liu Ping Fan --- memory.c | 1 + memory.h | 3 +++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/memory.c b/memory.c index 2f68d67..18425fd 100644 --- a/memory.c +++ b/memory.c @@ -1535,6 +1535,7 @@ void memory_listener_unregister(MemoryListener *listener) void address_space_init(AddressSpace *as, MemoryRegion *root) { memory_region_transaction_begin(); + qemu_mutex_init(&as->lock); as->root = root; as->current_map = g_new(FlatView, 1); flatview_init(as->current_map); diff --git a/memory.h b/memory.h index 79393f1..13a9e3e 100644 --- a/memory.h +++ b/memory.h @@ -22,6 +22,7 @@ #include "cpu-common.h" #include "targphys.h" #include "qemu-queue.h" +#include "qemu-thread.h" #include "iorange.h" #include "ioport.h" #include "int128.h" @@ -164,6 +165,7 @@ typedef struct AddressSpace AddressSpace; */ struct AddressSpace { /* All fields are private. */ + QemuMutex lock; const char *name; MemoryRegion *root; struct FlatView *current_map; @@ -801,6 +803,7 @@ void mtree_info(fprintf_function mon_printf, void *f); * * @as: an uninitialized #AddressSpace * @root: a #MemoryRegion that routes addesses for the address space + * @lock: if true, the physmap protected by local lock, otherwise big lock */ void address_space_init(AddressSpace *as, MemoryRegion *root); -- 1.7.4.4