We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61f6cb commit 8b7ab8eCopy full SHA for 8b7ab8e
net/core/stream.c
@@ -23,9 +23,13 @@
23
24
/**
25
* sk_stream_write_space - stream socket write_space callback.
26
- * @sk: socket
+ * @sk: pointer to the socket structure
27
*
28
- * FIXME: write proper description
+ * This function is invoked when there's space available in the socket's
29
+ * send buffer for writing. It first checks if the socket is writable,
30
+ * clears the SOCK_NOSPACE flag indicating that memory for writing
31
+ * is now available, wakes up any processes waiting for write operations
32
+ * and sends asynchronous notifications if needed.
33
*/
34
void sk_stream_write_space(struct sock *sk)
35
{
0 commit comments