lkml.org 
[lkml]   [2006]   [Jul]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [patch] spinlocks: remove 'volatile'
Date
On Friday 07 July 2006 17:49, J.A. Magallón wrote:
> On Fri, 7 Jul 2006 17:22:22 -0500 (CDT), Chase Venters
<chase.venters@clientec.com> wrote:
> > > .L7:
> > > movl $1, mtx <=========
> > > movl spinvar, %eax
> > > movl $0, mtx <=========
> > > testl %eax, %eax
> > > jne .L7
> > > popl %ebp
> > > ret
> >
> > NO! It's not better. You're still not syncing or locking the bus! If you
> > refer to the fact that the "movl $1" has magically appeared, that's
> > because you've just PAPERED OVER THE PROBLEM WITH "volatile", which is
> > _exactly_ what Linus is telling you NOT TO DO.
>
> BTW, I really don't mind if a given architecnture has to lock the bus or
> say a prayer to Budha to reload a variable. I want it to be reloaded at
> every (or a certain, in case of a (volatile)mtx cast) usage. The compiler
> is the responsible of knowing what to do. What if nextgen P4 Xeon do not
> need a bus lock ? Will you rewrite the kernel ?

You are missing the point. Your code is obviously trying to implement locks,
which is why you've called your functions lock() and unlock(). It is
impossible, on any architecture, to implement correct locks in pure C. Your
locks are incapable of working in the kernel _or_ in user space.

Barriers are a different but related point. If you want to know more about
barriers, and why they exist, please read Documentation/memory-barriers.txt
in full. (FYI, Locked bus operations on x86 imply memory barriers.)

Locks are supposed to prevent sections of your code from being interrupted by
something that touches the same data. Because both the compiler and the
processor reserve the right to re-order your loads and stores, any lock that
does not form a memory barrier both for the CPU and for the compiler is
broken. Because you cannot form a CPU memory barrier from C (much less the
ATOMIC COMPARE AND SWAP you need to implement a lock), any lock implemented
in pure C is broken by definition.

Your code is wrong. Barring some fundamental change to the way things work,
locks and/or barriers are always going to be necessary.

Your usage of 'volatile' of course changes the generated code output. It will
force the compiler to reload the variable. The problem with your lock code is
that reloading the variable _IS NOT ENOUGH_. Hence your usage of volatile is
a broken way to paper over the problem.

'volatile' in general, for the kernel, is wrong because it isn't specific
enough and it causes the compiler to generate bad code.

But hey, maybe some day we'll all be proven wrong. Some magical new computer
architecture will appear, and on that day, we will rewrite the kernel.

Thanks,
Chase
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-07-08 01:23    [W:0.125 / U:0.144 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site