On Thu, 7 Dec 2006, Sergei Shtylyov wrote: > It's not really related as 8259 is programmed to generate vectors 0x20 to > 0x2F for x86 but the the IRQs start from zero anyway... In Linux most platforms define IRQ numbers in the sense of physical lines (or wires if you prefer) routed to inputs of interrupt controllers rather than vectors which may or may not be used by a given platform (and to complicate things further, the presence of which may be software-configurable). Of course if a message passing concept is used for interrupt delivery (be it a simple chain or a more complicated protocol), then a different numbering scheme may be required and exposing vectors may be a necessity. Even with the i8259A there is no need to use its vector at all if the processor being interrupted does not issue INTA cycles itself. Maciej