mirror of https://github.com/xqemu/xqemu.git
target-ppc: Remove address check for logging
One LOG_MMU statement in mmu_helper.c has an odd check on the effective address being translated. I can see no reason for this; I suspect it was a debugging hack from long ago. This patch removes it. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
213c718080
commit
8152ceaf6e
|
@ -906,12 +906,10 @@ static inline int get_segment(CPUPPCState *env, mmu_ctx_t *ctx,
|
||||||
ret = find_pte(env, ctx, 0, rw, type, target_page_bits);
|
ret = find_pte(env, ctx, 0, rw, type, target_page_bits);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
/* Secondary table lookup */
|
/* Secondary table lookup */
|
||||||
if (eaddr != 0xEFFFFFFF) {
|
LOG_MMU("1 htab=" TARGET_FMT_plx "/" TARGET_FMT_plx
|
||||||
LOG_MMU("1 htab=" TARGET_FMT_plx "/" TARGET_FMT_plx
|
" vsid=" TARGET_FMT_lx " api=" TARGET_FMT_lx
|
||||||
" vsid=" TARGET_FMT_lx " api=" TARGET_FMT_lx
|
" hash=" TARGET_FMT_plx "\n", env->htab_base,
|
||||||
" hash=" TARGET_FMT_plx "\n", env->htab_base,
|
env->htab_mask, vsid, ctx->ptem, ctx->hash[1]);
|
||||||
env->htab_mask, vsid, ctx->ptem, ctx->hash[1]);
|
|
||||||
}
|
|
||||||
ret2 = find_pte(env, ctx, 1, rw, type,
|
ret2 = find_pte(env, ctx, 1, rw, type,
|
||||||
target_page_bits);
|
target_page_bits);
|
||||||
if (ret2 != -1) {
|
if (ret2 != -1) {
|
||||||
|
|
Loading…
Reference in New Issue