I’m not an expert, but I suppose as this patch is on the kernel and not on the game, this will still improve any connection your kernel needs to do, like sending telemetry of your anti-cheat engine and other apps that make TCP requests while you are playing online games.
Opening the connections is one thing but resends and stream ordering can also cause issues since they might delay the latest information reaching the user space application even if the packet for them has actually arrived just because some earlier packet has not. There can also be issues with implementations waiting for enough data to be available before sending a packet.
Now, gamers will want to play on Linux for the low latency on online games.
Before that you have to download it. Well, using p2p mechanisms.
I always download my games before playing them. I don’t know what you mean here.
I think they mean peer to peer arrr
Online games don’t typically have many concurrent connections, though, do they? Just the one.
I’m not an expert, but I suppose as this patch is on the kernel and not on the game, this will still improve any connection your kernel needs to do, like sending telemetry of your anti-cheat engine and other apps that make TCP requests while you are playing online games.
Most low latency use cases in games use UDP, not TCP.
Yeah, that would make sense as opening TCP connections is not really viable for low latency, hahaha.
Opening the connections is one thing but resends and stream ordering can also cause issues since they might delay the latest information reaching the user space application even if the packet for them has actually arrived just because some earlier packet has not. There can also be issues with implementations waiting for enough data to be available before sending a packet.