Re: [PATCH 8/9] docs: maintainers_include: don't ignore invalid profile entries
From: Mauro Carvalho Chehab
Date: Mon May 04 2026 - 19:23:47 EST
On Mon, 04 May 2026 23:37:38 +0100
"Gary Guo" <gary@xxxxxxxxxxx> wrote:
> On Mon May 4, 2026 at 9:26 PM BST, Mauro Carvalho Chehab wrote:
> > On Mon, 4 May 2026 18:08:06 +0200
> > Miguel Ojeda <miguel.ojeda.sandonis@xxxxxxxxx> wrote:
> >
> >> On Mon, May 4, 2026 at 5:51 PM Mauro Carvalho Chehab
> >> <mchehab+huawei@xxxxxxxxxx> wrote:
> >> >
> >> > Currently, there is a "P" entry for Rust pin-point that is
>
> I suppose the commit message is supposed to refer to pin-init instead of
> pin-point?
Gah, sorry for the typo!
I'll fix on a next version.
> >> > neither a valid ReST file nor an hyperlink. While the real
> >>
> >> I guess you mean pin-init above, i.e. this entry:
> >>
> >> P: rust/pin-init/CONTRIBUTING.md
> >>
> >> It would be nice to clarify it in the commit message that it refers to
> >> a file (which is allowed for `P:` entries according to the docs).
> >
> > It is not written there, but by file, it would actually be expected
> > a file within Documentation in ReST format ;-)
> >
> >> And, yeah, ideally we could make it a hyperlink to the raw file.
> >
> > I'm afraid that this is not possible. Sphinx doesn't allow
> > hyperlinks to point to files outside the documentation root
> > (which is Documentation/ when SPHINXDIRS is not used).
>
> I suppose we can just change it to a link to the render doc on GitHub.
This works too: there are other P: entries like that pointing to an
external URL that was rendered somehow.
That's said, GitHub (and, AFAIKT GitLab) supports both Markdown and
ReStructured Text. So, if one wants to keep the file on both places,
rst is a common denominator.
> We already mentioned in that contributing file that pin-init changes ideally go
> via GitHub (and then patches are synced to kernel) as this is a library and we
> have extensive test suite on compiler error message / test on macro expansion which
> cannot be integrated with kernel tooling. So changing the P entry from a in-tree
> file to URL shouldn't really be an issue.
Works for me.
> Best,
> Gary
>
> >
> > IMO the best would be to run:
> >
> > pandoc -i rust/pin-init/CONTRIBUTING.md -t rst -o Documentation/rust/pin-init-profile.rst
> > sed s,rust/pin-init/CONTRIBUTING.md,Documentation/rust/pin-init-profile.rst, -i MAINTAINERS
> >
> > This way, it will generate a proper hyperlink.
> >
> > Thanks,
> > Mauro
>
Thanks,
Mauro