Re: [patch] cpufreq: mark cpufreq_tsc() as core_initcall_sync
From: Oleg Nesterov
Date: Wed Nov 29 2006 - 15:17:13 EST
On 11/29, Paul E. McKenney wrote:
>
> 1. The spinlock version will be easier for most people to understand.
>
> 2. The atomic version has better read-side overhead -- probably
> roughly twice as fast on most machines.
synchronize_xxx() should be a little bit faster too
> 3. The atomic version will have better worst-case latency under
> heavy read-side load -- at least assuming that the underlying
> hardware is fair.
>
> 4. The spinlock version would have better fairness in face of
> synchronize_xxx() overload.
Not sure I understand (both 3 and 4) ...
> 5. Neither version can be used from irq (but the same is true of
> SRCU as well).
Hmm... SRCU can't be used from irq, yes. But I think that both versions
(spinlock needs _irqsave) can ?
> If I was to choose, I would probably go with the easy-to-understand
> case, which would push me towards the spinlocks. If there is a
> read-side performance problem, then the atomic version can be easily
> resurrected from the LKML archives. Maybe have a URL in a comment
> pointing to the atomic implementation? ;-)
But it is so ugly to use spinlock to impement the memory barrier semantics!
Look,
void synchronize_xxx(struct xxx_struct *sp)
{
int idx;
mutex_lock(&sp->mutex);
spin_lock();
idx = sp->completed++ & 0x1;
spin_unlock();
wait_event(sp->wq, !sp->ctr[idx]);
spin_lock();
spin_unlock();
mutex_unlock(&sp->mutex);
}
Yes, it looks simpler. But why do we need an empty critical section? it is
a memory barrier, we can (should?) instead do
/* for wait_event() above */
smp_rmb();
spin_unlock_wait();
smp_mb();
Then,
spin_lock();
idx = sp->completed++ & 0x1;
spin_unlock();
means
idx = sp->completed & 0x1;
spin_lock();
sp->completed++
spin_unlock();
Again, this is a barrier, not a lock! ->completed protected by ->mutex,
sp->completed++;
smp_mb();
spin_unlock_wait(&sp->lock);
/* for wait_event() below */
smp_rmb();
So in fact spinlock_t is used to make inc/dec of ->ctr atomic. Doesn't
we have atomic_t for that ?
That said, if you both think it is better - please send a patch. This is
a matter of taste, and I am far from sure my taste is the best :)
> > Note: I suspect that Documentation/ lies about atomic_add_unless(), see
> >
> > http://marc.theaimsgroup.com/?l=linux-kernel&m=116448966030359
>
> Hmmm... Some do and some don't:
>
> i386: The x86 semantics, as I understand them, are in fact equivalent
> to having a memory barrier before and after the operation.
> However, the documentation I have is not as clear as it might be.
Even i386 has non-empty mb(), but atomic_read() is a plain LOAD.
> So either the docs or several of the architectures need fixing.
I think its better to fix the docs.
Oleg.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/