[PATCH RFC 00/13] Collect documention-related tools under tools/doc

Jonathan Corbet posted 13 patches 1 month, 3 weeks ago
Documentation/Kconfig                         |    2 +-
Documentation/Makefile                        |   24 +-
Documentation/conf.py                         |    2 +-
Documentation/doc-guide/checktransupdate.rst  |    6 +-
Documentation/doc-guide/contributing.rst      |    2 +-
Documentation/doc-guide/kernel-doc.rst        |   18 +-
Documentation/doc-guide/parse-headers.rst     |    6 +-
Documentation/doc-guide/sphinx.rst            |    6 +-
Documentation/kbuild/kbuild.rst               |    2 +-
Documentation/process/coding-style.rst        |    2 +-
Documentation/sphinx/kernel_abi.py            |    2 +-
Documentation/sphinx/kernel_feat.py           |    4 +-
Documentation/sphinx/kerneldoc-preamble.sty   |    2 +-
.../it_IT/doc-guide/kernel-doc.rst            |    8 +-
.../it_IT/doc-guide/parse-headers.rst         |    6 +-
.../translations/it_IT/doc-guide/sphinx.rst   |    4 +-
.../sp_SP/process/coding-style.rst            |    2 +-
.../zh_CN/doc-guide/checktransupdate.rst      |    6 +-
.../zh_CN/doc-guide/contributing.rst          |    2 +-
.../zh_CN/doc-guide/kernel-doc.rst            |   16 +-
.../zh_CN/doc-guide/parse-headers.rst         |    6 +-
.../translations/zh_CN/doc-guide/sphinx.rst   |    4 +-
Documentation/translations/zh_CN/how-to.rst   |    4 +-
.../translations/zh_CN/kbuild/kbuild.rst      |    2 +-
.../zh_CN/process/coding-style.rst            |    2 +-
.../zh_TW/process/coding-style.rst            |    2 +-
Documentation/userspace-api/media/Makefile    |    2 +-
MAINTAINERS                                   |   11 +-
Makefile                                      |    2 +-
drivers/gpu/drm/i915/Makefile                 |    2 +-
scripts/kernel-doc                            |    1 -
scripts/kernel-doc.pl                         | 2439 -----------------
.../doc}/check-variable-fonts.sh              |    2 +-
{scripts => tools/doc}/checktransupdate.py    |    8 +-
.../doc}/documentation-file-ref-check         |    2 +-
.../scripts => tools/doc}/features-refresh.sh |    0
{scripts => tools/doc}/find-unused-docs.sh    |    8 +-
{scripts => tools/doc}/get_abi.py             |    0
{scripts => tools/doc}/get_feat.pl            |    2 +-
scripts/kernel-doc.py => tools/doc/kernel-doc |    0
.../features => tools/doc}/list-arch.sh       |    2 +-
.../sphinx => tools/doc}/parallel-wrapper.sh  |    0
.../sphinx => tools/doc}/parse-headers.pl     |    4 +-
{scripts => tools/doc}/sphinx-pre-install     |    2 +-
{scripts => tools/doc}/split-man.pl           |    0
{scripts => tools/doc}/test_doc_build.py      |    0
46 files changed, 91 insertions(+), 2538 deletions(-)
delete mode 120000 scripts/kernel-doc
delete mode 100755 scripts/kernel-doc.pl
rename {scripts => tools/doc}/check-variable-fonts.sh (98%)
rename {scripts => tools/doc}/checktransupdate.py (98%)
rename {scripts => tools/doc}/documentation-file-ref-check (99%)
rename {Documentation/features/scripts => tools/doc}/features-refresh.sh (100%)
rename {scripts => tools/doc}/find-unused-docs.sh (79%)
rename {scripts => tools/doc}/get_abi.py (100%)
rename {scripts => tools/doc}/get_feat.pl (99%)
rename scripts/kernel-doc.py => tools/doc/kernel-doc (100%)
rename {Documentation/features => tools/doc}/list-arch.sh (83%)
rename {Documentation/sphinx => tools/doc}/parallel-wrapper.sh (100%)
rename {Documentation/sphinx => tools/doc}/parse-headers.pl (98%)
rename {scripts => tools/doc}/sphinx-pre-install (99%)
rename {scripts => tools/doc}/split-man.pl (100%)
rename {scripts => tools/doc}/test_doc_build.py (100%)
[PATCH RFC 00/13] Collect documention-related tools under tools/doc
Posted by Jonathan Corbet 1 month, 3 weeks ago
Our documentation-related tools are spread out over various directories;
several are buried in the scripts/ dumping ground.  That makes them harder
to discover and harder to maintain.

