From: TaiseiIto Date: Tue, 13 Sep 2022 12:06:00 +0000 (+0000) Subject: gdb-xml: Fix size of EFER register on i386 architecture when debugged by GDB X-Git-Tag: v7.2.0-rc0~11^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75ac231c67cdb13f0609943fab5499963858b587;p=thirdparty%2Fqemu.git gdb-xml: Fix size of EFER register on i386 architecture when debugged by GDB Before this commit, there were contradictory descriptions about size of EFER register. Line 113 says the size is 8 bytes. Line 129 says the size is 4 bytes. As a result, when GDB is debugging an OS running on QEMU, the GDB cannot read 'g' packets correctly. This 'g' packet transmits values of each registers of machine emulated by QEMU to GDB. QEMU, the packet sender, assign 4 bytes for EFER in 'g' packet based on the line 113. GDB, the packet receiver, extract 8 bytes for EFER in 'g' packet based on the line 129. Therefore, all registers located behind EFER in 'g' packet has been shifted 4 bytes in GDB. After this commit, GDB can read 'g' packets correctly. Signed-off-by: TaiseiIto Message-Id: Signed-off-by: Paolo Bonzini --- diff --git a/gdb-xml/i386-32bit.xml b/gdb-xml/i386-32bit.xml index 872fcea9c25..7a66a02b67e 100644 --- a/gdb-xml/i386-32bit.xml +++ b/gdb-xml/i386-32bit.xml @@ -110,7 +110,7 @@ - +