linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] cacheflush.2: tfix
@ 2021-01-18  9:08 Jakub Wilk
  2021-01-18  9:08 ` [PATCH 2/2] semget.2, shm_open.3: tfix Jakub Wilk
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jakub Wilk @ 2021-01-18  9:08 UTC (permalink / raw)
  To: Michael Kerrisk; +Cc: linux-man

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
---
 man2/cacheflush.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/cacheflush.2 b/man2/cacheflush.2
index 12be4c94a..44fc064a8 100644
--- a/man2/cacheflush.2
+++ b/man2/cacheflush.2
@@ -27,7 +27,7 @@
 cacheflush \- flush contents of instruction and/or data cache
 .SH SYNOPSIS
 .nf
-.B #inlcude <sys/cachectl.h>
+.B #include <sys/cachectl.h>
 .PP
 .BI "int cacheflush(void *" addr ", int "nbytes ", int "cache );
 .fi
-- 
2.30.0


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

* [PATCH 2/2] semget.2, shm_open.3: tfix
  2021-01-18  9:08 [PATCH 1/2] cacheflush.2: tfix Jakub Wilk
@ 2021-01-18  9:08 ` Jakub Wilk
  2021-01-18 15:22   ` Alejandro Colomar (man-pages)
  2021-01-18 15:45 ` [PATCH 1/2] cacheflush.2: tfix Michael Kerrisk (man-pages)
  2021-01-18 15:59 ` Michael Kerrisk (man-pages)
  2 siblings, 1 reply; 6+ messages in thread
From: Jakub Wilk @ 2021-01-18  9:08 UTC (permalink / raw)
  To: Michael Kerrisk; +Cc: linux-man

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
---
 man2/semget.2   | 2 +-
 man3/shm_open.3 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/man2/semget.2 b/man2/semget.2
index a8fed15e6..445ac0249 100644
--- a/man2/semget.2
+++ b/man2/semget.2
@@ -155,7 +155,7 @@ If the semaphore set already exists, the permissions are
 verified.
 .\" and a check is made to see if it is marked for destruction.
 .SH RETURN VALUE
-On sucess,
+On success,
 .BR semget ()
 returns the semaphore set identifier (a nonnegative integer).
 On failure, \-1 is returned, and
diff --git a/man3/shm_open.3 b/man3/shm_open.3
index 80d1eae17..9b06335d2 100644
--- a/man3/shm_open.3
+++ b/man3/shm_open.3
@@ -170,7 +170,7 @@ was specified, in which case a new, distinct object is created).
 On success,
 .BR shm_open ()
 returns a file descriptor (a nonnegative integer).
-On sucess,
+On success,
 .BR shm_unlink ()
 returns 0.
 On failure, both functions return \-1 and set
-- 
2.30.0


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

* Re: [PATCH 2/2] semget.2, shm_open.3: tfix
  2021-01-18  9:08 ` [PATCH 2/2] semget.2, shm_open.3: tfix Jakub Wilk
@ 2021-01-18 15:22   ` Alejandro Colomar (man-pages)
  0 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-01-18 15:22 UTC (permalink / raw)
  To: Jakub Wilk, Michael Kerrisk; +Cc: linux-man

On 1/18/21 10:08 AM, Jakub Wilk wrote:
> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>

Hello Jakub,

Patch applied.

Thanks,

Alex

> ---
>  man2/semget.2   | 2 +-
>  man3/shm_open.3 | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/man2/semget.2 b/man2/semget.2
> index a8fed15e6..445ac0249 100644
> --- a/man2/semget.2
> +++ b/man2/semget.2
> @@ -155,7 +155,7 @@ If the semaphore set already exists, the permissions are
>  verified.
>  .\" and a check is made to see if it is marked for destruction.
>  .SH RETURN VALUE
> -On sucess,
> +On success,
>  .BR semget ()
>  returns the semaphore set identifier (a nonnegative integer).
>  On failure, \-1 is returned, and
> diff --git a/man3/shm_open.3 b/man3/shm_open.3
> index 80d1eae17..9b06335d2 100644
> --- a/man3/shm_open.3
> +++ b/man3/shm_open.3
> @@ -170,7 +170,7 @@ was specified, in which case a new, distinct object is created).
>  On success,
>  .BR shm_open ()
>  returns a file descriptor (a nonnegative integer).
> -On sucess,
> +On success,
>  .BR shm_unlink ()
>  returns 0.
>  On failure, both functions return \-1 and set
> 


-- 
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/

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

* Re: [PATCH 1/2] cacheflush.2: tfix
  2021-01-18  9:08 [PATCH 1/2] cacheflush.2: tfix Jakub Wilk
  2021-01-18  9:08 ` [PATCH 2/2] semget.2, shm_open.3: tfix Jakub Wilk
