cpu_get_phys_page_debug fix (Blue Swirl)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2010 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2006-06-25 15:33:53 +00:00
parent 9d9754a31d
commit 6b1575b746
1 changed files with 2 additions and 1 deletions

View File

@ -2771,7 +2771,8 @@ target_ulong cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
int prot, access_index;
if (get_physical_address(env, &phys_addr, &prot, &access_index, addr, 2, 0) != 0)
return -1;
if (get_physical_address(env, &phys_addr, &prot, &access_index, addr, 0, 0) != 0)
return -1;
return phys_addr;
}
#endif