Hi,
01000101 wrote:I was wondering what would be the advantage of having a fully poll-driven OS? no interrupts of any sort.
The advantage would be latency - for e.g. when a transfer completes you'd know almost immediately, and wouldn't need to wait for IRQ handling overhead (trace cache flush, saving some registers, loading some registers, sending EOI, etc).
01000101 wrote:Would it really be worth 'downgrading' an OS if it was only doing a handful of things, like say network support

That depends. For e.g. for a special purpose OS on an embedded system where the number of things being done is equal to the number of CPUs, you could get rid of IRQs and have no scheduler at all and get better latency.
Of course if you're using polling and trying to do more than one thing (per CPU) at a time, then your latency will depend on the scheduler (e.g. how long until a task gets CPU time again and checks whatever it's polling). In this case latency will be much much worse than using IRQs.
Also, for 80x86 no IRQs means nothing to take the CPU out of a sleep state (e.g. the HLT instruction) and more power consumption/heat while doing nothing (except waiting for something to happen).
Lastly, 80x86 hardware is designed to tolerate some latency (e.g. NICs with ring buffers and "almost empty" or "almost full" IRQs, instead of "empty" and "full" IRQs), so you don't really gain much by sacrificing a CPU for reduced latency.
In general, polling might be beneficial in special situations, but mostly it's used by lazy programmers who couldn't be bothered to do things properly...
However, one of those "special situations" is very high speed NICs, but in this case you'd only use polling when necessary (e.g. switch over to "polling mode" once a certain load is reached, and switch back to "IRQ mode" if the load reduces) to avoid wasting CPU time when there's no reason to.
Cheers,
Brendan