All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jerone Young <jyoung5@us.ibm.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: kvm-devel@lists.sourceforge.net, kvm-ppc-devel@lists.sourceforge.net
Subject: Re: [kvm-ppc-devel] [kvm-devel] [PATCH 1 of 2] Add
Date: Thu, 10 Apr 2008 21:59:40 +0000	[thread overview]
Message-ID: <1207864780.8805.4.camel@thinkpadL> (raw)
In-Reply-To: <20080410213542.GA10283@dmt>

On Thu, 2008-04-10 at 18:35 -0300, Marcelo Tosatti wrote:
> On Thu, Apr 10, 2008 at 04:04:47PM -0500, Jerone Young wrote:
> > 1 file changed, 5 insertions(+)
> > qemu/qemu-kvm.c |    5 +++++
> > 
> >
> > This patch adds a call to load_kvm_registers after creation of
> > vcpu. This is required for ppc since we are required to set certain
> > registers before boot. This should not have any effect on the curren
> > x86 code (though I need to test this to make sure).
> >
> > What I would like though are some comments on the fix. Is this the
> > right place for this? We had this in our platform setup code, but with
> > recent code changes it will not work there anymore).
> >
> > Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
> > 
> > diff --git a/qemu/qemu-kvm.c b/qemu/qemu-kvm.c
> > --- a/qemu/qemu-kvm.c
> > +++ b/qemu/qemu-kvm.c
> > @@ -353,6 +353,11 @@ static void *ap_main_loop(void *_env)
> >      sigdelset(&signals, SIG_IPI);
> >      sigprocmask(SIG_BLOCK, &signals, NULL);
> >      kvm_create_vcpu(kvm_context, env->cpu_index);
> > +    if (env->cpu_index = 0) {
> > +         /* load any registers set in env into 
> > +            kvm  for the first guest vcpu */ 
> > +        kvm_load_registers(env);
> > +    }
> >      kvm_qemu_init_env(env);
> >      if (kvm_irqchip_in_kernel(kvm_context))
> >  	env->hflags &= ~HF_HALTED_MASK;
> 
> Hi Jerone,
> 
> You can hook into PPC's kvm_arch_qemu_init_env().

That would be a much better place. 

I also noticed that kvm_qemu_init_env() is called in ap_main_loop and
the kvm_main_loop_cpu. ap_main_loop calls kvm_main_loop_cpu, so  one
them should be removed. I'll submit another patch for that.

> 


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
kvm-ppc-devel mailing list
kvm-ppc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-ppc-devel

WARNING: multiple messages have this Message-ID (diff)
From: Jerone Young <jyoung5@us.ibm.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: kvm-devel@lists.sourceforge.net, kvm-ppc-devel@lists.sourceforge.net
Subject: Re: [PATCH 1 of 2] Add kvm_load_registers after first	vcpu creation
Date: Thu, 10 Apr 2008 16:59:40 -0500	[thread overview]
Message-ID: <1207864780.8805.4.camel@thinkpadL> (raw)
In-Reply-To: <20080410213542.GA10283@dmt>

On Thu, 2008-04-10 at 18:35 -0300, Marcelo Tosatti wrote:
> On Thu, Apr 10, 2008 at 04:04:47PM -0500, Jerone Young wrote:
> > 1 file changed, 5 insertions(+)
> > qemu/qemu-kvm.c |    5 +++++
> > 
> >
> > This patch adds a call to load_kvm_registers after creation of
> > vcpu. This is required for ppc since we are required to set certain
> > registers before boot. This should not have any effect on the curren
> > x86 code (though I need to test this to make sure).
> >
> > What I would like though are some comments on the fix. Is this the
> > right place for this? We had this in our platform setup code, but with
> > recent code changes it will not work there anymore).
> >
> > Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
> > 
> > diff --git a/qemu/qemu-kvm.c b/qemu/qemu-kvm.c
> > --- a/qemu/qemu-kvm.c
> > +++ b/qemu/qemu-kvm.c
> > @@ -353,6 +353,11 @@ static void *ap_main_loop(void *_env)
> >      sigdelset(&signals, SIG_IPI);
> >      sigprocmask(SIG_BLOCK, &signals, NULL);
> >      kvm_create_vcpu(kvm_context, env->cpu_index);
> > +    if (env->cpu_index == 0) {
> > +         /* load any registers set in env into 
> > +            kvm  for the first guest vcpu */ 
> > +        kvm_load_registers(env);
> > +    }
> >      kvm_qemu_init_env(env);
> >      if (kvm_irqchip_in_kernel(kvm_context))
> >  	env->hflags &= ~HF_HALTED_MASK;
> 
> Hi Jerone,
> 
> You can hook into PPC's kvm_arch_qemu_init_env().

That would be a much better place. 

I also noticed that kvm_qemu_init_env() is called in ap_main_loop and
the kvm_main_loop_cpu. ap_main_loop calls kvm_main_loop_cpu, so  one
them should be removed. I'll submit another patch for that.

> 


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

  reply	other threads:[~2008-04-10 21:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-10 21:04 [kvm-ppc-devel] [PATCH 0 of 2] Fix loading of registers preboot for Jerone Young
2008-04-10 21:04 ` [PATCH 0 of 2] Fix loading of registers preboot for PowerPC Jerone Young
2008-04-10 21:04 ` [kvm-ppc-devel] [PATCH 1 of 2] Add kvm_load_registers after first Jerone Young
2008-04-10 21:04   ` [PATCH 1 of 2] Add kvm_load_registers after first vcpu creation Jerone Young
2008-04-10 21:35   ` [kvm-ppc-devel] [kvm-devel] [PATCH 1 of 2] Add Marcelo Tosatti
2008-04-10 21:35     ` [PATCH 1 of 2] Add kvm_load_registers after first vcpu creation Marcelo Tosatti
2008-04-10 21:59     ` Jerone Young [this message]
2008-04-10 21:59       ` Jerone Young
2008-04-10 21:04 ` [kvm-ppc-devel] [PATCH 2 of 2] Remove kvm_load_registers from Jerone Young
2008-04-10 21:04   ` [PATCH 2 of 2] Remove kvm_load_registers from ppc440_bamboo board model Jerone Young

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=1207864780.8805.4.camel@thinkpadL \
    --to=jyoung5@us.ibm.com \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=kvm-ppc-devel@lists.sourceforge.net \
    --cc=mtosatti@redhat.com \
    /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.