]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
keyctl.2: SYNOPSIS: Fix prototype parameter types
authorAlejandro Colomar <alx.manpages@gmail.com>
Wed, 30 Dec 2020 21:41:44 +0000 (22:41 +0100)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 30 Dec 2020 22:37:05 +0000 (23:37 +0100)
The Linux kernel uses 'unsigned long'.
There's no reason to use the typedef '__kernel_ulong_t'.

......

$ syscall='keyctl';
$ find linux/ -type f -name '*.c' \
  |xargs pcregrep -Mn "(?s)^[\w_]*SYSCALL_DEFINE.\(${syscall},.*?\)";
linux/security/keys/keyctl.c:1869:
SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3,
unsigned long, arg4, unsigned long, arg5)
linux/security/keys/compat.c:17:
COMPAT_SYSCALL_DEFINE5(keyctl, u32, option,
       u32, arg2, u32, arg3, u32, arg4, u32, arg5)

Cc: Eugene Syromyatnikov <evgsyr@gmail.com>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/keyctl.2

index 9311100cfa8e574bba760c9789cf44ed7c6f970c..ea3a5d3dd0d932c1a292273068fbef45d47b32e6 100644 (file)
@@ -40,9 +40,9 @@ keyctl \- manipulate the kernel's key management facility
 .B #include <linux/keyctl.h>
 .B #include <unistd.h>
 .PP
-.BI "long syscall(__NR_keyctl, int " operation ", __kernel_ulong_t " arg2 ,
-.BI "             __kernel_ulong_t " arg3 ", __kernel_ulong_t " arg4 ,
-.BI "             __kernel_ulong_t " arg5 );
+.BI "long syscall(__NR_keyctl, int " operation ", unsigned long " arg2 ,
+.BI "             unsigned long " arg3 ", unsigned long " arg4 ,
+.BI "             unsigned long " arg5 );
 .fi
 .PP
 .IR Note :