From: "Daniel P. Berrangé" <berrange@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Daniel P. Berrangé" <berrange@redhat.com>,
"Pierrick Bouvier" <pierrick.bouvier@oss.qualcomm.com>,
"Peter Maydell" <peter.maydell@linaro.org>
Subject: [PULL 3/4] io/channel-socket: Document why we can ignore socket_set_cork() errors
Date: Tue, 7 Jul 2026 18:50:26 +0100 [thread overview]
Message-ID: <20260707175027.3029620-4-berrange@redhat.com> (raw)
In-Reply-To: <20260707175027.3029620-1-berrange@redhat.com>
From: Peter Maydell <peter.maydell@linaro.org>
In qio_channel_socket_set_cork(), we call socket_set_cork() but
ignore its success/failure return value. This is OK because we are
implementing qio_channel_set_cork() here, and that function's API
documentation states that the setting is merely a hint. So even if
setting TCP_CORK on the underlying socket fails for some reason, this
isn't going to be a problem for the caller; correspondingly the
qio_channel_set_cork() function has no error return.
Add a comment in qio_channel_socket_set_cork() explaining why we
don't check for errors.
Resolves: https://gitlab.com/qemu-project/qemu/-/work_items/2254
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
io/channel-socket.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/io/channel-socket.c b/io/channel-socket.c
index ea2ec84108..12773b832c 100644
--- a/io/channel-socket.c
+++ b/io/channel-socket.c
@@ -946,6 +946,12 @@ qio_channel_socket_set_cork(QIOChannel *ioc,
QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
int v = enabled ? 1 : 0;
+ /*
+ * We can ignore the error return from socket_set_cork() because
+ * at the QIO API level set_cork is only a hint, and so
+ * qio_channel_set_cork() can never fail even if it didn't
+ * actually do anything.
+ */
socket_set_cork(sioc->fd, v);
}
--
2.55.0
next prev parent reply other threads:[~2026-07-07 17:54 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-07 17:50 [PULL 0/4] Misc patches queues Daniel P. Berrangé
2026-07-07 17:50 ` [PULL 1/4] crypto/x509-utils: fix gnutls error code in crt_init failure path Daniel P. Berrangé
2026-07-07 17:50 ` [PULL 2/4] util/filemonitor-inotify: Use QEMU_LOCK_GUARD() Daniel P. Berrangé
2026-07-07 17:50 ` Daniel P. Berrangé [this message]
2026-07-07 17:50 ` [PULL 4/4] docs: outline some guidelines for security classification Daniel P. Berrangé
2026-07-09 5:22 ` Michael S. Tsirkin
2026-07-09 5:52 ` Michael S. Tsirkin
2026-07-09 8:03 ` [PULL 0/4] Misc patches queues Daniel P. Berrangé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260707175027.3029620-4-berrange@redhat.com \
--to=berrange@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=pierrick.bouvier@oss.qualcomm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.