From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53401) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vjt0n-0004Q7-Tm for qemu-devel@nongnu.org; Fri, 22 Nov 2013 10:51:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vjt0h-0000LP-8N for qemu-devel@nongnu.org; Fri, 22 Nov 2013 10:51:17 -0500 Received: from mail-la0-f54.google.com ([209.85.215.54]:65378) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vjt0h-0000LH-0m for qemu-devel@nongnu.org; Fri, 22 Nov 2013 10:51:11 -0500 Received: by mail-la0-f54.google.com with SMTP id ev20so1093596lab.13 for ; Fri, 22 Nov 2013 07:51:09 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1385133359-13770-7-git-send-email-edgar.iglesias@gmail.com> References: <1385133359-13770-1-git-send-email-edgar.iglesias@gmail.com> <1385133359-13770-7-git-send-email-edgar.iglesias@gmail.com> From: Peter Maydell Date: Fri, 22 Nov 2013 15:50:48 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [RFC PATCH 6/8] cpu: Add per-cpu address space List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Edgar E. Iglesias" Cc: QEMU Developers On 22 November 2013 15:15, wrote: > @@ -176,6 +176,9 @@ typedef struct CPUWatchpoint { > sigjmp_buf jmp_env; \ > int exception_index; \ > \ > + /* Per CPU address-space. */ \ > + AddressSpace *as; \ > + \ Does this really have to live in the env struct rather than CPUState ? thanks -- PMM