projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b2578d
)
target-s390x: Fix debug output (continued)
author
Andreas Färber
<afaerber@suse.de>
Sun, 27 Jan 2013 03:32:04 +0000
(
03:32
+0000)
committer
Alexander Graf
<agraf@suse.de>
Fri, 1 Feb 2013 01:02:20 +0000
(
02:02
+0100)
Since its introduction in
d5a439645a5a70fed5431318c3bce9dc2caa950f
(s390x: helper functions for system emulation) the variable name was
raddr. Fix this.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
target-s390x/helper.c
patch
|
blob
|
history
diff --git
a/target-s390x/helper.c
b/target-s390x/helper.c
index 857c89725ce1ca11b4335dcc84a4f27184edae08..d693a10be75c6c876035a32ecd93efc8d1062542 100644
(file)
--- a/
target-s390x/helper.c
+++ b/
target-s390x/helper.c
@@
-404,8
+404,8
@@
int cpu_s390x_handle_mmu_fault(CPUS390XState *env, target_ulong orig_vaddr,
/* check out of RAM access */
if (raddr > (ram_size + virtio_size)) {
- DPRINTF("%s:
a
addr %" PRIx64 " > ram_size %" PRIx64 "\n", __func__,
- (uint64_t)
a
addr, (uint64_t)ram_size);
+ DPRINTF("%s:
r
addr %" PRIx64 " > ram_size %" PRIx64 "\n", __func__,
+ (uint64_t)
r
addr, (uint64_t)ram_size);
trigger_pgm_exception(env, PGM_ADDRESSING, ILEN_LATER);
return 1;
}