atom feed8 messages in org.freebsd.freebsd-smpRe: MPrellock_edx
FromSent OnAttachments
Chee Wei NgFeb 1, 2000 5:05 pm 
Alfred PerlsteinFeb 1, 2000 5:49 pm 
Matthew DillonFeb 1, 2000 6:30 pm 
Alfred PerlsteinFeb 1, 2000 7:20 pm 
Alfred PerlsteinFeb 1, 2000 7:24 pm 
Chee Wei NgFeb 1, 2000 8:08 pm 
Matthew DillonFeb 1, 2000 8:22 pm 
Chee Wei NgFeb 1, 2000 8:28 pm 
Subject:Re: MPrellock_edx
From:Chee Wei Ng (scip@yahoo.com)
Date:Feb 1, 2000 8:28:07 pm
List:org.freebsd.freebsd-smp

--- Matthew Dillon <dil@apollo.backplane.com> wrote:

I discussed this issue with Linus after someone from the linux kernel group brought it up. Basically we have adopted the same thing that linux uses.

Under Intel, the following is true:

* Writes are buffered but are committed to memory in the same order they were issued. Thus write<->write conflicts are not an issue.

* Speculative reads may occur, but they occur from main memory into the L1 cache and thus still adhere to L1 cache protocols. Thus speculative reads are not an issue.

* The cpu may reorder non-conflicting reads. A non-conflicting read may be reordered from *before* a write to *after* a write, or from *after* a write to *before* a write.

This is an issue. This is the ONLY issue with intel hardware.

The purpose of the locked instruction is to prevent any possibility of reads being reordered from to after the MP lock is released.

So, the issue is non-conflicting re-ordered read. But, I still don't see why this issue has impact on the CS. Further illustration with an example will be grateful. The following solution will be cleared if the above issue is really an issue.

There has been a huge amount of misinformation on the issue. I looked at both the linux kernel and the Freebsd mail archives and 90% of the messages posted entertaining one opinion or another were just plain wrong (and Linus agrees with me). We don't know whether the read reordering issue is real or not. We do know that none of the other issues brought up were real.

We aren't taking any chances with the read re-ordering issue and so we have a locked instruction.

The reason we use 0(%esp) for the locked memory address is because there is nearly a 100% chance that that address is already in our processor's L1 cache *AND* that we have (via the hardware cache protocol) exclusive ownership of the address, thus minimizing the cost of running the instruction.

The reason we do not use a locked instruction to actually release the MP lock is because:

(A) we don't have to, writes are ordered and we do not care if reads are reordered to occur before the write releasing the lock is committed.

(B) because if there is another processor trying for the lock we may not have exclusive ownership of the lock address in our L1 cache (the other cpu might), costing us a huge stall due to the way the hardware cache coherency protocol work.

NgCW

To Unsubscribe: send mail to majo@FreeBSD.org with "unsubscribe freebsd-smp" in the body of the message