qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] fixup! tcg: code_bitmap is not used by user-mode em


From: Sergey Fedorov
Subject: [Qemu-devel] [PATCH] fixup! tcg: code_bitmap is not used by user-mode emulation
Date: Wed, 11 May 2016 19:06:17 +0300

From: Sergey Fedorov <address@hidden>

Eliminate 'code_write_count' as well.

Signed-off-by: Sergey Fedorov <address@hidden>
Signed-off-by: Sergey Fedorov <address@hidden>
---

This series is based on commit
    40f646483a11 (cpu-exec: Remove relic orphaned comment)
from
    git://github.com/rth7680/qemu.git tcg-next

 translate-all.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/translate-all.c b/translate-all.c
index 345b35a3d2a2..b54f47253122 100644
--- a/translate-all.c
+++ b/translate-all.c
@@ -72,10 +72,10 @@
 typedef struct PageDesc {
     /* list of TBs intersecting this ram page */
     TranslationBlock *first_tb;
+#ifdef CONFIG_SOFTMMU
     /* in order to optimize self modifying code, we count the number
        of lookups we do to a given page to use a bitmap */
     unsigned int code_write_count;
-#ifdef CONFIG_SOFTMMU
     unsigned long *code_bitmap;
 #else
     unsigned long flags;
@@ -786,8 +786,8 @@ static inline void invalidate_page_bitmap(PageDesc *p)
 #ifdef CONFIG_SOFTMMU
     g_free(p->code_bitmap);
     p->code_bitmap = NULL;
-#endif
     p->code_write_count = 0;
+#endif
 }
 
 /* Set to NULL all the 'first_tb' fields in all PageDescs. */
-- 
1.9.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]