diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2013-11-28 10:13:41 +0100 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2014-02-11 22:57:24 +1000 |
commit | 2198a121434b806636318d62c89595c1955e825a (patch) | |
tree | ed8220562f824411822ab12d7c20119f5f32fb65 /target-sparc/mmu_helper.c | |
parent | ab1da85791340e504d10487e1add81b9988afa98 (diff) | |
download | qemu-2198a121434b806636318d62c89595c1955e825a.zip |
exec: Make stl_phys_notdirty input an AddressSpace
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target-sparc/mmu_helper.c')
-rw-r--r-- | target-sparc/mmu_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-sparc/mmu_helper.c b/target-sparc/mmu_helper.c index 46bb0387ac..5fc2fd64bb 100644 --- a/target-sparc/mmu_helper.c +++ b/target-sparc/mmu_helper.c @@ -180,7 +180,7 @@ static int get_physical_address(CPUSPARCState *env, hwaddr *physical, if (is_dirty) { pde |= PG_MODIFIED_MASK; } - stl_phys_notdirty(pde_ptr, pde); + stl_phys_notdirty(cs->as, pde_ptr, pde); } /* the page can be put in the TLB */ |