]> git.baikalelectronics.ru Git - kernel.git/commit
parisc: fix dino/gsc interrupts
authorJames Bottomley <James.Bottomley@HansenPartnership.com>
Thu, 2 Dec 2010 23:36:47 +0000 (23:36 +0000)
committerKyle McMartin <kyle@mcmartin.ca>
Sat, 4 Dec 2010 16:14:32 +0000 (11:14 -0500)
commit64a99b0327fb615b5677dcb973df76800190ee52
tree83d7b45f4a1d8a62e51f730283dd443c8a0a5492
parent874115adfd6ef0c29dafbc8f71b01df4398f4e3d
parisc: fix dino/gsc interrupts

The essential problem we're currently having is that dino (and gsc) is a
cascaded CPU interrupt.  Under the old __do_IRQ() handler, our CPU
interrupts basically did an ack followed by an end.  In the new scheme,
we replaced them with level handlers which do a mask, an ack and then an
unmask (but no end).  Instead, with the renaming of end to eoi, we
actually want to call the percpu flow handlers, because they actually
have all the characteristics we want.

This patch does the conversion and gets my C360 booting again.

Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
arch/parisc/kernel/irq.c