public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] signal.7: tfix
@ 2020-12-23 19:30 Jakub Wilk
  2020-12-23 19:42 ` Alejandro Colomar (man-pages)
  0 siblings, 1 reply; 12+ messages in thread
From: Jakub Wilk @ 2020-12-23 19:30 UTC (permalink / raw)
  To: Michael Kerrisk; +Cc: linux-man

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

diff --git a/man7/signal.7 b/man7/signal.7
index e5b9e00ca..1b48356b8 100644
--- a/man7/signal.7
+++ b/man7/signal.7
@@ -357,7 +357,7 @@ From the kernel's point of view,
 execution of the signal handler code is exactly the same as the execution
 of any other user-space code.
 That is to say, the kernel does not record any special state information
-indicating that the thread is currently excuting inside a signal handler.
+indicating that the thread is currently executing inside a signal handler.
 All necessary state information is maintained in user-space registers
 and the user-space stack.
 The depth to which nested signal handlers may be invoked is thus
-- 
2.30.0.rc1


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

* Re: [PATCH 1/4] signal.7: tfix
  2020-12-23 19:30 [PATCH 1/4] signal.7: tfix Jakub Wilk
@ 2020-12-23 19:42 ` Alejandro Colomar (man-pages)
  0 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar (man-pages) @ 2020-12-23 19:42 UTC (permalink / raw)
  To: Jakub Wilk, Michael Kerrisk; +Cc: linux-man

On 12/23/20 8:30 PM, Jakub Wilk wrote:
> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>

Jakub, patch applied.

Thanks,

Alex

> ---
>  man7/signal.7 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man7/signal.7 b/man7/signal.7
> index e5b9e00ca..1b48356b8 100644
> --- a/man7/signal.7
> +++ b/man7/signal.7
> @@ -357,7 +357,7 @@ From the kernel's point of view,
>  execution of the signal handler code is exactly the same as the execution
>  of any other user-space code.
>  That is to say, the kernel does not record any special state information
> -indicating that the thread is currently excuting inside a signal handler.
> +indicating that the thread is currently executing inside a signal handler.
>  All necessary state information is maintained in user-space registers
>  and the user-space stack.
>  The depth to which nested signal handlers may be invoked is thus
> 

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

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

* [PATCH 1/4] signal.7: tfix
@ 2020-12-28  9:42 Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 2/4] cgroups.7: tfix Alejandro Colomar
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-28  9:42 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man

From: Jakub Wilk <jwilk@jwilk.net>

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
---

Hi Michael,

Here are some tfixes I merged from Jakub.

Thanks,

Alex

 man7/signal.7 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/signal.7 b/man7/signal.7
index e5b9e00ca..1b48356b8 100644
--- a/man7/signal.7
+++ b/man7/signal.7
@@ -357,7 +357,7 @@ From the kernel's point of view,
 execution of the signal handler code is exactly the same as the execution
 of any other user-space code.
 That is to say, the kernel does not record any special state information
-indicating that the thread is currently excuting inside a signal handler.
+indicating that the thread is currently executing inside a signal handler.
 All necessary state information is maintained in user-space registers
 and the user-space stack.
 The depth to which nested signal handlers may be invoked is thus
-- 
2.29.2


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

* [PATCH 2/4] cgroups.7: tfix
  2020-12-28  9:42 [PATCH 1/4] signal.7: tfix Alejandro Colomar
@ 2020-12-28  9:42 ` Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 3/4] ftime.3: tfix Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
  2 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-28  9:42 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man

From: Jakub Wilk <jwilk@jwilk.net>

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

diff --git a/man7/cgroups.7 b/man7/cgroups.7
index 0d525d91f..f6e7a8d8f 100644
--- a/man7/cgroups.7
+++ b/man7/cgroups.7
@@ -1123,7 +1123,7 @@ mount \-t cgroup2 \-o remount,nsdelegate \e
 .EE
 .in
 .\"
-.\" ALternatively, we could boot the kernel with the options:
+.\" Alternatively, we could boot the kernel with the options:
 .\"
 .\"    cgroup_no_v1=all systemd.legacy_systemd_cgroup_controller
 .\"
-- 
2.29.2


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

* [PATCH 3/4] ftime.3: tfix
  2020-12-28  9:42 [PATCH 1/4] signal.7: tfix Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 2/4] cgroups.7: tfix Alejandro Colomar
@ 2020-12-28  9:42 ` Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
  2 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-28  9:42 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man

