David Miller wrote:
From: Daniel Hellstrom <daniel@xxxxxxxxxxx>
Date: Thu, 16 Dec 2010 15:24:02 +0100
Why is IRQ15, the non-maskable IRQ, used for cross calls? Would it not
be safer to use IRQ14?
Since IRQ15 is non-maskable it will even interrupt spin_lock_irqsave()
protected reqions. I assume it is safe as long as the cross call
function run in IRQ context does not try to take the same spinlock,
for that would create a dead lock I believe. For example atomic_add()
on SPARC32 below is implemented using one of four global spinlocks,
does that mean that we can not use atomic functions at all from within
a cross call function?
We don't want operations like TLB and cache flushes to be blocked
by IRQ disabling.
For other operations, we should reschedule it to a software interrupt
at a lower level than 15, but nobody has done the work to implement
this yet.
I have made an first implementation on the LEON, the hangs that I could
trigger quite easily are now gone and I can run my system for several
days without rather heavy load, however I still have some problems on
another board, but I don't think they are directly related...
Please look at my implementation suggestion (patches in separate email
soon), I have tried to separate the patches so that it will be easier to
implement it for other CPU models, however I don't really know the other
architectures... it would be nice if someone else could have look at it
and someone how has the hardware...
I have removed the use of smp_cross_call in smp_call_function* and
instead used the generic implementation by defining
USE_GENERIC_SMP_HELPERS, I think this is the cleanest approach.
Thanks for applying my GRETH patches on the devnet list before,
Daniel
--
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html