Revision d16cd297d288e48482c3c261db434a2e13bd9f20 authored by James Bottomley on 02 December 2010, 23:36:47 UTC, committed by Kyle McMartin on 04 December 2010, 16:14:32 UTC
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>
1 parent 67bace7
History
File Mode Size
Kconfig -rw-r--r-- 828 bytes
Makefile -rw-r--r-- 166 bytes
bitmap.c -rw-r--r-- 6.8 KB
dir.c -rw-r--r-- 11.2 KB
file.c -rw-r--r-- 1.1 KB
inode.c -rw-r--r-- 17.1 KB
itree_common.c -rw-r--r-- 7.7 KB
itree_v1.c -rw-r--r-- 1.4 KB
itree_v2.c -rw-r--r-- 1.9 KB
minix.h -rw-r--r-- 3.2 KB
namei.c -rw-r--r-- 5.5 KB

back to top