Benjamin Herrenschmidt <[EMAIL PROTECTED]> wrote: > > Take a real life example: > > drivers/message/fusion/mptbase.c > > /* Disable interrupts! */ > CHIPREG_WRITE32(&ioc->chip->IntMask, 0xFFFFFFFF); > > ioc->active = 0; > synchronize_irq(pdev->irq); > > And we aren't in a spinlock here. > > That's just a random example grepped.... I think I see a few more. Then, > some drivers like tg3 actually do an smp_mb() before calling > synchronize_irq(). But then, some don't.
I really don't see what the point of the barrier would be here. Barriers are generally useless unless you have a counter-part on the other side. The counterpart here is presumably the interrupt handler, which should be terminated by the IO write above regardless of the memory barrier. Of course I might have missed your point. If so please give a description like this for the race that you see: CPU1 CPU2 disable IRQ whatever the race is synchronize_irq > I think trying to have all drivers be correct here is asking for > trouble, we'd rather have synchronize_irq() be uber-safe. It's not like > it was used in hot path anyway. While in general I'd agree with you about give latitude to drivers, memory barriers I think is something that we can't afford to. The reason is that memory barries tend to come in pairs, e.g., CPU1 CPU2 write A wmb write B read B rmb read A Taking away either barrier would render the other useless. So whenever we add only one barrier for the benefit of driver writers who don't bother to think about barriers we may not be helping them at all. In any case, such writers should use easier tools like spin locks rather than trying to go lockless. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev