• Linus Torvalds's avatar
    tty_buffer: get rid of 'seen_tail' logic in flush_to_ldisc · 81de916f
    Linus Torvalds authored
    The flush_to_ldisc() work entry has special logic to notice when it has
    seen the original tail of the data queue, and it avoids continuing the
    flush if it sees that _original_ tail rather than the current tail.
    
    This logic can trigger in case somebody is constantly adding new data to
    the tty while the flushing is active - and the intent is to avoid
    excessive CPU usage while flushing the tty, especially as we used to do
    this from a softirq context which made it non-preemptible.
    
    However, since we no longer re-arm the work-queue from within itself
    (because that causes other trouble: see commit a5660b41 "tty: fix
    endless work loop when the buffer fills up"), this just leads to
    possible hung tty's (most easily seen in SMP and with a test-program
    that floods a pty with data - nobody seems to have reported this for any
    real-life situation yet).
    
    And since the workqueue isn't done from timers and softirq's any more,
    it's doubtful whether the CPU usea...
    81de916f
tty_buffer.c 13.7 KB