From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Jonathan Corbet <corbet@lwn.net>
Cc: Jani Nikula <jani.nikula@linux.intel.com>,
Randy Dunlap <rdunlap@infradead.org>,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
Akira Yokosawa <akiyks@gmail.com>, Shuah Khan <shuah@kernel.org>
Subject: Re: [PATCH 0/2] Move kernel-doc to tools/docs
Date: Sat, 17 Jan 2026 11:29:25 +0100 [thread overview]
Message-ID: <20260117112925.309a7a31@foz.lan> (raw)
In-Reply-To: <871pjppi57.fsf@trenco.lwn.net>
Em Fri, 16 Jan 2026 10:44:04 -0700
Jonathan Corbet <corbet@lwn.net> escreveu:
> Jani Nikula <jani.nikula@linux.intel.com> writes:
>
> > On Thu, 15 Jan 2026, Jonathan Corbet <corbet@lwn.net> wrote:
> >> Randy Dunlap <rdunlap@infradead.org> writes:
> >>
> >>> On 1/15/26 7:05 AM, Jonathan Corbet wrote:
> >>>> Jani Nikula <jani.nikula@linux.intel.com> writes:
> >>>>
> >>>>> I think the tool source should be called kernel_doc.py or something, and
> >>>>> scripts/kernel-doc should be a script running the former.
> >>>>
> >>>> I honestly don't get it - why add an extra indirection step here?
> >>>
> >>> a. compatibility with people in the wild running scripts/kernel-doc
> >>
> >> That is easily achieved with a symbolic link if we need it.
> >>
> >>> b. adhere to well-known naming conventions.
> >>
> >> The normal convention is to not have language-specific extensions on
> >> commands. As in "scripts/kernel-doc". I still don't understand how
> >> making a wrapper script somehow makes this better.
> >
> > kernel-doc the python source directly messing with sys.path is not
> > great. The python source should be able to assume the environment has
> > been set up, imports work, etc.
>
> I agree that's not great.
Avoiding it is not easy:
- Since the beginning, conf.py has a sys.path() to add sphinx dir,
as otherwise Sphinx won't find the in-kernel extensions.
This can probably be fixed by prepending "sphinx." to all in-kernel
extensions, but, if we're willing to do so, I would first rename
sphinx/ -> kern_sphinx (or something similar
- For autodoc to work, we either need sys.path() addition or we would
need to place conf.py at the top level directory. Doable, conf.py
is not that important to be at the root directory.
> We could of course fix that up in the
> makefile; the sys.path manipulation is only for standalone runs.
I don't think Makefile is the right place to override Python
limitations. The real culprit here is that Python doesn't have
anything similar to:
#include "../tools/python/lib/foo.py"
If you want to include it, you need to do, instead:
sys.path.append(os.path.abspath(".."))
import tools.python.lib.foo
or a variant of that, like:
sys.path.append(os.path.abspath("../tools/python"))
import lib.foo
> So I guess my feeling is that if somebody really wants to implement that
> extra level of indirection, we can consider it. I won't dig in my heels
> *too* deeply. But it's a separate change from moving the tool, so
> should be done on its own.
I don’t think we need such indirection, nor do we need to avoid using
sys.path() to overcome Python's parent import limitation. IMO, a
pragmatic rather than a purist approach is more suitable for our needs.
Thanks,
Mauro
next prev parent reply other threads:[~2026-01-17 10:29 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-14 16:41 [PATCH 0/2] Move kernel-doc to tools/docs Jonathan Corbet
2026-01-14 16:41 ` [PATCH 1/2] docs: kdoc: remove support for an external kernel-doc from sphinx Jonathan Corbet
2026-01-14 19:42 ` Mauro Carvalho Chehab
2026-01-14 16:41 ` [PATCH 2/2] Move kernel-doc to tools/docs Jonathan Corbet
2026-01-14 20:00 ` Mauro Carvalho Chehab
2026-01-19 8:23 ` kernel test robot
2026-01-19 10:27 ` Mauro Carvalho Chehab
2026-01-14 19:20 ` [PATCH 0/2] " Randy Dunlap
2026-01-14 19:24 ` Jonathan Corbet
2026-01-14 20:25 ` Mauro Carvalho Chehab
2026-01-15 10:33 ` Jani Nikula
2026-01-15 12:23 ` Mauro Carvalho Chehab
2026-01-15 12:58 ` Jani Nikula
2026-01-15 15:05 ` Jonathan Corbet
2026-01-15 17:31 ` Randy Dunlap
2026-01-15 18:04 ` Jonathan Corbet
2026-01-15 18:48 ` Randy Dunlap
2026-01-16 10:38 ` Jani Nikula
2026-01-16 17:44 ` Jonathan Corbet
2026-01-17 10:29 ` Mauro Carvalho Chehab [this message]
2026-01-16 17:48 ` Jonathan Corbet
2026-01-17 10:00 ` Mauro Carvalho Chehab
2026-01-17 18:09 ` Randy Dunlap
2026-01-19 10:17 ` Mauro Carvalho Chehab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260117112925.309a7a31@foz.lan \
--to=mchehab+huawei@kernel.org \
--cc=akiyks@gmail.com \
--cc=corbet@lwn.net \
--cc=jani.nikula@linux.intel.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rdunlap@infradead.org \
--cc=shuah@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox