> Back in the old days, when a serial driver pushed characters up to the > tty layer it didn't immediately wake up a process that was blocking on > a read(). AFAICT, that didn't happen until the next system tick. I'm > not sure if that was just because the scheduler wasn't called until a > tick happened, or if there was some intermediate tty-layer > worker-thread that had to run. Historically the interrupt handler tried to get out of the interrupt as fast as possible and to do the minimum instruction count, because a 56K modem on a 486 with a typical 16450A UART was *tight* and also a use case everyone cared about. So historically the code worked on the basis that there were two buffers per tty. Each timer tick the kernel flipped the buffers over (hence the legancy flip naming here and thre), and processed the data. We do need low latency to the drivers, for FIFO setting, DMA watermarks and for some USB dongles for configuring the packetising Alan -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html