* [patch] fanotify.7: ffix
@ 2021-05-06 11:46 Akihiro Motoki
2021-05-06 12:00 ` Alejandro Colomar (man-pages)
0 siblings, 1 reply; 5+ messages in thread
From: Akihiro Motoki @ 2021-05-06 11:46 UTC (permalink / raw)
To: linux-man; +Cc: Michael Kerrisk (man-pages), alx.manpages
diff --git a/man7/fanotify.7 b/man7/fanotify.7
index ebe5c1d7f..6a7e70d75 100644
--- a/man7/fanotify.7
+++ b/man7/fanotify.7
@@ -147,7 +147,7 @@ influences what data structures are returned to
the event listener for each
event.
Events reported to a group initialized with one of these flags will
use file handles to identify filesystem objects instead of file descriptors.
-.TP
+.PP
After a successful
.BR read (2),
the read buffer contains one or more of the following structures:
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [patch] fanotify.7: ffix
2021-05-06 11:46 [patch] fanotify.7: ffix Akihiro Motoki
@ 2021-05-06 12:00 ` Alejandro Colomar (man-pages)
2021-05-06 12:04 ` Akihiro Motoki
0 siblings, 1 reply; 5+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-05-06 12:00 UTC (permalink / raw)
To: Akihiro Motoki, linux-man; +Cc: Michael Kerrisk (man-pages)
Hello Akihiro,
Patch applied. BTW, I had to apply the patches manually (`git am`
complained).
Thanks,
Alex
On 5/6/21 1:46 PM, Akihiro Motoki wrote:
> diff --git a/man7/fanotify.7 b/man7/fanotify.7
> index ebe5c1d7f..6a7e70d75 100644
> --- a/man7/fanotify.7
> +++ b/man7/fanotify.7
> @@ -147,7 +147,7 @@ influences what data structures are returned to
> the event listener for each
> event.
> Events reported to a group initialized with one of these flags will
> use file handles to identify filesystem objects instead of file descriptors.
> -.TP
> +.PP
> After a successful
> .BR read (2),
> the read buffer contains one or more of the following structures:
>
--
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] fanotify.7: ffix
2021-05-06 12:00 ` Alejandro Colomar (man-pages)
@ 2021-05-06 12:04 ` Akihiro Motoki
2021-05-06 12:16 ` Alejandro Colomar (man-pages)
0 siblings, 1 reply; 5+ messages in thread
From: Akihiro Motoki @ 2021-05-06 12:04 UTC (permalink / raw)
To: Alejandro Colomar (man-pages); +Cc: linux-man, Michael Kerrisk (man-pages)
Thanks.
I just posted an output of "git diff". Is the output of git am preferred?
On Thu, May 6, 2021 at 9:00 PM Alejandro Colomar (man-pages)
<alx.manpages@gmail.com> wrote:
>
> Hello Akihiro,
>
> Patch applied. BTW, I had to apply the patches manually (`git am`
> complained).
>
> Thanks,
>
> Alex
>
> On 5/6/21 1:46 PM, Akihiro Motoki wrote:
> > diff --git a/man7/fanotify.7 b/man7/fanotify.7
> > index ebe5c1d7f..6a7e70d75 100644
> > --- a/man7/fanotify.7
> > +++ b/man7/fanotify.7
> > @@ -147,7 +147,7 @@ influences what data structures are returned to
> > the event listener for each
> > event.
> > Events reported to a group initialized with one of these flags will
> > use file handles to identify filesystem objects instead of file descriptors.
> > -.TP
> > +.PP
> > After a successful
> > .BR read (2),
> > the read buffer contains one or more of the following structures:
> >
>
>
> --
> Alejandro Colomar
> Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
> http://www.alejandro-colomar.es/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] fanotify.7: ffix
2021-05-06 12:04 ` Akihiro Motoki
@ 2021-05-06 12:16 ` Alejandro Colomar (man-pages)
2021-05-06 12:30 ` Akihiro Motoki
0 siblings, 1 reply; 5+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-05-06 12:16 UTC (permalink / raw)
To: Akihiro Motoki; +Cc: linux-man, Michael Kerrisk (man-pages)
Hi Akihiro,
On 5/6/21 2:04 PM, Akihiro Motoki wrote:
> I just posted an output of "git diff". Is the output of git am preferred?
The preferred way is using `git send-mail` (after `git format-patch`).
Nevertheless, could you please tell me how to apply those patches? I
tried `git am` and `git apply`, and both failed. I don't know if
they're malformed due to the mailer, or if I just don't know how to
apply them.
Thanks,
Alex
--
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] fanotify.7: ffix
2021-05-06 12:16 ` Alejandro Colomar (man-pages)
@ 2021-05-06 12:30 ` Akihiro Motoki
0 siblings, 0 replies; 5+ messages in thread
From: Akihiro Motoki @ 2021-05-06 12:30 UTC (permalink / raw)
To: Alejandro Colomar (man-pages); +Cc: linux-man, Michael Kerrisk (man-pages)
Sorry for the inconvenience.
In this case, my mailer automatically wrapped long lines.
Thanks for pointing this out.
I will check my mailer configuration and also try the direct usage of
"git" command.
Thanks,
Akihiro
On Thu, May 6, 2021 at 9:16 PM Alejandro Colomar (man-pages)
<alx.manpages@gmail.com> wrote:
>
> Hi Akihiro,
>
> On 5/6/21 2:04 PM, Akihiro Motoki wrote:
> > I just posted an output of "git diff". Is the output of git am preferred?
>
> The preferred way is using `git send-mail` (after `git format-patch`).
> Nevertheless, could you please tell me how to apply those patches? I
> tried `git am` and `git apply`, and both failed. I don't know if
> they're malformed due to the mailer, or if I just don't know how to
> apply them.
>
> Thanks,
>
> Alex
>
> --
> Alejandro Colomar
> Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
> http://www.alejandro-colomar.es/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-05-06 12:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-06 11:46 [patch] fanotify.7: ffix Akihiro Motoki
2021-05-06 12:00 ` Alejandro Colomar (man-pages)
2021-05-06 12:04 ` Akihiro Motoki
2021-05-06 12:16 ` Alejandro Colomar (man-pages)
2021-05-06 12:30 ` Akihiro Motoki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox