Re: [patch] spinlocks: remove 'volatile'

From: Arjan van de Ven
Date: Sat Jul 08 2006 - 03:26:46 EST



>
> __forceinline void Lock(volatile LONG *hPtr)
> {
> int iValue;
>
> for (;;) {
> iValue = _InterlockedExchange((LPLONG)hPtr, 1);
> if (iValue == 0)
> return;
> while (*hPtr);
> }
> }
>
> Please show me how I can write this to spinlock without using volatile.

this code is broken, at the very minimum that while (*hPtr); needs to be
"while (*hPtr) cpu_relax();" for hardware reasons.
At which point you can drop the volatile entirely without any change.



-
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/