Recently, the idea of creating a dedicated directory for documentation tools
came up; I decided to see what it would look like.  This series creates a
new directory, tools/doc, and moves various utilities there, hopefully
fixing up all of the relevant references in the process.

At the end, rather than move the old, Perl kernel-doc, I simply removed it.

The big elephant lurking in this small room is the home for Python modules;
I left them under scripts/lib, but that is an even less appropriate place
than it was before.  I would propose either tools/python or lib/python;
thoughts on that matter welcome.


Jonathan Corbet (13):
  docs: Move the "features" tools to tools/doc
  docs: move checktransupdate.py to tools/doc
  docs: move scripts/check-variable-fonts.sh to tools/doc
  docs: move scripts/documentation-file-ref-check to tools/doc
  docs: move parallel-wrapper.sh to tools/doc/
  docs: move get_abi.py to tools/doc
  docs: move sphinx-pre-install to tools/doc
  docs: move test_doc_build.py to tools/doc
  docs: move parse-headers.pl to tools/doc
  docs: move kernel-doc to tools/doc
  docs: move split-man.pl to tools/doc
  docs: move find-unused-docs.sh to tools/doc
  docs: remove kernel-doc.pl

 Documentation/Kconfig                         |    2 +-
 Documentation/Makefile                        |   24 +-
 Documentation/conf.py                         |    2 +-
 Documentation/doc-guide/checktransupdate.rst  |    6 +-
 Documentation/doc-guide/contributing.rst      |    2 +-
 Documentation/doc-guide/kernel-doc.rst        |   18 +-
 Documentation/doc-guide/parse-headers.rst     |    6 +-
 Documentation/doc-guide/sphinx.rst            |    6 +-
 Documentation/kbuild/kbuild.rst               |    2 +-
 Documentation/process/coding-style.rst        |    2 +-
 Documentation/sphinx/kernel_abi.py            |    2 +-
 Documentation/sphinx/kernel_feat.py           |    4 +-
 Documentation/sphinx/kerneldoc-preamble.sty   |    2 +-
 .../it_IT/doc-guide/kernel-doc.rst            |    8 +-
 .../it_IT/doc-guide/parse-headers.rst         |    6 +-
 .../translations/it_IT/doc-guide/sphinx.rst   |    4 +-
 .../sp_SP/process/coding-style.rst            |    2 +-
 .../zh_CN/doc-guide/checktransupdate.rst      |    6 +-
 .../zh_CN/doc-guide/contributing.rst          |    2 +-
 .../zh_CN/doc-guide/kernel-doc.rst            |   16 +-
 .../zh_CN/doc-guide/parse-headers.rst         |    6 +-
 .../translations/zh_CN/doc-guide/sphinx.rst   |    4 +-
 Documentation/translations/zh_CN/how-to.rst   |    4 +-
 .../translations/zh_CN/kbuild/kbuild.rst      |    2 +-
 .../zh_CN/process/coding-style.rst            |    2 +-
 .../zh_TW/process/coding-style.rst            |    2 +-
 Documentation/userspace-api/media/Makefile    |    2 +-
 MAINTAINERS                                   |   11 +-
 Makefile                                      |    2 +-
 drivers/gpu/drm/i915/Makefile                 |    2 +-
 scripts/kernel-doc                            |    1 -
 scripts/kernel-doc.pl                         | 2439 -----------------
 .../doc}/check-variable-fonts.sh              |    2 +-
 {scripts => tools/doc}/checktransupdate.py    |    8 +-
 .../doc}/documentation-file-ref-check         |    2 +-
 .../scripts => tools/doc}/features-refresh.sh |    0
 {scripts => tools/doc}/find-unused-docs.sh    |    8 +-
 {scripts => tools/doc}/get_abi.py             |    0
 {scripts => tools/doc}/get_feat.pl            |    2 +-
 scripts/kernel-doc.py => tools/doc/kernel-doc |    0
 .../features => tools/doc}/list-arch.sh       |    2 +-
 .../sphinx => tools/doc}/parallel-wrapper.sh  |    0
 .../sphinx => tools/doc}/parse-headers.pl     |    4 +-
 {scripts => tools/doc}/sphinx-pre-install     |    2 +-
 {scripts => tools/doc}/split-man.pl           |    0
 {scripts => tools/doc}/test_doc_build.py      |    0
 46 files changed, 91 insertions(+), 2538 deletions(-)
 delete mode 120000 scripts/kernel-doc
 delete mode 100755 scripts/kernel-doc.pl
 rename {scripts => tools/doc}/check-variable-fonts.sh (98%)
 rename {scripts => tools/doc}/checktransupdate.py (98%)
 rename {scripts => tools/doc}/documentation-file-ref-check (99%)
 rename {Documentation/features/scripts => tools/doc}/features-refresh.sh (100%)
 rename {scripts => tools/doc}/find-unused-docs.sh (79%)
 rename {scripts => tools/doc}/get_abi.py (100%)
 rename {scripts => tools/doc}/get_feat.pl (99%)
 rename scripts/kernel-doc.py => tools/doc/kernel-doc (100%)
 rename {Documentation/features => tools/doc}/list-arch.sh (83%)
 rename {Documentation/sphinx => tools/doc}/parallel-wrapper.sh (100%)
 rename {Documentation/sphinx => tools/doc}/parse-headers.pl (98%)
 rename {scripts => tools/doc}/sphinx-pre-install (99%)
 rename {scripts => tools/doc}/split-man.pl (100%)
 rename {scripts => tools/doc}/test_doc_build.py (100%)

