Skip to content
Snippets Groups Projects
Commit e052c6d1 authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman
Browse files

tty: Use unbound workqueue for all input workers


The commonly accepted wisdom that scheduling work on the same cpu
that handled interrupt i/o benefits from cache-locality is only
true if the cpu is idle (since bound kworkers are often the highest
vruntime and thus the lowest priority).

Measurements of scheduling via the unbound queue show lowered
worst-case latency responses of up to 5x over bound workqueue, without
increase in average latency or throughput.

pty i/o test measurements show >3x (!) reduced total running time; tests
previously taking ~8s now complete in <2.5s.

Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e176058f
No related branches found
No related tags found
No related merge requests found
...@@ -403,7 +403,7 @@ void tty_schedule_flip(struct tty_port *port) ...@@ -403,7 +403,7 @@ void tty_schedule_flip(struct tty_port *port)
* flush_to_ldisc() sees buffer data. * flush_to_ldisc() sees buffer data.
*/ */
smp_store_release(&buf->tail->commit, buf->tail->used); smp_store_release(&buf->tail->commit, buf->tail->used);
schedule_work(&buf->work); queue_work(system_unbound_wq, &buf->work);
} }
EXPORT_SYMBOL(tty_schedule_flip); EXPORT_SYMBOL(tty_schedule_flip);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment