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,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] subpage_prot.2: SYNOPSIS: Fix return type: s/long/int/
Date: Sat, 28 Nov 2020 09:56:59 +0100 [thread overview]
Message-ID: <f61b365a-19b7-8dbc-e714-7c55d192d469@gmail.com> (raw)
In-Reply-To: <20201127234417.26257-1-alx.manpages@gmail.com>
Hi Alex,
On 11/28/20 12:44 AM, Alejandro Colomar wrote:
> The Linux kernel uses 'int' instead of 'long' for the return type.
> As glibc provides no wrapper, use the same type the kernel uses.
Thanks. Patch applied.
Cheers,
Michael
> ......
>
> $ grep -n wrapper man-pages/man2/subpage_prot.2
> 40:There is no glibc wrapper for this system call; see NOTES.
> 99:Glibc does not provide a wrapper for this system call; call it using
>
> $ grep -rn SYSCALL_DEFINE.*subpage_prot linux/;
> linux/arch/powerpc/mm/book3s64/subpage_prot.c:190:
> SYSCALL_DEFINE3(subpage_prot, unsigned long, addr,
>
> $ sed -n /SYSCALL.*subpage_prot/,/^}/p \
> linux/arch/powerpc/mm/book3s64/subpage_prot.c \
> |grep return;
> return -ENOENT;
> return -EINVAL;
> return -EINVAL;
> return 0;
> return -EFAULT;
> return -EFAULT;
> return err;
>
> $ sed -n /SYSCALL.*subpage_prot/,/^}/p \
> linux/arch/powerpc/mm/book3s64/subpage_prot.c \
> |grep '\<err\>';
> int err;
> err = -ENOMEM;
> err = -ENOMEM;
> err = 0;
> return err;
>
> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
> ---
> man2/subpage_prot.2 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/man2/subpage_prot.2 b/man2/subpage_prot.2
> index b38ba718f..d6f016665 100644
> --- a/man2/subpage_prot.2
> +++ b/man2/subpage_prot.2
> @@ -32,7 +32,7 @@
> subpage_prot \- define a subpage protection for an address range
> .SH SYNOPSIS
> .nf
> -.BI "long subpage_prot(unsigned long " addr ", unsigned long " len ,
> +.BI "int subpage_prot(unsigned long " addr ", unsigned long " len ,
> .BI " uint32_t *" map );
> .fi
> .PP
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
prev parent reply other threads:[~2020-11-28 21:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-27 23:44 [PATCH] subpage_prot.2: SYNOPSIS: Fix return type: s/long/int/ Alejandro Colomar
2020-11-28 8:56 ` Michael Kerrisk (man-pages) [this message]
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=f61b365a-19b7-8dbc-e714-7c55d192d469@gmail.com \
--to=mtk.manpages@gmail.com \
--cc=alx.manpages@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).