-- 
2.50.1
Re: [PATCH RFC 00/13] Collect documention-related tools under tools/doc
Posted by Jonathan Corbet 1 month, 3 weeks ago
[Adding some CCs - sorry, folks, I messed that part up somehow...]

Jonathan Corbet <corbet@lwn.net> writes:

> Our documentation-related tools are spread out over various directories;
> several are buried in the scripts/ dumping ground.  That makes them harder
> to discover and harder to maintain.
>
> Recently, the idea of creating a dedicated directory for documentation tools
> came up; I decided to see what it would look like.  This series creates a
> new directory, tools/doc, and moves various utilities there, hopefully
> fixing up all of the relevant references in the process.
>
> At the end, rather than move the old, Perl kernel-doc, I simply removed it.
>
> The big elephant lurking in this small room is the home for Python modules;
> I left them under scripts/lib, but that is an even less appropriate place
> than it was before.  I would propose either tools/python or lib/python;
> thoughts on that matter welcome.
>
>
> Jonathan Corbet (13):
>   docs: Move the "features" tools to tools/doc
>   docs: move checktransupdate.py to tools/doc
>   docs: move scripts/check-variable-fonts.sh to tools/doc
>   docs: move scripts/documentation-file-ref-check to tools/doc
>   docs: move parallel-wrapper.sh to tools/doc/
>   docs: move get_abi.py to tools/doc
>   docs: move sphinx-pre-install to tools/doc
>   docs: move test_doc_build.py to tools/doc
>   docs: move parse-headers.pl to tools/doc
>   docs: move kernel-doc to tools/doc
>   docs: move split-man.pl to tools/doc
>   docs: move find-unused-docs.sh to tools/doc
>   docs: remove kernel-doc.pl
>
>  Documentation/Kconfig                         |    2 +-
>  Documentation/Makefile                        |   24 +-
>  Documentation/conf.py                         |    2 +-
>  Documentation/doc-guide/checktransupdate.rst  |    6 +-
>  Documentation/doc-guide/contributing.rst      |    2 +-
>  Documentation/doc-guide/kernel-doc.rst        |   18 +-
>  Documentation/doc-guide/parse-headers.rst     |    6 +-
>  Documentation/doc-guide/sphinx.rst            |    6 +-
>  Documentation/kbuild/kbuild.rst               |    2 +-
>  Documentation/process/coding-style.rst        |    2 +-
>  Documentation/sphinx/kernel_abi.py            |    2 +-
>  Documentation/sphinx/kernel_feat.py           |    4 +-
>  Documentation/sphinx/kerneldoc-preamble.sty   |    2 +-
>  .../it_IT/doc-guide/kernel-doc.rst            |    8 +-
>  .../it_IT/doc-guide/parse-headers.rst         |    6 +-
>  .../translations/it_IT/doc-guide/sphinx.rst   |    4 +-
>  .../sp_SP/process/coding-style.rst            |    2 +-
>  .../zh_CN/doc-guide/checktransupdate.rst      |    6 +-
>  .../zh_CN/doc-guide/contributing.rst          |    2 +-
>  .../zh_CN/doc-guide/kernel-doc.rst            |   16 +-
>  .../zh_CN/doc-guide/parse-headers.rst         |    6 +-
>  .../translations/zh_CN/doc-guide/sphinx.rst   |    4 +-
>  Documentation/translations/zh_CN/how-to.rst   |    4 +-
>  .../translations/zh_CN/kbuild/kbuild.rst      |    2 +-
>  .../zh_CN/process/coding-style.rst            |    2 +-
>  .../zh_TW/process/coding-style.rst            |    2 +-
>  Documentation/userspace-api/media/Makefile    |    2 +-
>  MAINTAINERS                                   |   11 +-
>  Makefile                                      |    2 +-
>  drivers/gpu/drm/i915/Makefile                 |    2 +-
>  scripts/kernel-doc                            |    1 -
>  scripts/kernel-doc.pl                         | 2439 -----------------
>  .../doc}/check-variable-fonts.sh              |    2 +-
>  {scripts => tools/doc}/checktransupdate.py    |    8 +-
>  .../doc}/documentation-file-ref-check         |    2 +-
>  .../scripts => tools/doc}/features-refresh.sh |    0
>  {scripts => tools/doc}/find-unused-docs.sh    |    8 +-
>  {scripts => tools/doc}/get_abi.py             |    0
>  {scripts => tools/doc}/get_feat.pl            |    2 +-
>  scripts/kernel-doc.py => tools/doc/kernel-doc |    0
>  .../features => tools/doc}/list-arch.sh       |    2 +-
>  .../sphinx => tools/doc}/parallel-wrapper.sh  |    0
>  .../sphinx => tools/doc}/parse-headers.pl     |    4 +-
>  {scripts => tools/doc}/sphinx-pre-install     |    2 +-
>  {scripts => tools/doc}/split-man.pl           |    0
>  {scripts => tools/doc}/test_doc_build.py      |    0
>  46 files changed, 91 insertions(+), 2538 deletions(-)
>  delete mode 120000 scripts/kernel-doc
>  delete mode 100755 scripts/kernel-doc.pl
>  rename {scripts => tools/doc}/check-variable-fonts.sh (98%)
>  rename {scripts => tools/doc}/checktransupdate.py (98%)
>  rename {scripts => tools/doc}/documentation-file-ref-check (99%)
>  rename {Documentation/features/scripts => tools/doc}/features-refresh.sh (100%)
>  rename {scripts => tools/doc}/find-unused-docs.sh (79%)
>  rename {scripts => tools/doc}/get_abi.py (100%)
>  rename {scripts => tools/doc}/get_feat.pl (99%)
>  rename scripts/kernel-doc.py => tools/doc/kernel-doc (100%)
>  rename {Documentation/features => tools/doc}/list-arch.sh (83%)
>  rename {Documentation/sphinx => tools/doc}/parallel-wrapper.sh (100%)
>  rename {Documentation/sphinx => tools/doc}/parse-headers.pl (98%)
>  rename {scripts => tools/doc}/sphinx-pre-install (99%)
>  rename {scripts => tools/doc}/split-man.pl (100%)
>  rename {scripts => tools/doc}/test_doc_build.py (100%)
>
> -- 
> 2.50.1
Re: [PATCH RFC 00/13] Collect documention-related tools under tools/doc
Posted by Jani Nikula 1 month, 3 weeks ago
On Wed, 13 Aug 2025, Jonathan Corbet <corbet@lwn.net> wrote:
> Our documentation-related tools are spread out over various directories;
> several are buried in the scripts/ dumping ground.  That makes them harder
> to discover and harder to maintain.
>
> Recently, the idea of creating a dedicated directory for documentation tools
> came up; I decided to see what it would look like.  This series creates a
> new directory, tools/doc, and moves various utilities there, hopefully
> fixing up all of the relevant references in the process.
>
> At the end, rather than move the old, Perl kernel-doc, I simply removed it.

