From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFOqS-0005aT-Pr for qemu-devel@nongnu.org; Tue, 01 Dec 2009 04:16:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFOqO-0005XX-4R for qemu-devel@nongnu.org; Tue, 01 Dec 2009 04:16:28 -0500 Received: from [199.232.76.173] (port=50771 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFOqO-0005XR-0g for qemu-devel@nongnu.org; Tue, 01 Dec 2009 04:16:24 -0500 Received: from mtagate2.de.ibm.com ([195.212.17.162]:56240) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NFOqN-00067h-Nb for qemu-devel@nongnu.org; Tue, 01 Dec 2009 04:16:24 -0500 Received: from d12nrmr1607.megacenter.de.ibm.com (d12nrmr1607.megacenter.de.ibm.com [9.149.167.49]) by mtagate2.de.ibm.com (8.13.1/8.13.1) with ESMTP id nB19GM7P010974 for ; Tue, 1 Dec 2009 09:16:22 GMT Received: from d12av04.megacenter.de.ibm.com (d12av04.megacenter.de.ibm.com [9.149.165.229]) by d12nrmr1607.megacenter.de.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id nB19GMwr1269922 for ; Tue, 1 Dec 2009 10:16:22 +0100 Received: from d12av04.megacenter.de.ibm.com (loopback [127.0.0.1]) by d12av04.megacenter.de.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id nB19GLAP005202 for ; Tue, 1 Dec 2009 10:16:21 +0100 Message-ID: <4B14DF0D.1050701@de.ibm.com> Date: Tue, 01 Dec 2009 10:17:01 +0100 From: Carsten Otte MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 06/11] Add support for S390x system emulation References: <1259241800-2810-1-git-send-email-agraf@suse.de> <1259241800-2810-7-git-send-email-agraf@suse.de> <20091130181844.GA12174@volta.aurel32.net> In-Reply-To: <20091130181844.GA12174@volta.aurel32.net> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aurelien Jarno Cc: Carsten Otte , Alexander Graf , qemu-devel@nongnu.org Aurelien Jarno wrote: >> +static inline int cpu_mmu_index (CPUState *env) >> +{ >> + /* XXX: Currently we don't implement virtual memory */ >> + return 0; > > Is it correct? It means that memory access will aways be kernel memory > accesses. IIRC, even with KVM enabled, softmmu accesses are possible in > some cases (devices ?). On s390, we don't have memory mapped I/O. KVM is virtio only, and even if we would add channel devices we would not require softmmu emulation here. S390 does'nt have pci, usb or alike.