All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] spu_create.2: SYNOPSIS: Fix prototype parameter type
@ 2021-02-15 13:15 Alejandro Colomar
  2021-02-15 19:59 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 2+ messages in thread
From: Alejandro Colomar @ 2021-02-15 13:15 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

The 'flags' parameter of spu_create() uses 'unsigned int'.  Fix it.

......

.../linux$ grep_syscall spu_create
arch/powerpc/platforms/cell/spu_syscalls.c:56:
SYSCALL_DEFINE4(spu_create, const char __user *, name, unsigned int, flags,
	umode_t, mode, int, neighbor_fd)
include/linux/syscalls.h:1036:
asmlinkage long sys_spu_create(const char __user *name,
		unsigned int flags, umode_t mode, int fd);
.../linux$

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man2/spu_create.2 | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/man2/spu_create.2 b/man2/spu_create.2
index ff0dbdc20..2493b16bc 100644
--- a/man2/spu_create.2
+++ b/man2/spu_create.2
@@ -30,7 +30,8 @@ spu_create \- create a new spu context
 .B #include <sys/types.h>
 .B #include <sys/spu.h>
 .PP
-.BI "int spu_create(const char *" pathname ", int " flags ", mode_t " mode ","
+.BI "int spu_create(const char *" pathname ", unsigned int " flags \
+", mode_t " mode ,
 .BI "               int " neighbor_fd ");"
 .fi
 .PP
-- 
2.30.0


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

* Re: [PATCH] spu_create.2: SYNOPSIS: Fix prototype parameter type
  2021-02-15 13:15 [PATCH] spu_create.2: SYNOPSIS: Fix prototype parameter type Alejandro Colomar
@ 2021-02-15 19:59 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-02-15 19:59 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

Hi Alex,

On 2/15/21 2:15 PM, Alejandro Colomar wrote:
> The 'flags' parameter of spu_create() uses 'unsigned int'.  Fix it.
> 
> ......
> 
> .../linux$ grep_syscall spu_create
> arch/powerpc/platforms/cell/spu_syscalls.c:56:
> SYSCALL_DEFINE4(spu_create, const char __user *, name, unsigned int, flags,
> 	umode_t, mode, int, neighbor_fd)
> include/linux/syscalls.h:1036:
> asmlinkage long sys_spu_create(const char __user *name,
> 		unsigned int flags, umode_t mode, int fd);
> .../linux$
> 
> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>


Thanks! Patch applied.

Cheers,

Michael


> ---
>  man2/spu_create.2 | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/man2/spu_create.2 b/man2/spu_create.2
> index ff0dbdc20..2493b16bc 100644
> --- a/man2/spu_create.2
> +++ b/man2/spu_create.2
> @@ -30,7 +30,8 @@ spu_create \- create a new spu context
>  .B #include <sys/types.h>
>  .B #include <sys/spu.h>
>  .PP
> -.BI "int spu_create(const char *" pathname ", int " flags ", mode_t " mode ","
> +.BI "int spu_create(const char *" pathname ", unsigned int " flags \
> +", mode_t " mode ,
>  .BI "               int " neighbor_fd ");"
>  .fi
>  .PP
> 


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

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

end of thread, other threads:[~2021-02-15 20:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-15 13:15 [PATCH] spu_create.2: SYNOPSIS: Fix prototype parameter type Alejandro Colomar
2021-02-15 19:59 ` Michael Kerrisk (man-pages)

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.