A wholehearted

Acked-by: Jani Nikula <jani.nikula@intel.com>

on all of it.

> The big elephant lurking in this small room is the home for Python modules;
> I left them under scripts/lib, but that is an even less appropriate place
> than it was before.  I would propose either tools/python or lib/python;
> thoughts on that matter welcome.

lib/ contains code that's built into the kernel, I think lib/python
would be out of place.

IMO tools/python (or tools/lib/python, no strong opinion) is more
appropriate.


BR,
Jani.


-- 
Jani Nikula, Intel
Re: [PATCH RFC 00/13] Collect documention-related tools under tools/doc
Posted by Randy Dunlap 1 month, 2 weeks ago

On 8/14/25 7:59 AM, Jani Nikula wrote:
> On Wed, 13 Aug 2025, Jonathan Corbet <corbet@lwn.net> wrote:
>> Our documentation-related tools are spread out over various directories;
>> several are buried in the scripts/ dumping ground.  That makes them harder
>> to discover and harder to maintain.
>>
>> Recently, the idea of creating a dedicated directory for documentation tools
>> came up; I decided to see what it would look like.  This series creates a
>> new directory, tools/doc, and moves various utilities there, hopefully
>> fixing up all of the relevant references in the process.
>>
>> At the end, rather than move the old, Perl kernel-doc, I simply removed it.
> 
> A wholehearted
> 
> Acked-by: Jani Nikula <jani.nikula@intel.com>
> 
> on all of it.

