[POWERPC] Fix performance regression in IRQ radix tree locking
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 28 Aug 2006 01:17:37 +0000 (11:17 +1000)
committerPaul Mackerras <paulus@samba.org>
Wed, 30 Aug 2006 00:36:16 +0000 (10:36 +1000)
When reworking the powerpc irq code, I figured out that we were using
the radix tree in a racy way. As a temporary fix, I put a spinlock in
there. However, this can have a significant impact on performances. This
patch reworks that to use a smarter technique based on the fact that
what we need is in fact a rwlock with extremely rare writers (thus
optimized for the read path).

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>

No differences found