All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael Kerrisk (man-pages)" <mtk.manpages@gmail.com>
To: Alejandro Colomar <alx.manpages@gmail.com>
Cc: mtk.manpages@gmail.com, linux-man@vger.kernel.org
Subject: Re: [PATCH v2 10/10] socketcall.2: Use syscall(SYS_...); for system calls without a wrapper
Date: Thu, 10 Jun 2021 10:27:13 +1200	[thread overview]
Message-ID: <93f83bcc-4029-fedb-457c-8b0dd0c2ffdf@gmail.com> (raw)
In-Reply-To: <20210524181947.459437-10-alx.manpages@gmail.com>

Hi Alex,

On 5/25/21 6:19 AM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>

Applied.

Thanks,

Michael


> ---
>  man2/socketcall.2 | 16 +++++++++-------
>  1 file changed, 9 insertions(+), 7 deletions(-)
> 
> diff --git a/man2/socketcall.2 b/man2/socketcall.2
> index 8ef3d65d3..883c2aafe 100644
> --- a/man2/socketcall.2
> +++ b/man2/socketcall.2
> @@ -27,13 +27,18 @@
>  socketcall \- socket system calls
>  .SH SYNOPSIS
>  .nf
> -.B #include <linux/net.h>
> +.BR "#include <linux/net.h>" "        /* Definition of " SYS_* " constants */"
> +.BR "#include <sys/syscall.h>" "      /* Definition of " SYS_socketcall " */"
> +.B #include <unistd.h>
>  .PP
> -.BI "int socketcall(int " call ", unsigned long *" args );
> +.BI "int syscall(SYS_socketcall, int " call ", unsigned long *" args );
>  .fi
>  .PP
>  .IR Note :
> -There is no glibc wrapper for this system call; see NOTES.
> +glibc provides no wrapper for
> +.BR socketcall (),
> +necessitating the use of
> +.BR syscall (2).
>  .SH DESCRIPTION
>  .BR socketcall ()
>  is a common kernel entry point for the socket system calls.
> @@ -156,10 +161,6 @@ T}
>  This call is specific to Linux, and should not be used in programs
>  intended to be portable.
>  .SH NOTES
> -Glibc does not provide a wrapper for this system call;
> -in the unlikely event that you want to call it directly, do so using
> -.BR syscall (2).
> -.PP
>  On some architectures\(emfor example, x86-64 and ARM\(emthere is no
>  .BR socketcall ()
>  system call; instead
> @@ -198,3 +199,4 @@ and also provides a (very) small performance improvement.
>  .BR shutdown (2),
>  .BR socket (2),
>  .BR socketpair (2)
> +
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

  reply	other threads:[~2021-06-09 22:28 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-21 23:25 [PATCH 00/10] man2: SYNOPSIS: Use syscall, and fix includes Alejandro Colomar
2021-05-21 23:25 ` [PATCH 01/10] open.2: Remove unused <sys/stat.h> Alejandro Colomar
2021-05-21 23:25 ` [PATCH 02/10] rt_sigqueueinfo.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-05-21 23:25 ` [PATCH 04/10] seccomp.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 05/10] set_thread_area.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 06/10] set_tid_address.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 07/10] sgetmask.2: " Alejandro Colomar
2021-05-21 23:25 ` [PATCH 08/10] shmop.2: Remove unused include Alejandro Colomar
2021-05-21 23:25 ` [PATCH 09/10] sigprocmask.2: Use syscall(SYS_...); for raw system calls Alejandro Colomar
2021-05-21 23:25 ` [PATCH 10/10] socketcall.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-05-24 18:19   ` [PATCH v2 01/10] open.2: Remove unused <sys/stat.h> Alejandro Colomar
2021-06-09 22:23     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 02/10] rt_sigqueueinfo.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-09 22:24     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 03/10] seccomp.2: Document why each header is needed Alejandro Colomar
2021-05-24 19:34     ` Alejandro Colomar (man-pages)
2021-06-09 22:30       ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 04/10] seccomp.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-09 22:31     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 05/10] set_thread_area.2: " Alejandro Colomar
2021-06-09 22:24     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 06/10] set_tid_address.2: " Alejandro Colomar
2021-06-09 22:25     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 07/10] sgetmask.2: " Alejandro Colomar
2021-06-09 22:25     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 08/10] shmop.2: Remove unused include Alejandro Colomar
2021-06-09 22:25     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 09/10] sigprocmask.2: Use syscall(SYS_...); for raw system calls Alejandro Colomar
2021-06-09 22:26     ` Michael Kerrisk (man-pages)
2021-05-24 18:19   ` [PATCH v2 10/10] socketcall.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-09 22:27     ` Michael Kerrisk (man-pages) [this message]
2021-05-24 19:09 ` [PATCH 00/10] man2: SYNOPSIS: Use syscall, and fix includes Alejandro Colomar (man-pages)
2021-06-09 22:28   ` Michael Kerrisk (man-pages)
2021-06-09 22:29   ` Michael Kerrisk (man-pages)

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=93f83bcc-4029-fedb-457c-8b0dd0c2ffdf@gmail.com \
    --to=mtk.manpages@gmail.com \
    --cc=alx.manpages@gmail.com \
    --cc=linux-man@vger.kernel.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.