and
Acked-by: Randy Dunlap <rdunlap@infradead.org>
for the series.

along with using either of tools/doc/ or tools/docs/.

>> The big elephant lurking in this small room is the home for Python modules;
>> I left them under scripts/lib, but that is an even less appropriate place
>> than it was before.  I would propose either tools/python or lib/python;
>> thoughts on that matter welcome.
> 
> lib/ contains code that's built into the kernel, I think lib/python
> would be out of place.

Would tools/docs/lib be OK?
I wouldn't tie it up to a specific language,
but I don't have a strong opinion either way.

> IMO tools/python (or tools/lib/python, no strong opinion) is more
> appropriate.

-- 
~Randy
Re: [PATCH RFC 00/13] Collect documention-related tools under tools/doc
Posted by Jani Nikula 1 month, 2 weeks ago
On Thu, 14 Aug 2025, Randy Dunlap <rdunlap@infradead.org> wrote:
> Would tools/docs/lib be OK?
> I wouldn't tie it up to a specific language,
> but I don't have a strong opinion either way.

I think the question is, is the directory for libraries used by
documentation tools *or* for python libraries used by tools in general?

I would lean towards the latter, to not create another dilemma when a
library is used by both documentation and other tools.


BR,
Jani.

-- 
Jani Nikula, Intel
Re: [PATCH RFC 00/13] Collect documention-related tools under tools/doc
Posted by Mauro Carvalho Chehab 1 month, 3 weeks ago
Em Wed, 13 Aug 2025 15:31:59 -0600
Jonathan Corbet <corbet@lwn.net> escreveu:

> Our documentation-related tools are spread out over various directories;
> several are buried in the scripts/ dumping ground.  That makes them harder
> to discover and harder to maintain.
> 
> Recently, the idea of creating a dedicated directory for documentation tools
> came up; I decided to see what it would look like.  This series creates a
> new directory, tools/doc, and moves various utilities there, hopefully
> fixing up all of the relevant references in the process.

I would prefer tools/docs ;-)

The rationale is that it is common to have patches for Documentation
described with "docs:" prefix. Anyway, I don't mind that much.

Btw, one of my pending patch series is creating a new *.py script over
tools/docs (moving a script from Documentation/sphinx) ;-) 

> 
> At the end, rather than move the old, Perl kernel-doc, I simply removed it.
> 
> The big elephant lurking in this small room is the home for Python modules;
> I left them under scripts/lib, but that is an even less appropriate place
> than it was before.

Agreed.

> I would propose either tools/python or lib/python;
> thoughts on that matter welcome.

Wither way works for me.

