From: Hugo Landau Date: Thu, 9 Nov 2023 07:37:36 +0000 (+0000) Subject: Fix nit X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02898d4b6f9f100e65f83e9cd8f24699a85dca84;p=thirdparty%2Fopenssl.git Fix nit Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/21795) --- diff --git a/doc/designs/quic-design/server/quic-polling.md b/doc/designs/quic-design/server/quic-polling.md index 9c11db88fc7..30eca9ad5a6 100644 --- a/doc/designs/quic-design/server/quic-polling.md +++ b/doc/designs/quic-design/server/quic-polling.md @@ -125,8 +125,8 @@ contain a large number of design issues: - There are separate `EPOLL_CTL_ADD` and `EPOLL_CTL_MOD` calls which are needed to add a new FD registration and modify an existing FD registration, when - most of the time what is desired is an “upsert” call. Thus callers have to - track whether an FD has already been added or not. + most of the time what is desired is an “upsert” (update or inser) call. Thus + callers have to track whether an FD has already been added or not. - Only one FD can be registered, modified, or unregistered per syscall, rather than several FDs at once (syscall overhead).