From: Paul Mackerras <paulus@samba.org>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
linux-kernel@vger.kernel.org, linux-rt-users@vger.kernel.org,
Luiz Capitulino <lcapitulino@redhat.com>,
Rik van Riel <riel@redhat.com>,
Steven Rostedt <srostedt@redhat.com>,
Thomas Gleixner <tglx@linutronix.de>,
kvm@vger.kernel.org, Paolo Bonzini <pbonzini@redhat.com>,
Peter Zijlstra <peterz@infradead.org>
Subject: Re: [patch -rt 1/2] KVM: use simple waitqueue for vcpu->wq
Date: Tue, 20 Jan 2015 16:46:53 +1100 [thread overview]
Message-ID: <20150120054653.GA6473@iris.ozlabs.ibm.com> (raw)
In-Reply-To: <20150119144100.GA10794@amt.cnet>
On Mon, Jan 19, 2015 at 12:41:00PM -0200, Marcelo Tosatti wrote:
> On Fri, Jan 16, 2015 at 11:48:46AM -0500, Steven Rostedt wrote:
> > > static void kvmppc_vcore_blocked(struct kvmppc_vcore *vc)
> > > {
> > > - DEFINE_WAIT(wait);
> > > + DEFINE_SWAITER(wait);
> > >
> > > - prepare_to_wait(&vc->wq, &wait, TASK_INTERRUPTIBLE);
> > > + swait_prepare(&vc->wq, &wait, TASK_INTERRUPTIBLE);
> > > vc->vcore_state = VCORE_SLEEPING;
> > > spin_unlock(&vc->lock);
> > > schedule();
> > > - finish_wait(&vc->wq, &wait);
> > > + swait_finish(&vc->wq, &wait);
> > > spin_lock(&vc->lock);
> > > vc->vcore_state = VCORE_INACTIVE;
> > > }
> > > @@ -1613,7 +1613,7 @@
> > > kvmppc_create_dtl_entry(vcpu, vc);
> > > kvmppc_start_thread(vcpu);
> > > } else if (vc->vcore_state == VCORE_SLEEPING) {
> > > - wake_up(&vc->wq);
> > > + swait_wake(&vc->wq);
> >
> > I notice everywhere you have a swait_wake_interruptible() but here. Is
> > there a reason why?
> >
> > IIRC, Peter wants to make swait wakeup usage homogenous. That is, you
> > either sleep in an interruptible state, or you don't. You can't mix and
> > match it.
>
> IIUC there is only one waiter on this waitqueue at any given time.
>
> Paul is that correct?
Yes, that's right. It's only the task that has taken the
responsibility for running the virtual core that would be waiting on
that wait queue.
Paul.
next prev parent reply other threads:[~2015-01-20 5:46 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-14 17:12 [patch -rt 0/2] use simple waitqueue for kvm vcpu waitqueue (v3) Marcelo Tosatti
2015-01-14 17:12 ` [patch -rt 1/2] KVM: use simple waitqueue for vcpu->wq Marcelo Tosatti
2015-01-14 18:22 ` Rik van Riel
2015-01-16 16:48 ` Steven Rostedt
2015-01-16 16:56 ` Steven Rostedt
2015-01-17 7:57 ` Peter Zijlstra
2015-01-19 14:41 ` Marcelo Tosatti
2015-01-20 5:46 ` Paul Mackerras [this message]
2015-01-20 18:16 ` Steven Rostedt
2015-01-21 15:07 ` Peter Zijlstra
2015-02-17 17:44 ` Sebastian Andrzej Siewior
2015-02-18 14:03 ` Peter Zijlstra
2015-02-25 21:02 ` Sebastian Andrzej Siewior
2015-08-07 10:57 ` Peter Zijlstra
2015-08-07 11:14 ` Peter Zijlstra
2015-08-07 16:41 ` Christoph Hellwig
2015-08-07 16:45 ` Peter Zijlstra
2015-08-09 6:39 ` Christoph Hellwig
2015-08-17 20:31 ` Thomas Gleixner
2015-02-27 0:23 ` Marcelo Tosatti
2015-03-05 1:09 ` Marcelo Tosatti
2015-03-05 7:42 ` Sebastian Andrzej Siewior
2015-03-06 13:54 ` Sebastian Andrzej Siewior
2015-01-14 17:12 ` [patch -rt 2/2] KVM: lapic: mark LAPIC timer handler as irqsafe Marcelo Tosatti
2015-01-14 18:23 ` Rik van Riel
2015-01-14 17:35 ` [patch -rt 0/2] use simple waitqueue for kvm vcpu waitqueue (v3) Paolo Bonzini
-- strict thread matches above, loose matches on Subject: below --
2015-01-21 20:36 [patch -rt 0/2] use simple waitqueue for kvm vcpu waitqueue (v4) Marcelo Tosatti
2015-01-21 20:36 ` [patch -rt 1/2] KVM: use simple waitqueue for vcpu->wq Marcelo Tosatti
2015-04-08 23:33 [patch -rt 0/2] use simple waitqueue for kvm vcpu waitqueue (v5) Marcelo Tosatti
2015-04-08 23:33 ` [patch -rt 1/2] KVM: use simple waitqueue for vcpu->wq Marcelo Tosatti
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=20150120054653.GA6473@iris.ozlabs.ibm.com \
--to=paulus@samba.org \
--cc=kvm@vger.kernel.org \
--cc=lcapitulino@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=mtosatti@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
--cc=rostedt@goodmis.org \
--cc=srostedt@redhat.com \
--cc=tglx@linutronix.de \
/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).