> Jonathan Corbet (13):
>   docs: Move the "features" tools to tools/doc
>   docs: move checktransupdate.py to tools/doc
>   docs: move scripts/check-variable-fonts.sh to tools/doc
>   docs: move scripts/documentation-file-ref-check to tools/doc
>   docs: move parallel-wrapper.sh to tools/doc/
>   docs: move get_abi.py to tools/doc
>   docs: move sphinx-pre-install to tools/doc
>   docs: move test_doc_build.py to tools/doc
>   docs: move parse-headers.pl to tools/doc
>   docs: move kernel-doc to tools/doc
>   docs: move split-man.pl to tools/doc
>   docs: move find-unused-docs.sh to tools/doc
>   docs: remove kernel-doc.pl
> 
>  Documentation/Kconfig                         |    2 +-
>  Documentation/Makefile                        |   24 +-
>  Documentation/conf.py                         |    2 +-
>  Documentation/doc-guide/checktransupdate.rst  |    6 +-
>  Documentation/doc-guide/contributing.rst      |    2 +-
>  Documentation/doc-guide/kernel-doc.rst        |   18 +-
>  Documentation/doc-guide/parse-headers.rst     |    6 +-
>  Documentation/doc-guide/sphinx.rst            |    6 +-
>  Documentation/kbuild/kbuild.rst               |    2 +-
>  Documentation/process/coding-style.rst        |    2 +-
>  Documentation/sphinx/kernel_abi.py            |    2 +-
>  Documentation/sphinx/kernel_feat.py           |    4 +-
>  Documentation/sphinx/kerneldoc-preamble.sty   |    2 +-
>  .../it_IT/doc-guide/kernel-doc.rst            |    8 +-
>  .../it_IT/doc-guide/parse-headers.rst         |    6 +-
>  .../translations/it_IT/doc-guide/sphinx.rst   |    4 +-
>  .../sp_SP/process/coding-style.rst            |    2 +-
>  .../zh_CN/doc-guide/checktransupdate.rst      |    6 +-
>  .../zh_CN/doc-guide/contributing.rst          |    2 +-
>  .../zh_CN/doc-guide/kernel-doc.rst            |   16 +-
>  .../zh_CN/doc-guide/parse-headers.rst         |    6 +-
>  .../translations/zh_CN/doc-guide/sphinx.rst   |    4 +-
>  Documentation/translations/zh_CN/how-to.rst   |    4 +-
>  .../translations/zh_CN/kbuild/kbuild.rst      |    2 +-
>  .../zh_CN/process/coding-style.rst            |    2 +-
>  .../zh_TW/process/coding-style.rst            |    2 +-
>  Documentation/userspace-api/media/Makefile    |    2 +-
>  MAINTAINERS                                   |   11 +-
>  Makefile                                      |    2 +-
>  drivers/gpu/drm/i915/Makefile                 |    2 +-
>  scripts/kernel-doc                            |    1 -
>  scripts/kernel-doc.pl                         | 2439 -----------------
>  .../doc}/check-variable-fonts.sh              |    2 +-
>  {scripts => tools/doc}/checktransupdate.py    |    8 +-
>  .../doc}/documentation-file-ref-check         |    2 +-
>  .../scripts => tools/doc}/features-refresh.sh |    0
>  {scripts => tools/doc}/find-unused-docs.sh    |    8 +-
>  {scripts => tools/doc}/get_abi.py             |    0
>  {scripts => tools/doc}/get_feat.pl            |    2 +-
>  scripts/kernel-doc.py => tools/doc/kernel-doc |    0
>  .../features => tools/doc}/list-arch.sh       |    2 +-
>  .../sphinx => tools/doc}/parallel-wrapper.sh  |    0
>  .../sphinx => tools/doc}/parse-headers.pl     |    4 +-
>  {scripts => tools/doc}/sphinx-pre-install     |    2 +-
>  {scripts => tools/doc}/split-man.pl           |    0
>  {scripts => tools/doc}/test_doc_build.py      |    0
>  46 files changed, 91 insertions(+), 2538 deletions(-)
>  delete mode 120000 scripts/kernel-doc
>  delete mode 100755 scripts/kernel-doc.pl
>  rename {scripts => tools/doc}/check-variable-fonts.sh (98%)
>  rename {scripts => tools/doc}/checktransupdate.py (98%)
>  rename {scripts => tools/doc}/documentation-file-ref-check (99%)
>  rename {Documentation/features/scripts => tools/doc}/features-refresh.sh (100%)
>  rename {scripts => tools/doc}/find-unused-docs.sh (79%)
>  rename {scripts => tools/doc}/get_abi.py (100%)
>  rename {scripts => tools/doc}/get_feat.pl (99%)
>  rename scripts/kernel-doc.py => tools/doc/kernel-doc (100%)
>  rename {Documentation/features => tools/doc}/list-arch.sh (83%)

>  rename {Documentation/sphinx => tools/doc}/parallel-wrapper.sh (100%)
>  rename {Documentation/sphinx => tools/doc}/parse-headers.pl (98%)

I prefer if you don't touch those two. I'm already handling them.

Basically, parallel-wrapper.sh will be decommissioned; parse-readers.pl
will become parse-headers.py (on my series, at tools/docs, but if you
opt to tools/doc, I'll update it.

>  rename {scripts => tools/doc}/sphinx-pre-install (99%)
>  rename {scripts => tools/doc}/split-man.pl (100%)
>  rename {scripts => tools/doc}/test_doc_build.py (100%)

Thanks,
Mauro