* [Qemu-trivial] [PATCH] unicore32: abort when entering "x 0" on the monitor
@ 2017-07-28 11:51 Eduardo Otubo
2017-07-31 10:17 ` Michael Tokarev
0 siblings, 1 reply; 4+ messages in thread
From: Eduardo Otubo @ 2017-07-28 11:51 UTC (permalink / raw)
To: qemu-trivial; +Cc: qemu-devel, gxt, thuth
Starting Qemu with "qemu-system-unicore32 -M puv3,accel=qtest -S -nographic"
and entering "x 0 " at the monitor prompt leads to abort():
$ ./unicore32-softmmu/qemu-system-unicore32 -M puv3,accel=qtest -S -nographic
QEMU 2.9.90 monitor - type 'help' for more information
(qemu) x 0
qemu: fatal: uc32_cpu_get_phys_page_debug not supported yet
R00=00000000 R01=00000000 R02=00000000 R03=00000000
R04=00000000 R05=00000000 R06=00000000 R07=00000000
R08=00000000 R09=00000000 R10=00000000 R11=00000000
R12=00000000 R13=00000000 R14=00000000 R15=00000000
R16=00000000 R17=00000000 R18=00000000 R19=00000000
R20=00000000 R21=00000000 R22=00000000 R23=00000000
R24=00000000 R25=00000000 R26=00000000 R27=00000000
R28=00000000 R29=00000000 R30=00000000 R31=03000000
PSR=40000013 -Z-- PRIV
Aborted (core dumped)
This happens because uc32_cpu_get_phys_page_debug() is not implemented
yet, this is a temporary workaround to avoid the crash.
Signed-off-by: Eduardo Otubo <otubo@redhat.com>
---
target/unicore32/softmmu.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/target/unicore32/softmmu.c b/target/unicore32/softmmu.c
index e7152e72e0..d8d76968f3 100644
--- a/target/unicore32/softmmu.c
+++ b/target/unicore32/softmmu.c
@@ -15,6 +15,7 @@
#include "qemu/osdep.h"
#include "cpu.h"
#include "exec/exec-all.h"
+#include "qemu/error-report.h"
#undef DEBUG_UC32
@@ -271,8 +272,7 @@ int uc32_cpu_handle_mmu_fault(CPUState *cs, vaddr address,
hwaddr uc32_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
{
- UniCore32CPU *cpu = UNICORE32_CPU(cs);
-
- cpu_abort(CPU(cpu), "%s not supported yet\n", __func__);
- return addr;
+ error_report("function uc32_cpu_get_phys_page_debug not "
+ "implemented, aborting");
+ return -1;
}
--
2.13.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [PATCH] unicore32: abort when entering "x 0" on the monitor
2017-07-28 11:51 [Qemu-trivial] [PATCH] unicore32: abort when entering "x 0" on the monitor Eduardo Otubo
@ 2017-07-31 10:17 ` Michael Tokarev
2017-08-07 14:16 ` Eduardo Otubo
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tokarev @ 2017-07-31 10:17 UTC (permalink / raw)
To: Eduardo Otubo, qemu-trivial; +Cc: thuth, gxt, qemu-devel
28.07.2017 14:51, Eduardo Otubo wrote:
> Starting Qemu with "qemu-system-unicore32 -M puv3,accel=qtest -S -nographic"
> and entering "x 0 " at the monitor prompt leads to abort():
Applied to -trivial, thanks!
/mjt
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [PATCH] unicore32: abort when entering "x 0" on the monitor
2017-07-31 10:17 ` Michael Tokarev
@ 2017-08-07 14:16 ` Eduardo Otubo
2017-08-09 15:14 ` Michael Tokarev
0 siblings, 1 reply; 4+ messages in thread
From: Eduardo Otubo @ 2017-08-07 14:16 UTC (permalink / raw)
To: Michael Tokarev; +Cc: Eduardo Otubo, qemu-trivial, thuth, gxt, qemu-devel
On Mon, Jul 31, 2017 at 01:17:03PM +0300, Michael Tokarev wrote:
> 28.07.2017 14:51, Eduardo Otubo wrote:
> > Starting Qemu with "qemu-system-unicore32 -M puv3,accel=qtest -S -nographic"
> > and entering "x 0 " at the monitor prompt leads to abort():
>
> Applied to -trivial, thanks!
>
Hi Michael, you missed this patch in the latest pull request. Care to
take it on the next one? I'm planning to send some other small fixes
until this Friday.
Regards,
--
Eduardo Otubo
Senior Software Engineer @ RedHat
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [PATCH] unicore32: abort when entering "x 0" on the monitor
2017-08-07 14:16 ` Eduardo Otubo
@ 2017-08-09 15:14 ` Michael Tokarev
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2017-08-09 15:14 UTC (permalink / raw)
To: Eduardo Otubo, qemu-trivial, thuth, gxt, qemu-devel
07.08.2017 17:16, Eduardo Otubo wrote:
> On Mon, Jul 31, 2017 at 01:17:03PM +0300, Michael Tokarev wrote:
>> 28.07.2017 14:51, Eduardo Otubo wrote:
>>> Starting Qemu with "qemu-system-unicore32 -M puv3,accel=qtest -S -nographic"
>>> and entering "x 0 " at the monitor prompt leads to abort():
>>
>> Applied to -trivial, thanks!
>
> Hi Michael, you missed this patch in the latest pull request. Care to
> take it on the next one? I'm planning to send some other small fixes
> until this Friday.
Yeah, for some reason it slipped out. I'm picking it up again.
Thanks,
/mjt
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-08-09 15:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-28 11:51 [Qemu-trivial] [PATCH] unicore32: abort when entering "x 0" on the monitor Eduardo Otubo
2017-07-31 10:17 ` Michael Tokarev
2017-08-07 14:16 ` Eduardo Otubo
2017-08-09 15:14 ` Michael Tokarev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).