@ 2021-01-18 15:45 ` Michael Kerrisk (man-pages)
  2021-01-18 15:50   ` Alejandro Colomar (man-pages)
  2021-01-18 15:59 ` Michael Kerrisk (man-pages)
  2 siblings, 1 reply; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-01-18 15:45 UTC (permalink / raw)
  To: Jakub Wilk; +Cc: mtk.manpages, linux-man, Alejandro Colomar

On 1/18/21 10:08 AM, Jakub Wilk wrote:
> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>

Alex, you grabbed the 2/2. What about this 1/2?

Thanks,

Michael

> ---
>  man2/cacheflush.2 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/cacheflush.2 b/man2/cacheflush.2
> index 12be4c94a..44fc064a8 100644
> --- a/man2/cacheflush.2
> +++ b/man2/cacheflush.2
> @@ -27,7 +27,7 @@
>  cacheflush \- flush contents of instruction and/or data cache
>  .SH SYNOPSIS
>  .nf
> -.B #inlcude <sys/cachectl.h>
> +.B #include <sys/cachectl.h>
>  .PP
>  .BI "int cacheflush(void *" addr ", int "nbytes ", int "cache );
>  .fi
> 


-- 
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] 6+ messages in thread

* Re: [PATCH 1/2] cacheflush.2: tfix
  2021-01-18 15:45 ` [PATCH 1/2] cacheflush.2: tfix Michael Kerrisk (man-pages)
@ 2021-01-18 15:50   ` Alejandro Colomar (man-pages)
  0 siblings, 0 replies; 6+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-01-18 15:50 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages), Jakub Wilk; +Cc: linux-man

On 1/18/21 4:45 PM, Michael Kerrisk (man-pages) wrote:
> On 1/18/21 10:08 AM, Jakub Wilk wrote:
>> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
> 
> Alex, you grabbed the 2/2. What about this 1/2?

Hi Michael,

I didn't receive it.
Maybe there's some lag in vger.
You can apply it yourself, as they seem to be independent.


Thanks,

Alex

> 
> Thanks,
> 
> Michael
> 
>> ---
>>  man2/cacheflush.2 | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/man2/cacheflush.2 b/man2/cacheflush.2
>> index 12be4c94a..44fc064a8 100644
>> --- a/man2/cacheflush.2
>> +++ b/man2/cacheflush.2
>> @@ -27,7 +27,7 @@
>>  cacheflush \- flush contents of instruction and/or data cache
>>  .SH SYNOPSIS
>>  .nf
>> -.B #inlcude <sys/cachectl.h>
>> +.B #include <sys/cachectl.h>
>>  .PP
>>  .BI "int cacheflush(void *" addr ", int "nbytes ", int "cache );
>>  .fi
>>
> 
> 


-- 
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/

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

* Re: [PATCH 1/2] cacheflush.2: tfix
  2021-01-18  9:08 [PATCH 1/2] cacheflush.2: tfix Jakub Wilk
  2021-01-18  9:08 ` [PATCH 2/2] semget.2, shm_open.3: tfix Jakub Wilk
  2021-01-18 15:45 ` [PATCH 1/2] cacheflush.2: tfix Michael Kerrisk (man-pages)
@ 2021-01-18 15:59 ` Michael Kerrisk (man-pages)
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-01-18 15:59 UTC (permalink / raw)
  To: Jakub Wilk; +Cc: mtk.manpages, linux-man

Hi Jakub,

On 1/18/21 10:08 AM, Jakub Wilk wrote:
> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>

Patch applied.

Thanks,

Michael


> ---
>  man2/cacheflush.2 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/cacheflush.2 b/man2/cacheflush.2
> index 12be4c94a..44fc064a8 100644
> --- a/man2/cacheflush.2
> +++ b/man2/cacheflush.2
> @@ -27,7 +27,7 @@
>  cacheflush \- flush contents of instruction and/or data cache
>  .SH SYNOPSIS
>  .nf
> -.B #inlcude <sys/cachectl.h>
> +.B #include <sys/cachectl.h>
>  .PP
>  .BI "int cacheflush(void *" addr ", int "nbytes ", int "cache );
>  .fi
> 


-- 
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] 6+ messages in thread

end of thread, other threads:[~2021-01-18 21:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-18  9:08 [PATCH 1/2] cacheflush.2: tfix Jakub Wilk
2021-01-18  9:08 ` [PATCH 2/2] semget.2, shm_open.3: tfix Jakub Wilk
2021-01-18 15:22   ` Alejandro Colomar (man-pages)
2021-01-18 15:45 ` [PATCH 1/2] cacheflush.2: tfix Michael Kerrisk (man-pages)
2021-01-18 15:50   ` Alejandro Colomar (man-pages)
2021-01-18 15:59 ` Michael Kerrisk (man-pages)

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).