From: Jakub Wilk <jwilk@jwilk.net>

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

diff --git a/man3/ftime.3 b/man3/ftime.3
index fa28daccd..658ed300c 100644
--- a/man3/ftime.3
+++ b/man3/ftime.3
@@ -80,7 +80,7 @@ function and the
 .I <sys/timeb.h>
 header have been removed.
 To support old binaries,
-glibc contines to provide a compatibility symbol for
+glibc continues to provide a compatibility symbol for
 applications linked against glibc 2.32 and earlier.
 .SH ATTRIBUTES
 For an explanation of the terms used in this section, see
-- 
2.29.2


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

* [PATCH 4/4] filesystems.5: tfix
  2020-12-28  9:42 [PATCH 1/4] signal.7: tfix Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 2/4] cgroups.7: tfix Alejandro Colomar
  2020-12-28  9:42 ` [PATCH 3/4] ftime.3: tfix Alejandro Colomar
@ 2020-12-28  9:42 ` Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 0/4] Resend signed Alejandro Colomar
                     ` (4 more replies)
  2 siblings, 5 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-28  9:42 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man

From: Jakub Wilk <jwilk@jwilk.net>

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

diff --git a/man5/filesystems.5 b/man5/filesystems.5
index f3d37d3c7..aa7d74740 100644
--- a/man5/filesystems.5
+++ b/man5/filesystems.5
@@ -154,7 +154,7 @@ optional period and 3 character extension.
 .B ncpfs
 is a network filesystem that supports the NCP protocol,
 used by Novell NetWare.
-It was was removed from the kernel in 4.17.
+It was removed from the kernel in 4.17.
 .IP
 To use
 .BR ncpfs ,
-- 
2.29.2


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

* [PATCH v2 0/4] Resend signed
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
@ 2020-12-29 20:37   ` Alejandro Colomar
  2020-12-30  8:31     ` Michael Kerrisk (man-pages)
  2020-12-29 20:37   ` [PATCH v2 1/4] signal.7: tfix Alejandro Colomar
                     ` (3 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-29 20:37 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man, Jakub Wilk

I forgot to signed them.

Jakub Wilk (4):
  signal.7: tfix
  cgroups.7: tfix
  ftime.3: tfix
  filesystems.5: tfix

 man3/ftime.3       | 2 +-
 man5/filesystems.5 | 2 +-
 man7/cgroups.7     | 2 +-
 man7/signal.7      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

-- 
2.29.2


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

* [PATCH v2 1/4] signal.7: tfix
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 0/4] Resend signed Alejandro Colomar
@ 2020-12-29 20:37   ` Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 2/4] cgroups.7: tfix Alejandro Colomar
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-29 20:37 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man, Alejandro Colomar

From: Jakub Wilk <jwilk@jwilk.net>

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man7/signal.7 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/signal.7 b/man7/signal.7
index e5b9e00ca..1b48356b8 100644
--- a/man7/signal.7
+++ b/man7/signal.7
@@ -357,7 +357,7 @@ From the kernel's point of view,
 execution of the signal handler code is exactly the same as the execution
 of any other user-space code.
 That is to say, the kernel does not record any special state information
-indicating that the thread is currently excuting inside a signal handler.
+indicating that the thread is currently executing inside a signal handler.
 All necessary state information is maintained in user-space registers
 and the user-space stack.
 The depth to which nested signal handlers may be invoked is thus
-- 
2.29.2


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

