From: Juan Quintela <quintela@redhat.com>
To: Jason Wang <jasowang@redhat.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org, gleb@redhat.com,
mst@redhat.com
Subject: Re: [PATCH] kvm: x86: Save/restore error_code
Date: Fri, 10 Dec 2010 04:53:53 +0100 [thread overview]
Message-ID: <m362v29tbi.fsf@trasno.org> (raw)
In-Reply-To: <19713.40246.217608.5339@gargle.gargle.HOWL> (Jason Wang's message of "Fri, 10 Dec 2010 11:23:34 +0800")
Jason Wang <jasowang@redhat.com> wrote:
> Juan Quintela writes:
> > Jason Wang <jasowang@redhat.com> wrote:
> > > The saving and restoring of error_code seems lost and convert the
> > > error_code to uint32_t.
> > >
> > > Signed-off-by: Jason Wang <jasowang@redhat.com>
> > > ---
> > > target-i386/cpu.h | 4 ++--
> > > target-i386/machine.c | 2 ++
> > > 2 files changed, 4 insertions(+), 2 deletions(-)
> >
> > It should be a new subsection. The test is if has_error_code != 0
> > according to gleb.
> >
> > Later, Juan.
> >
>
> Thanks for reminding, and maybe we can just use VMSTATE_UINT32_TEST() which is
> simpler than subsection to do the check, isn't it?
we need the subsection, that way we don't need to bump the section
version.
Later, Juan.
>
> > > diff --git a/target-i386/cpu.h b/target-i386/cpu.h
> > > index 06e40f3..c990db9 100644
> > > --- a/target-i386/cpu.h
> > > +++ b/target-i386/cpu.h
> > > @@ -688,7 +688,7 @@ typedef struct CPUX86State {
> > > uint64_t pat;
> > >
> > > /* exception/interrupt handling */
> > > - int error_code;
> > > + uint32_t error_code;
> > > int exception_is_int;
> > > target_ulong exception_next_eip;
> > > target_ulong dr[8]; /* debug registers */
> > > @@ -933,7 +933,7 @@ uint64_t cpu_get_tsc(CPUX86State *env);
> > > #define cpu_list_id x86_cpu_list
> > > #define cpudef_setup x86_cpudef_setup
> > >
> > > -#define CPU_SAVE_VERSION 12
> > > +#define CPU_SAVE_VERSION 13
> > >
> > > /* MMU modes definitions */
> > > #define MMU_MODE0_SUFFIX _kernel
> > > diff --git a/target-i386/machine.c b/target-i386/machine.c
> > > index d78eceb..0e467da 100644
> > > --- a/target-i386/machine.c
> > > +++ b/target-i386/machine.c
> > > @@ -491,6 +491,8 @@ static const VMStateDescription vmstate_cpu = {
> > > VMSTATE_UINT64_V(xcr0, CPUState, 12),
> > > VMSTATE_UINT64_V(xstate_bv, CPUState, 12),
> > > VMSTATE_YMMH_REGS_VARS(ymmh_regs, CPUState, CPU_NB_REGS, 12),
> > > +
> > > + VMSTATE_UINT32_V(error_code, CPUState, 13),
> > > VMSTATE_END_OF_LIST()
> > > /* The above list is not sorted /wrt version numbers, watch out! */
> > > },
WARNING: multiple messages have this Message-ID (diff)
From: Juan Quintela <quintela@redhat.com>
To: Jason Wang <jasowang@redhat.com>
Cc: gleb@redhat.com, qemu-devel@nongnu.org, kvm@vger.kernel.org,
mst@redhat.com
Subject: [Qemu-devel] Re: [PATCH] kvm: x86: Save/restore error_code
Date: Fri, 10 Dec 2010 04:53:53 +0100 [thread overview]
Message-ID: <m362v29tbi.fsf@trasno.org> (raw)
In-Reply-To: <19713.40246.217608.5339@gargle.gargle.HOWL> (Jason Wang's message of "Fri, 10 Dec 2010 11:23:34 +0800")
Jason Wang <jasowang@redhat.com> wrote:
> Juan Quintela writes:
> > Jason Wang <jasowang@redhat.com> wrote:
> > > The saving and restoring of error_code seems lost and convert the
> > > error_code to uint32_t.
> > >
> > > Signed-off-by: Jason Wang <jasowang@redhat.com>
> > > ---
> > > target-i386/cpu.h | 4 ++--
> > > target-i386/machine.c | 2 ++
> > > 2 files changed, 4 insertions(+), 2 deletions(-)
> >
> > It should be a new subsection. The test is if has_error_code != 0
> > according to gleb.
> >
> > Later, Juan.
> >
>
> Thanks for reminding, and maybe we can just use VMSTATE_UINT32_TEST() which is
> simpler than subsection to do the check, isn't it?
we need the subsection, that way we don't need to bump the section
version.
Later, Juan.
>
> > > diff --git a/target-i386/cpu.h b/target-i386/cpu.h
> > > index 06e40f3..c990db9 100644
> > > --- a/target-i386/cpu.h
> > > +++ b/target-i386/cpu.h
> > > @@ -688,7 +688,7 @@ typedef struct CPUX86State {
> > > uint64_t pat;
> > >
> > > /* exception/interrupt handling */
> > > - int error_code;
> > > + uint32_t error_code;
> > > int exception_is_int;
> > > target_ulong exception_next_eip;
> > > target_ulong dr[8]; /* debug registers */
> > > @@ -933,7 +933,7 @@ uint64_t cpu_get_tsc(CPUX86State *env);
> > > #define cpu_list_id x86_cpu_list
> > > #define cpudef_setup x86_cpudef_setup
> > >
> > > -#define CPU_SAVE_VERSION 12
> > > +#define CPU_SAVE_VERSION 13
> > >
> > > /* MMU modes definitions */
> > > #define MMU_MODE0_SUFFIX _kernel
> > > diff --git a/target-i386/machine.c b/target-i386/machine.c
> > > index d78eceb..0e467da 100644
> > > --- a/target-i386/machine.c
> > > +++ b/target-i386/machine.c
> > > @@ -491,6 +491,8 @@ static const VMStateDescription vmstate_cpu = {
> > > VMSTATE_UINT64_V(xcr0, CPUState, 12),
> > > VMSTATE_UINT64_V(xstate_bv, CPUState, 12),
> > > VMSTATE_YMMH_REGS_VARS(ymmh_regs, CPUState, CPU_NB_REGS, 12),
> > > +
> > > + VMSTATE_UINT32_V(error_code, CPUState, 13),
> > > VMSTATE_END_OF_LIST()
> > > /* The above list is not sorted /wrt version numbers, watch out! */
> > > },
next prev parent reply other threads:[~2010-12-10 3:54 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-09 11:22 [PATCH] kvm: x86: Save/restore error_code Jason Wang
2010-12-09 11:22 ` [Qemu-devel] " Jason Wang
2010-12-09 11:28 ` Juan Quintela
2010-12-09 11:28 ` [Qemu-devel] " Juan Quintela
2010-12-10 3:23 ` Jason Wang
2010-12-10 3:23 ` [Qemu-devel] " Jason Wang
2010-12-10 3:53 ` Juan Quintela [this message]
2010-12-10 3:53 ` Juan Quintela
2010-12-10 8:02 ` Jason Wang
2010-12-10 8:02 ` [Qemu-devel] " Jason Wang
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=m362v29tbi.fsf@trasno.org \
--to=quintela@redhat.com \
--cc=gleb@redhat.com \
--cc=jasowang@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.