]> git.karo-electronics.de Git - karo-tx-linux.git/commit
arch/tile: use interrupt critical sections less
authorChris Metcalf <cmetcalf@tilera.com>
Tue, 27 Mar 2012 19:40:20 +0000 (15:40 -0400)
committerChris Metcalf <cmetcalf@tilera.com>
Fri, 30 Mar 2012 22:55:15 +0000 (18:55 -0400)
commitaf8168fc5055afef6ef029e879669ede39a9bca0
tree524e9f7fbc11da7e3513f8d247d23374b4fa3496
parent78e462e428dcd8e10175959af1c81b52a86a1faf
arch/tile: use interrupt critical sections less

In general we want to avoid ever touching memory while within an
interrupt critical section, since the page fault path goes through
a different path from the hypervisor when in an interrupt critical
section, and we carefully decided with tilegx that we didn't need
to support this path in the kernel.  (On tilepro we did implement
that path as part of supporting atomic instructions in software.)

In practice we always need to touch the kernel stack, since that's
where we store the interrupt state before releasing the critical
section, but this change cleans up a few things.  The IRQ_ENABLE
macro is split up so that when we want to enable interrupts in a
deferred way (e.g. for cpu_idle or for interrupt return) we can
read the per-cpu enable mask before entering the critical section.
The cache-migration code is changed to use interrupt masking instead
of interrupt critical sections.  And, the interrupt-entry code is
changed so that we defer loading "tp" from per-cpu data until after
we have released the interrupt critical section.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
arch/tile/include/asm/irqflags.h
arch/tile/kernel/entry.S
arch/tile/kernel/intvec_64.S
arch/tile/mm/init.c
arch/tile/mm/migrate.h
arch/tile/mm/migrate_32.S
arch/tile/mm/migrate_64.S