From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53180) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZfm0-00061V-82 for qemu-devel@nongnu.org; Wed, 09 Sep 2015 09:50:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZflz-0003HV-BZ for qemu-devel@nongnu.org; Wed, 09 Sep 2015 09:50:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZflz-0003HN-7A for qemu-devel@nongnu.org; Wed, 09 Sep 2015 09:50:51 -0400 From: Paolo Bonzini Date: Wed, 9 Sep 2015 15:49:52 +0200 Message-Id: <1441806613-13775-23-git-send-email-pbonzini@redhat.com> In-Reply-To: <1441806613-13775-1-git-send-email-pbonzini@redhat.com> References: <1441806613-13775-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 22/43] 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 Cc: "Emilio G. Cota" From: "Emilio G. Cota" 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 Message-Id: <1440375847-17603-11-git-send-email-cota@braap.org> Signed-off-by: Paolo Bonzini --- translate-all.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/translate-all.c b/translate-all.c index 2a40530..a75aeed 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 */ -- 2.4.3