From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32878) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTfZ3-0006uw-Oo for qemu-devel@nongnu.org; Sun, 23 Aug 2015 20:24:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTfZ0-0000fx-QN for qemu-devel@nongnu.org; Sun, 23 Aug 2015 20:24:41 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:53711) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTfZ0-0000fn-MZ for qemu-devel@nongnu.org; Sun, 23 Aug 2015 20:24:38 -0400 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 5B55D20910 for ; Sun, 23 Aug 2015 20:24:38 -0400 (EDT) From: "Emilio G. Cota" Date: Sun, 23 Aug 2015 20:23:39 -0400 Message-Id: <1440375847-17603-11-git-send-email-cota@braap.org> In-Reply-To: <1440375847-17603-1-git-send-email-cota@braap.org> References: <1440375847-17603-1-git-send-email-cota@braap.org> Subject: [Qemu-devel] [RFC 10/38] translate-all: remove obsolete comment about l1_map List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, mttcg@listserver.greensocs.com Cc: mark.burton@greensocs.com, a.rigo@virtualopensystems.com, guillaume.delbergue@greensocs.com, pbonzini@redhat.com, alex.bennee@linaro.org, Frederic Konrad l1_map is based on physical addresses in full-system mode, as pointed out in an earlier comment. Said comment also mentions that virtual addresses are only used in l1_map in user-only mode. Signed-off-by: Emilio G. Cota --- translate-all.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/translate-all.c b/translate-all.c index 31239db..b873d5c 100644 --- a/translate-all.c +++ b/translate-all.c @@ -122,8 +122,7 @@ uintptr_t qemu_real_host_page_mask; uintptr_t qemu_host_page_size; uintptr_t qemu_host_page_mask; -/* This is a multi-level map on the virtual address space. - The bottom level has pointers to PageDesc. */ +/* The bottom level has pointers to PageDesc */ static void *l1_map[V_L1_SIZE]; /* code generation context */ -- 1.9.1