Created
May 1, 2017 04:14
-
-
Save cleverca22/3be9e038e66f05eebfea954a89db45e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(qemu) info mtree | |
address-space: memory | |
0000000000000000-ffffffffffffffff (prio 0, i/o): system | |
0000000000000000-0000000003ffffff (prio 0, ram): pc.ram | |
00000000fee00000-00000000feefffff (prio 4096, i/o): apic-msi | |
00000000fffffff0-00000000ffffffff (prio 0, rom): boot rom | |
address-space: I/O | |
0000000000000000-000000000000ffff (prio 0, i/o): io | |
000000000000007e-000000000000007f (prio 0, i/o): kvmvapic | |
address-space: CPU | |
0000000000000000-ffffffffffffffff (prio 0, i/o): memory | |
0000000000000000-ffffffffffffffff (prio 0, i/o): alias memory @system 0000000000000000-ffffffffffffffff | |
memory-region: system | |
0000000000000000-ffffffffffffffff (prio 0, i/o): system | |
0000000000000000-0000000003ffffff (prio 0, ram): pc.ram | |
00000000fee00000-00000000feefffff (prio 4096, i/o): apic-msi | |
00000000fffffff0-00000000ffffffff (prio 0, rom): boot rom | |
(qemu) cont | |
(qemu) [email protected]:memory_region_subpage_read cpu 0 mr 0x556cbf095260 offset 0xff0 value 0 size 1 | |
qemu-system-x86_64: Trying to execute code outside RAM or ROM at 0x00000000fffffff0 | |
This usually means one of the following happened: | |
(1) You told QEMU to execute a kernel for the wrong machine type, and it crashed on startup (eg trying to run a raspberry pi kernel on a versatilepb QEMU machine) | |
(2) You didn't give QEMU a kernel or BIOS filename at all, and QEMU executed a ROM full of no-op instructions until it fell off the end | |
(3) Your guest kernel has a bug and crashed by jumping off into nowhere | |
This is almost always one of the first two, so check your command line and that you are using the right type of kernel for this machine. | |
If you think option (3) is likely then you can try debugging your guest with the -d debug options; in particular -d guest_errors will cause the log to include a dump of the guest register state at this point. | |
Execution cannot continue; stopping here. | |
qemu: fatal: Trying to execute code outside RAM or ROM at 0x00000000fffffff0 | |
EAX=00000000 EBX=00000000 ECX=00000000 EDX=00000663 | |
ESI=00000000 EDI=00000000 EBP=00000000 ESP=00000000 | |
EIP=0000fff0 EFL=00000002 [-------] CPL=0 II=0 A20=1 SMM=0 HLT=0 | |
ES =0000 00000000 0000ffff 00009300 | |
CS =f000 ffff0000 0000ffff 00009b00 | |
SS =0000 00000000 0000ffff 00009300 | |
DS =0000 00000000 0000ffff 00009300 | |
FS =0000 00000000 0000ffff 00009300 | |
GS =0000 00000000 0000ffff 00009300 | |
LDT=0000 00000000 0000ffff 00008200 | |
TR =0000 00000000 0000ffff 00008b00 | |
GDT= 00000000 0000ffff | |
IDT= 00000000 0000ffff | |
CR0=60000010 CR2=00000000 CR3=00000000 CR4=00000000 | |
DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000 | |
DR6=00000000ffff0ff0 DR7=0000000000000400 | |
CCS=00000000 CCD=00000000 CCO=EFLAGS | |
EFER=0000000000000000 | |
FCW=037f FSW=0000 [ST=0] FTW=00 MXCSR=00001f80 | |
FPR0=0000000000000000 0000 FPR1=0000000000000000 0000 | |
FPR2=0000000000000000 0000 FPR3=0000000000000000 0000 | |
FPR4=0000000000000000 0000 FPR5=0000000000000000 0000 | |
FPR6=0000000000000000 0000 FPR7=0000000000000000 0000 | |
XMM00=00000000000000000000000000000000 XMM01=00000000000000000000000000000000 | |
XMM02=00000000000000000000000000000000 XMM03=00000000000000000000000000000000 | |
XMM04=00000000000000000000000000000000 XMM05=00000000000000000000000000000000 | |
XMM06=00000000000000000000000000000000 XMM07=00000000000000000000000000000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment