From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Marek Dolata - mkdolata@us.ibm.com" <mkdolata@us.ibm.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: Eduardo Habkost <ehabkost@redhat.com>,
"qemu-trivial@nongnu.org" <qemu-trivial@nongnu.org>,
Doug Gale <doug16k@gmail.com>,
Markus Armbruster <armbru@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [PATCH v2] target/i386: Fix handling of k_gs_base register in 32-bit mode in gdbstub
Date: Fri, 27 Dec 2019 22:44:56 +0100 [thread overview]
Message-ID: <2defe319-c1ed-922a-c375-6fda1ed68292@redhat.com> (raw)
In-Reply-To: <62c3c3385b014ce1a6ca07f88973bf95@us.ibm.com>
Hi Marek,
Thanks for Cc'ing the maintainers :)
Still the same error occurs:
Applying: target/i386: Fix handling of k_gs_base register in 32-bit
mode in gdbstub
error: corrupt patch at line 21
Patch failed at 0001 target/i386: Fix handling of k_gs_base register
in 32-bit mode in gdbstub
Please use a version number when you repost a patch, this is patch v2
(next should be v3).
On 12/27/19 9:07 PM, Marek Dolata - mkdolata@us.ibm.com wrote:
> Fixes: corrects clobbering of registers appearing after k_gs_base
>
> Buglink: https://bugs.launchpad.net/qemu/+bug/1857640
>
> Signed-off-by: Marek Dolata <mkdolata@us.ibm.com
> <mailto:mkdolata@us.ibm.com>>
>
> ---
>
> target/i386/gdbstub.c | 4 ++--
>
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/target/i386/gdbstub.c b/target/i386/gdbstub.c
>
> index aef25b70f1..572ead641c 100644
>
> --- a/target/i386/gdbstub.c
>
> +++ b/target/i386/gdbstub.c
>
> @@ -350,15 +350,15 @@ int x86_cpu_gdb_write_register(CPUState *cs,
> uint8_t *mem_buf, int n)
>
> env->segs[R_GS].base = ldl_p(mem_buf);
>
> return 4;
>
> -#ifdef TARGET_X86_64
>
> case IDX_SEG_REGS + 8:
>
> +#ifdef TARGET_X86_64
>
> if (env->hflags & HF_CS64_MASK) {
>
> env->kernelgsbase = ldq_p(mem_buf);
>
> return 8;
>
> }
>
> env->kernelgsbase = ldl_p(mem_buf);
>
> - return 4;
>
> #endif
>
> + return 4;
>
> case IDX_FP_REGS + 8:
>
> cpu_set_fpuc(env, ldl_p(mem_buf));
>
> --
>
> 2.24.1
>
prev parent reply other threads:[~2019-12-27 21:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-27 20:07 [PATCH] target/i386: Fix handling of k_gs_base register in 32-bit mode in gdbstub Marek Dolata - mkdolata@us.ibm.com
2019-12-27 21:44 ` Philippe Mathieu-Daudé [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2defe319-c1ed-922a-c375-6fda1ed68292@redhat.com \
--to=philmd@redhat.com \
--cc=armbru@redhat.com \
--cc=doug16k@gmail.com \
--cc=ehabkost@redhat.com \
--cc=mkdolata@us.ibm.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).