lkml.org 
[lkml]   [2014]   [Jun]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v11 09/16] qspinlock, x86: Allow unfair spinlock in a virtual guest
On Wed, Jun 11, 2014 at 12:54:02PM +0200, Peter Zijlstra wrote:
> > @@ -252,6 +260,18 @@ void queue_spin_lock_slowpath(struct qspinlock *lock, u32 val)
> >
> > BUILD_BUG_ON(CONFIG_NR_CPUS >= (1U << _Q_TAIL_CPU_BITS));
> >
> > +#ifdef CONFIG_VIRT_UNFAIR_LOCKS
> > + /*
> > + * A simple test and set unfair lock
> > + */
> > + if (static_key_false(&virt_unfairlocks_enabled)) {
> > + cpu_relax(); /* Relax after a failed lock attempt */
>
> Meh, I don't think anybody can tell the difference if you put that in or
> not, therefore don't.
>
> > + while (!queue_spin_trylock(lock))
> > + cpu_relax();
> > + return;
> > + }
> > +#endif /* CONFIG_VIRT_UNFAIR_LOCKS */
>
> If you're really worried about those upper 24bits, you can always clear
> them when you get here.

I don't think its a problem at all; flipping the static_key requires
stop_machine, which guarantees us that there are no spinlocks held. So I
think you can actually BUG_ON() the upper 24bits.
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2014-06-11 14:21    [W:0.069 / U:1.264 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site