]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
process_madvise.2: SYNOPSIS: Fix prototype parameter type
authorAlejandro Colomar <alx.manpages@gmail.com>
Thu, 11 Feb 2021 17:44:57 +0000 (18:44 +0100)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Sat, 13 Feb 2021 15:44:46 +0000 (16:44 +0100)
The type of vlen is 'size_t', and not 'unsigned int'.  Fix it.

......

$ grep_syscall process_madvise
mm/madvise.c:1161:
SYSCALL_DEFINE5(process_madvise, int, pidfd, const struct iovec __user *, vec,
size_t, vlen, int, behavior, unsigned int, flags)
include/linux/syscalls.h:887:
asmlinkage long sys_process_madvise(int pidfd, const struct iovec __user *vec,
size_t vlen, int behavior, unsigned int flags);

function grep_syscall()
{
if ! [ -v 1 ]; then
>&2 echo "Usage: ${FUNCNAME[0]} <syscall>";
return ${EX_USAGE};
fi

find * -type f \
|grep '\.c$' \
|sort -V \
|xargs pcregrep -Mn "(?s)^\w*SYSCALL_DEFINE.\(${1},.*?\)" \
|sed -E 's/^[^:]+:[0-9]+:/&\n/';

find * -type f \
|grep '\.[ch]$' \
|sort -V \
|xargs pcregrep -Mn "(?s)^asmlinkage\s+[\w\s]+\**sys_${1}\s*\(.*?\)" \
|sed -E 's/^[^:]+:[0-9]+:/&\n/';
}

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/process_madvise.2

index 3767d8d4ad47b9335efecc88fa1f0c3679b0f9e4..13950936e2c9a57ac481f154a9b6996650445213 100644 (file)
@@ -33,7 +33,7 @@ process_madvise \- give advice about use of memory to a process
 .B #include <sys/uio.h>
 .PP
 .BI "ssize_t process_madvise(int " pidfd ", const struct iovec *" iovec ,
-.BI "                        unsigned long " vlen ", int " advice ,
+.BI "                        size_t " vlen ", int " advice ,
 .BI "                        unsigned int " flags ");"
 .fi
 .PP