* [PATCH v2 2/4] cgroups.7: tfix
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 0/4] Resend signed Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 1/4] signal.7: tfix Alejandro Colomar
@ 2020-12-29 20:37   ` Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 3/4] ftime.3: tfix Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 4/4] filesystems.5: tfix Alejandro Colomar
  4 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-29 20:37 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man, Alejandro Colomar

From: Jakub Wilk <jwilk@jwilk.net>

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man7/cgroups.7 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man7/cgroups.7 b/man7/cgroups.7
index 0d525d91f..f6e7a8d8f 100644
--- a/man7/cgroups.7
+++ b/man7/cgroups.7
@@ -1123,7 +1123,7 @@ mount \-t cgroup2 \-o remount,nsdelegate \e
 .EE
 .in
 .\"
-.\" ALternatively, we could boot the kernel with the options:
+.\" Alternatively, we could boot the kernel with the options:
 .\"
 .\"    cgroup_no_v1=all systemd.legacy_systemd_cgroup_controller
 .\"
-- 
2.29.2


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

* [PATCH v2 3/4] ftime.3: tfix
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
                     ` (2 preceding siblings ...)
  2020-12-29 20:37   ` [PATCH v2 2/4] cgroups.7: tfix Alejandro Colomar
@ 2020-12-29 20:37   ` Alejandro Colomar
  2020-12-29 20:37   ` [PATCH v2 4/4] filesystems.5: tfix Alejandro Colomar
  4 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-29 20:37 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man, Alejandro Colomar

From: Jakub Wilk <jwilk@jwilk.net>

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man3/ftime.3 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man3/ftime.3 b/man3/ftime.3
index fa28daccd..658ed300c 100644
--- a/man3/ftime.3
+++ b/man3/ftime.3
@@ -80,7 +80,7 @@ function and the
 .I <sys/timeb.h>
 header have been removed.
 To support old binaries,
-glibc contines to provide a compatibility symbol for
+glibc continues to provide a compatibility symbol for
 applications linked against glibc 2.32 and earlier.
 .SH ATTRIBUTES
 For an explanation of the terms used in this section, see
-- 
2.29.2


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

* [PATCH v2 4/4] filesystems.5: tfix
  2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
                     ` (3 preceding siblings ...)
  2020-12-29 20:37   ` [PATCH v2 3/4] ftime.3: tfix Alejandro Colomar
@ 2020-12-29 20:37   ` Alejandro Colomar
  4 siblings, 0 replies; 12+ messages in thread
From: Alejandro Colomar @ 2020-12-29 20:37 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Jakub Wilk, linux-man, Alejandro Colomar

From: Jakub Wilk <jwilk@jwilk.net>

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---
 man5/filesystems.5 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man5/filesystems.5 b/man5/filesystems.5
index f3d37d3c7..aa7d74740 100644
--- a/man5/filesystems.5
+++ b/man5/filesystems.5
@@ -154,7 +154,7 @@ optional period and 3 character extension.
 .B ncpfs
 is a network filesystem that supports the NCP protocol,
 used by Novell NetWare.
-It was was removed from the kernel in 4.17.
+It was removed from the kernel in 4.17.
 .IP
 To use
 .BR ncpfs ,
-- 
2.29.2


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

* Re: [PATCH v2 0/4] Resend signed
  2020-12-29 20:37   ` [PATCH v2 0/4] Resend signed Alejandro Colomar
@ 2020-12-30  8:31     ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-12-30  8:31 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man, Jakub Wilk

On 12/29/20 9:37 PM, Alejandro Colomar wrote:
> I forgot to signed them.

Thanks, Alex. All four patches applied.

Cheers,

Michael

> Jakub Wilk (4):
>   signal.7: tfix
>   cgroups.7: tfix
>   ftime.3: tfix
>   filesystems.5: tfix
> 
>  man3/ftime.3       | 2 +-
>  man5/filesystems.5 | 2 +-
>  man7/cgroups.7     | 2 +-
>  man7/signal.7      | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
> 


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

end of thread, other threads:[~2020-12-30  8:32 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-28  9:42 [PATCH 1/4] signal.7: tfix Alejandro Colomar
2020-12-28  9:42 ` [PATCH 2/4] cgroups.7: tfix Alejandro Colomar
2020-12-28  9:42 ` [PATCH 3/4] ftime.3: tfix Alejandro Colomar
2020-12-28  9:42 ` [PATCH 4/4] filesystems.5: tfix Alejandro Colomar
2020-12-29 20:37   ` [PATCH v2 0/4] Resend signed Alejandro Colomar
2020-12-30  8:31     ` Michael Kerrisk (man-pages)
2020-12-29 20:37   ` [PATCH v2 1/4] signal.7: tfix Alejandro Colomar
2020-12-29 20:37   ` [PATCH v2 2/4] cgroups.7: tfix Alejandro Colomar
2020-12-29 20:37   ` [PATCH v2 3/4] ftime.3: tfix Alejandro Colomar
2020-12-29 20:37   ` [PATCH v2 4/4] filesystems.5: tfix Alejandro Colomar
  -- strict thread matches above, loose matches on Subject: below --
2020-12-23 19:30 [PATCH 1/4] signal.7: tfix Jakub Wilk
2020-12-23 19:42 ` Alejandro Colomar (man-pages)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox