public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] man2/userfaultfd.2: ffix
@ 2023-10-06  6:42 G. Branden Robinson
  2023-10-08 22:45 ` Alejandro Colomar
  0 siblings, 1 reply; 4+ messages in thread
From: G. Branden Robinson @ 2023-10-06  6:42 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: linux-man

[-- Attachment #1: Type: text/plain, Size: 769 bytes --]

---
 man2/userfaultfd.2 | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/man2/userfaultfd.2 b/man2/userfaultfd.2
index b2b79f61d..97f13cce9 100644
--- a/man2/userfaultfd.2
+++ b/man2/userfaultfd.2
@@ -222,12 +222,11 @@ .SS Userfaultfd operation
 a page fault occurring in the requested memory range, and satisfying
 the mode defined at the registration time, will be forwarded by the kernel to
 the user-space application.
-The application can then use various (e.g.
-.B UFFDIO_COPY ,
-.B UFFDIO_ZEROPAGE ,
+The application can then use various (e.g.,
+.BR UFFDIO_COPY ,
+.BR UFFDIO_ZEROPAGE ,
 or
-.B UFFDIO_CONTINUE
-)
+.BR UFFDIO_CONTINUE )
 .BR ioctl (2)
 operations to resolve the page fault.
 .PP
-- 
2.30.2

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] man2/userfaultfd.2: ffix
  2023-10-06  6:42 [PATCH] man2/userfaultfd.2: ffix G. Branden Robinson
@ 2023-10-08 22:45 ` Alejandro Colomar
  2023-10-08 22:55   ` G. Branden Robinson
  0 siblings, 1 reply; 4+ messages in thread
From: Alejandro Colomar @ 2023-10-08 22:45 UTC (permalink / raw)
  To: G. Branden Robinson; +Cc: linux-man

[-- Attachment #1: Type: text/plain, Size: 1076 bytes --]

Hi Branden,

On Fri, Oct 06, 2023 at 01:42:54AM -0500, G. Branden Robinson wrote:

Patch applied.  Should I amend with
`Signed-off-by: "G. Branden Robinson" <branden@debian.org>`?

Cheers,
Alex

> ---
>  man2/userfaultfd.2 | 9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)
> 
> diff --git a/man2/userfaultfd.2 b/man2/userfaultfd.2
> index b2b79f61d..97f13cce9 100644
> --- a/man2/userfaultfd.2
> +++ b/man2/userfaultfd.2
> @@ -222,12 +222,11 @@ .SS Userfaultfd operation
>  a page fault occurring in the requested memory range, and satisfying
>  the mode defined at the registration time, will be forwarded by the kernel to
>  the user-space application.
> -The application can then use various (e.g.
> -.B UFFDIO_COPY ,
> -.B UFFDIO_ZEROPAGE ,
> +The application can then use various (e.g.,
> +.BR UFFDIO_COPY ,
> +.BR UFFDIO_ZEROPAGE ,
>  or
> -.B UFFDIO_CONTINUE
> -)
> +.BR UFFDIO_CONTINUE )
>  .BR ioctl (2)
>  operations to resolve the page fault.
>  .PP
> -- 
> 2.30.2



-- 
<https://www.alejandro-colomar.es/>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] man2/userfaultfd.2: ffix
  2023-10-08 22:45 ` Alejandro Colomar
@ 2023-10-08 22:55   ` G. Branden Robinson
  2023-10-08 23:21     ` Alejandro Colomar
  0 siblings, 1 reply; 4+ messages in thread
From: G. Branden Robinson @ 2023-10-08 22:55 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: linux-man

[-- Attachment #1: Type: text/plain, Size: 214 bytes --]

Hi Alex,

At 2023-10-09T00:45:37+0200, Alejandro Colomar wrote:
> Patch applied.  Should I amend with
> `Signed-off-by: "G. Branden Robinson" <branden@debian.org>`?

Sure.  I forgot (again).  :-O

Regards,
Branden

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] man2/userfaultfd.2: ffix
  2023-10-08 22:55   ` G. Branden Robinson
@ 2023-10-08 23:21     ` Alejandro Colomar
  0 siblings, 0 replies; 4+ messages in thread
From: Alejandro Colomar @ 2023-10-08 23:21 UTC (permalink / raw)
  To: G. Branden Robinson; +Cc: linux-man

[-- Attachment #1: Type: text/plain, Size: 439 bytes --]

On Sun, Oct 08, 2023 at 05:55:02PM -0500, G. Branden Robinson wrote:
> Hi Alex,
> 
> At 2023-10-09T00:45:37+0200, Alejandro Colomar wrote:
> > Patch applied.  Should I amend with
> > `Signed-off-by: "G. Branden Robinson" <branden@debian.org>`?
> 
> Sure.  I forgot (again).  :-O

Done.  :)

You may want to add this uid to your key.

Cheers,
Alex

> 
> Regards,
> Branden



-- 
<https://www.alejandro-colomar.es/>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2023-10-08 23:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-06  6:42 [PATCH] man2/userfaultfd.2: ffix G. Branden Robinson
2023-10-08 22:45 ` Alejandro Colomar
2023-10-08 22:55   ` G. Branden Robinson
2023-10-08 23:21     ` Alejandro Colomar

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