[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 4/8] Only TCG needs TLB handling
From: |
Orit Wasserman |
Subject: |
Re: [Qemu-devel] [PATCH 4/8] Only TCG needs TLB handling |
Date: |
Mon, 25 Jun 2012 09:25:28 +0300 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 |
On 06/22/2012 04:46 PM, Juan Quintela wrote:
> Refactor the code that is only needed for tcg to an static function.
> Call that only when tcg is enabled. We can't refactor to a dummy
> function in the kvm case, as qemu can be compiled at the same time
> with tcg and kvm.
>
> Signed-off-by: Juan Quintela <address@hidden>
> ---
> exec.c | 31 +++++++++++++++++++++----------
> 1 file changed, 21 insertions(+), 10 deletions(-)
>
> diff --git a/exec.c b/exec.c
> index 8244d54..a68b65c 100644
> --- a/exec.c
> +++ b/exec.c
> @@ -1824,11 +1824,29 @@ void tb_flush_jmp_cache(CPUArchState *env,
> target_ulong addr)
> TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *));
> }
>
> +static void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t end,
> + uintptr_t length)
> +{
> + uintptr_t start1;
> +
> + /* we modify the TLB cache so that the dirty bit will be set again
> + when accessing the range */
> + start1 = (uintptr_t)qemu_safe_ram_ptr(start);
> + /* Check that we don't span multiple blocks - this breaks the
> + address comparisons below. */
> + if ((uintptr_t)qemu_safe_ram_ptr(end - 1) - start1
> + != (end - 1) - start) {
> + abort();
> + }
> + cpu_tlb_reset_dirty_all(start1, length);
> +
> +}
> +
> /* Note: start and end must be within the same ram block. */
> void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
> int dirty_flags)
> {
> - uintptr_t length, start1;
> + uintptr_t length;
>
> start &= TARGET_PAGE_MASK;
> end = TARGET_PAGE_ALIGN(end);
> @@ -1838,16 +1856,9 @@ void cpu_physical_memory_reset_dirty(ram_addr_t start,
> ram_addr_t end,
> return;
> cpu_physical_memory_mask_dirty_range(start, length, dirty_flags);
>
> - /* we modify the TLB cache so that the dirty bit will be set again
> - when accessing the range */
> - start1 = (uintptr_t)qemu_safe_ram_ptr(start);
> - /* Check that we don't span multiple blocks - this breaks the
> - address comparisons below. */
> - if ((uintptr_t)qemu_safe_ram_ptr(end - 1) - start1
> - != (end - 1) - start) {
> - abort();
> + if (tcg_enabled()) {
> + tlb_reset_dirty_range_all(start, end, length);
> }
> - cpu_tlb_reset_dirty_all(start1, length);
> }
>
> int cpu_physical_memory_set_dirty_tracking(int enable)
Reviewed-by: Orit Wasserman <address@hidden>
- Re: [Qemu-devel] [PATCH 2/8] Add tracepoints for savevm section start/end, (continued)
- [Qemu-devel] [PATCH 3/8] No need to iterate if we already are over the limit, Juan Quintela, 2012/06/22
- [Qemu-devel] [PATCH 1/8] Add spent time for migration, Juan Quintela, 2012/06/22
- [Qemu-devel] [PATCH 7/8] dirty bitmap: abstract its use, Juan Quintela, 2012/06/22
- [Qemu-devel] [PATCH 6/8] Exit loop if we have been there too long, Juan Quintela, 2012/06/22
- [Qemu-devel] [PATCH 4/8] Only TCG needs TLB handling, Juan Quintela, 2012/06/22
- Re: [Qemu-devel] [PATCH 4/8] Only TCG needs TLB handling,
Orit Wasserman <=
- [Qemu-devel] [PATCH 5/8] Only calculate expected_time for stage 2, Juan Quintela, 2012/06/22
- [Qemu-devel] [PATCH 8/8] Maintain the number of dirty pages, Juan Quintela, 2012/06/22