public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vsock.7: clarify send(2)/recv(2) families of system calls
@ 2017-12-12  9:34 Stefan Hajnoczi
       [not found] ` <20171212093448.8192-1-stefanha-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Hajnoczi @ 2017-12-12  9:34 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA
  Cc: Dexuan Cui, Michael Kerrisk, Jorgen Hansen, Stefan Hajnoczi

Sockets support both read(2)/write(2) and send(2)/recv(2) system calls.
Each of these is actually a family of multiple system calls such as
send(2), sendfile(2), sendmsg(2), sendmmsg(2), and sendto(2).

This patch claries which families of system calls can be used.

Signed-off-by: Stefan Hajnoczi <stefanha-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
 man7/vsock.7 | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/man7/vsock.7 b/man7/vsock.7
index b6c394302..628200aa8 100644
--- a/man7/vsock.7
+++ b/man7/vsock.7
@@ -47,11 +47,15 @@ address using
 and then calling
 .BR listen (2).
 .PP
-Data is transferred using the usual
+Data is transmitted using the
 .BR send (2)
-and
+or
+.BR write (2)
+families of system calls and data is received using the
 .BR recv (2)
-family of socket system calls.
+or
+.BR read (2)
+families of system calls.
 .SS Address format
 A socket address is defined as a combination of a 32-bit Context Identifier
 (CID) and a 32-bit port number.
@@ -163,12 +167,13 @@ Operation not supported.
 This includes:
 the
 .B MSG_OOB
-flag that is not implemented for
-.BR sendmsg (2)
-and
+flag that is not implemented for the
+.BR send (2)
+family of syscalls and
 .B MSG_PEEK
-for
-.BR recvmsg (2).
+for the
+.BR recv (2)
+family of syscalls.
 .TP
 .B EPROTONOSUPPORT
 Invalid socket protocol number.
-- 
2.14.3

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] vsock.7: clarify send(2)/recv(2) families of system calls
       [not found] ` <20171212093448.8192-1-stefanha-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2017-12-12 18:13   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2017-12-12 18:13 UTC (permalink / raw)
  To: Stefan Hajnoczi, linux-man-u79uwXL29TY76Z2rM5mHXA
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, Dexuan Cui, Jorgen Hansen

On 12/12/2017 10:34 AM, Stefan Hajnoczi wrote:
> Sockets support both read(2)/write(2) and send(2)/recv(2) system calls.
> Each of these is actually a family of multiple system calls such as
> send(2), sendfile(2), sendmsg(2), sendmmsg(2), and sendto(2).
> 
> This patch claries which families of system calls can be used.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

Thanks, Stefan. Patch applied.

Cheers,

Michael


> ---
>  man7/vsock.7 | 21 +++++++++++++--------
>  1 file changed, 13 insertions(+), 8 deletions(-)
> 
> diff --git a/man7/vsock.7 b/man7/vsock.7
> index b6c394302..628200aa8 100644
> --- a/man7/vsock.7
> +++ b/man7/vsock.7
> @@ -47,11 +47,15 @@ address using
>  and then calling
>  .BR listen (2).
>  .PP
> -Data is transferred using the usual
> +Data is transmitted using the
>  .BR send (2)
> -and
> +or
> +.BR write (2)
> +families of system calls and data is received using the
>  .BR recv (2)
> -family of socket system calls.
> +or
> +.BR read (2)
> +families of system calls.
>  .SS Address format
>  A socket address is defined as a combination of a 32-bit Context Identifier
>  (CID) and a 32-bit port number.
> @@ -163,12 +167,13 @@ Operation not supported.
>  This includes:
>  the
>  .B MSG_OOB
> -flag that is not implemented for
> -.BR sendmsg (2)
> -and
> +flag that is not implemented for the
> +.BR send (2)
> +family of syscalls and
>  .B MSG_PEEK
> -for
> -.BR recvmsg (2).
> +for the
> +.BR recv (2)
> +family of syscalls.
>  .TP
>  .B EPROTONOSUPPORT
>  Invalid socket protocol number.
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-12 18:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-12  9:34 [PATCH] vsock.7: clarify send(2)/recv(2) families of system calls Stefan Hajnoczi
     [not found] ` <20171212093448.8192-1-stefanha-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-12-12 18:13   ` Michael Kerrisk (man-pages)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox