From: Avi Kivity <avi@redhat.com>
To: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>,
Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>,
Nick Piggin <npiggin@kernel.dk>,
Peter Zijlstra <peterz@infradead.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>,
Jan Beulich <JBeulich@novell.com>,
Eric Dumazet <dada1@cosmosbay.com>,
Xen-devel <xen-devel@lists.xensource.com>,
"H. Peter Anvin" <hpa@zytor.com>,
xiyou.wangcong@gmail.com,
Linux Virtualization <virtualization@lists.linux-foundation.org>
Subject: Re: [PATCH 13/14] x86/ticketlock: add slowpath logic
Date: Wed, 17 Nov 2010 10:58:22 +0200 [thread overview]
Message-ID: <4CE3992E.2070406@redhat.com> (raw)
In-Reply-To: <4CE397C8.9040901@goop.org>
On 11/17/2010 10:52 AM, Jeremy Fitzhardinge wrote:
> On 11/17/2010 12:31 AM, Jan Beulich wrote:
> >>>> On 16.11.10 at 22:08, Jeremy Fitzhardinge<jeremy@goop.org> wrote:
> >> +static inline void __ticket_enter_slowpath(struct arch_spinlock *lock)
> >> +{
> >> + if (sizeof(lock->tickets.tail) == sizeof(u8))
> >> + asm (LOCK_PREFIX "orb %1, %0"
> >> + : "+m" (lock->tickets.tail)
> >> + : "i" (TICKET_SLOWPATH_FLAG) : "memory");
> >> + else
> >> + asm (LOCK_PREFIX "orw %1, %0"
> >> + : "+m" (lock->tickets.tail)
> >> + : "i" (TICKET_SLOWPATH_FLAG) : "memory");
> >> +}
> > Came only now to mind: Here and elsewhere, did you try using
> > %z0 to have gcc produce the opcode suffix character, rather
> > than having these somewhat ugly if()-s?
>
> Actually in this case I'm pretty sure there's already a "set bit"
> function which will do the job. set_bit(), I guess, though it takes a
> bit number rather than a mask...
>
set_bit() operates on a long, while the intel manuals recommend against
operating on operands of different size, especially with locked
operations. I think newer processors have more relaxed requirements,
though.
--
error compiling committee.c: too many arguments to function
next prev parent reply other threads:[~2010-11-17 8:58 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1289940821.git.jeremy.fitzhardinge@citrix.com>
2010-11-16 21:08 ` [PATCH 01/14] x86/ticketlock: clean up types and accessors Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 02/14] x86/ticketlock: convert spin loop to C Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 03/14] x86/ticketlock: Use C for __ticket_spin_unlock Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 04/14] x86/ticketlock: make large and small ticket versions of spin_lock the same Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 05/14] x86/ticketlock: make __ticket_spin_lock common Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 06/14] x86/ticketlock: make __ticket_spin_trylock common Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 07/14] x86/spinlocks: replace pv spinlocks with pv ticketlocks Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 08/14] x86/ticketlock: collapse a layer of functions Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 09/14] xen/pvticketlock: Xen implementation for PV ticket locks Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 10/14] x86/pvticketlock: use callee-save for lock_spinning Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 11/14] x86/ticketlock: don't inline _spin_unlock when using paravirt spinlocks Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 12/14] x86/ticketlocks: when paravirtualizing ticket locks, increment by 2 Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 13/14] x86/ticketlock: add slowpath logic Jeremy Fitzhardinge
2010-11-16 21:08 ` [PATCH 14/14] x86/ticketlocks: tidy up __ticket_unlock_kick() Jeremy Fitzhardinge
[not found] ` <aa32da076143b8e13c23c1f589d7e6cbedb22907.1289940821.git.jeremy.fitzhardinge@citrix.com>
2010-11-17 8:11 ` [PATCH 09/14] xen/pvticketlock: Xen implementation for PV ticket locks Jan Beulich
[not found] ` <4CE39C3C0200007800022AE2@vpn.id2.novell.com>
2010-11-17 8:52 ` Jeremy Fitzhardinge
[not found] ` <4CE397E7.2010107@goop.org>
2010-11-17 9:57 ` [Xen-devel] " Jeremy Fitzhardinge
[not found] ` <4CE3A714.9010509@goop.org>
2010-11-17 10:34 ` Jan Beulich
[not found] ` <4CE3BDCF0200007800022BF1@vpn.id2.novell.com>
2010-11-17 17:41 ` Jeremy Fitzhardinge
2010-11-17 8:56 ` [PATCH 00/14] PV ticket locks without expanding spinlock Avi Kivity
[not found] ` <97ed99ae9160bdb6477284b333bd6708fb7a19cb.1289940821.git.jeremy.fitzhardinge@citrix.com>
2010-11-17 8:31 ` [PATCH 13/14] x86/ticketlock: add slowpath logic Jan Beulich
[not found] ` <4CE3A1060200007800022B04@vpn.id2.novell.com>
2010-11-17 8:52 ` Jeremy Fitzhardinge
[not found] ` <4CE397C8.9040901@goop.org>
2010-11-17 8:56 ` Jeremy Fitzhardinge
2010-11-17 8:58 ` Avi Kivity [this message]
2010-11-17 9:05 ` Jeremy Fitzhardinge
[not found] ` <4CE39AD2.9080606@goop.org>
2010-11-17 9:10 ` Avi Kivity
[not found] ` <4CE398A0.3040105@goop.org>
2010-11-17 9:08 ` Jeremy Fitzhardinge
[not found] ` <4CE39B7A.1080706@goop.org>
2010-11-17 9:34 ` Jan Beulich
2010-11-17 12:21 ` Peter Zijlstra
[not found] ` <1289996503.2109.728.camel@laptop>
2010-11-17 15:25 ` [Xen-devel] " Jeremy Fitzhardinge
2011-01-17 15:22 ` Srivatsa Vaddagiri
[not found] ` <20110117152222.GA19233@linux.vnet.ibm.com>
2011-01-19 16:23 ` Srivatsa Vaddagiri
2011-01-19 18:31 ` Jeremy Fitzhardinge
[not found] ` <4D372DEA.1060004@goop.org>
2011-01-19 18:39 ` Srivatsa Vaddagiri
[not found] ` <20110119183914.GB7235@linux.vnet.ibm.com>
2011-01-19 18:55 ` Jeremy Fitzhardinge
[not found] ` <4D37338E.8030509@goop.org>
2011-01-20 4:28 ` Srivatsa Vaddagiri
2011-01-20 9:52 ` Jan Beulich
[not found] ` <20110119162348.GA29900@linux.vnet.ibm.com>
2011-01-24 21:56 ` Jeremy Fitzhardinge
[not found] ` <4D3DF5A5.7070301@goop.org>
2011-02-18 17:03 ` Srivatsa Vaddagiri
[not found] ` <92d21a90d4e27db4b46dbacd58ef67719acd0185.1289940821.git.jeremy.fitzhardinge@citrix.com>
2011-01-11 17:21 ` [Xen-devel] [PATCH 01/14] x86/ticketlock: clean up types and accessors Konrad Rzeszutek Wilk
2011-01-19 16:44 ` [PATCH 00/14] PV ticket locks without expanding spinlock Srivatsa Vaddagiri
[not found] ` <20110119164432.GA30669@linux.vnet.ibm.com>
2011-01-19 17:07 ` [PATCH 1/3] debugfs: Add support to print u32 array Srivatsa Vaddagiri
2011-01-19 17:12 ` [PATCH 2/3] kvm hypervisor : Add hypercalls to support pv-ticketlock Srivatsa Vaddagiri
2011-01-19 17:17 ` [PATCH 3/3] kvm guest : Add support for pv-ticketlocks Srivatsa Vaddagiri
[not found] ` <20110119171239.GB726@linux.vnet.ibm.com>
2011-01-19 17:21 ` [PATCH 2/3] kvm hypervisor : Add hypercalls to support pv-ticketlock Peter Zijlstra
2011-01-19 17:23 ` Srivatsa Vaddagiri
[not found] ` <20110119172306.GA2863@linux.vnet.ibm.com>
2011-01-19 17:50 ` Peter Zijlstra
[not found] ` <1295457672.28776.144.camel@laptop>
2011-01-19 18:29 ` Srivatsa Vaddagiri
2011-01-19 18:53 ` Jeremy Fitzhardinge
[not found] ` <4D373340.60608@goop.org>
2011-01-20 11:42 ` Srivatsa Vaddagiri
2011-01-20 11:59 ` Srivatsa Vaddagiri
[not found] ` <20110120114246.GA11177@linux.vnet.ibm.com>
2011-01-20 17:49 ` Jeremy Fitzhardinge
[not found] ` <20110120115958.GB11177@linux.vnet.ibm.com>
2011-01-20 13:41 ` Peter Zijlstra
[not found] ` <1295530906.28776.171.camel@laptop>
2011-01-20 14:34 ` Srivatsa Vaddagiri
2011-01-20 17:56 ` Jeremy Fitzhardinge
[not found] ` <4D38774B.6070704@goop.org>
2011-01-21 14:02 ` Srivatsa Vaddagiri
[not found] ` <20110121140208.GA13609@linux.vnet.ibm.com>
2011-01-21 14:48 ` Rik van Riel
[not found] ` <4D399CBD.10506@redhat.com>
2011-01-22 6:14 ` Srivatsa Vaddagiri
[not found] ` <20110122061417.GA7258@linux.vnet.ibm.com>
2011-01-22 14:53 ` Rik van Riel
[not found] ` <4D3AEF7A.1050709@redhat.com>
2011-01-24 17:49 ` Jeremy Fitzhardinge
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=4CE3992E.2070406@redhat.com \
--to=avi@redhat.com \
--cc=JBeulich@novell.com \
--cc=dada1@cosmosbay.com \
--cc=hpa@zytor.com \
--cc=jeremy.fitzhardinge@citrix.com \
--cc=jeremy@goop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@polymtl.ca \
--cc=npiggin@kernel.dk \
--cc=peterz@infradead.org \
--cc=vatsa@linux.vnet.ibm.com \
--cc=virtualization@lists.linux-foundation.org \
--cc=xen-devel@lists.xensource.com \
--cc=xiyou.wangcong@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox