summaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2021-01-19 18:14:20 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2021-01-20 16:48:48 -0800
commit15ea8ae8e03fdb845ed3ff5d9f11dd5f4f60252c (patch)
tree0dcca5c79022902ae5b7680d3ad5517ddef00c60 /drivers/ata
parent64a69892afadd6fffaeadc65427bb7601161139d (diff)
downloadlinux-stable-15ea8ae8e03fdb845ed3ff5d9f11dd5f4f60252c.tar.gz
linux-stable-15ea8ae8e03fdb845ed3ff5d9f11dd5f4f60252c.tar.bz2
linux-stable-15ea8ae8e03fdb845ed3ff5d9f11dd5f4f60252c.zip
tty: teach n_tty line discipline about the new "cookie continuations"
With the conversion to do the tty ldisc read operations in small chunks, the n_tty line discipline became noticeably slower for throughput oriented loads, because rather than read things in up to 2kB chunks, it would return at most 64 bytes per read() system call. The cost is mainly all in the "do system calls over and over", not really in the new "copy to an extra kernel buffer". This can be fixed by teaching the n_tty line discipline about the "cookie continuation" model, which the chunking code supports because things like hdlc need to be able to handle packets up to 64kB in size. Doing that doesn't just get us back to the old performace, but to much better performance: my stupid "copy 10MB of data over a pty" test program is now almost twice as fast as it used to be (going down from 0.1s to 0.054s). This is entirely because it now creates maximal chunks (which happens to be "one byte less than one page" due to how we do the circular tty buffers). NOTE! This case only handles the simpler non-icanon case, which is the one where people may care about throughput. I'm going to do the icanon case later too, because while performance isn't a major issue for that, there may be programs that think they'll always get a full line and don't like the 64-byte chunking for that reason. Such programs are arguably buggy (signals etc can cause random partial results from tty reads anyway), and good programs will handle such partial reads, but expecting everybody to write "good programs" has never been a winning policy for the kernel.. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/ata')
0 files changed, 0 insertions, 0 deletions