[PATCH 0/8] Fix public/private kernel-doc issues
From: Mauro Carvalho Chehab
Date: Mon Mar 09 2026 - 12:48:20 EST
Hi Jon,
This patch set fixes public/private handling inside comments.
The current logic has currently an issue: it breaks nested
structs if private: is not followed by public:.
It also solves a currently undefined behavior: now,
public/private are applied only to the current and
inner statements. So, if one does:
struct {
struct {
/* private: */
int a;
struct {
int b;
};
};
int c;
};
The output will be:
struct {
int c;
};
Besides making sensing itself, the new behavior solves
an issue when struct_group() macros are used, as the
private from one struct_group won't propagate to other
ones nor to the struct encapsulating one or more
struct_group().
This series start with 2 unittests to detect the problem.
If you apply those two patches and run the unit test,
you'll be able to see the issue.
After applying the changes, it renames the unit test,
making it test directly the code there, instead of the
current wrapper at kdoc_re, and add more tests meant
to check the tokenizer itself.
-
As commented previously, I'm now working on a patchset
using the tokenizer for NestedMatch. I have already
some code here, but not properly tested yet.
Anyway, the idea is to keep submitting it in small
chunks, to make it easier to review.
Mauro Carvalho Chehab (8):
docs: python: add helpers to run unit tests
unittests: add a testbench to check public/private kdoc comments
docs: kdoc: don't add broken comments inside prototypes
docs: kdoc: properly handle empty enum arguments
docs: kdoc_re: add a C tokenizer
docs: kdoc: use tokenizer to handle comments on structs
unittests: test_private: modify it to use CTokenizer directly
unittests: test_tokenizer: check if the tokenizer works
Documentation/tools/python.rst | 2 +
Documentation/tools/unittest.rst | 24 ++
tools/lib/python/kdoc/kdoc_parser.py | 25 +-
tools/lib/python/kdoc/kdoc_re.py | 234 ++++++++++++++
tools/lib/python/unittest_helper.py | 353 ++++++++++++++++++++
tools/unittests/test_tokenizer.py | 462 +++++++++++++++++++++++++++
6 files changed, 1088 insertions(+), 12 deletions(-)
create mode 100644 Documentation/tools/unittest.rst
create mode 100755 tools/lib/python/unittest_helper.py
create mode 100755 tools/unittests/test_tokenizer.py
--
2.52.0