diff options
author | Kees Cook <[email protected]> | 2023-12-14 16:13:54 -0800 |
---|---|---|
committer | Jonathan Corbet <[email protected]> | 2023-12-15 09:31:19 -0700 |
commit | eeddfa5be17ba0fa2d98874aa881683373bf7180 (patch) | |
tree | ef058268fee2eec5bcb6e42b0f0d348f3346eeff | |
parent | a3a27827452fdc64fb39698909df9a75021c018d (diff) |
docs: conf.py: Ignore __counted_by attribute
It seems that Sphinx is confused by the __counted_by attribute on struct
members. Add it to the list of known attributes.
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Cc: Jonathan Corbet <[email protected]>
Cc: "Gustavo A. R. Silva" <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Kees Cook <[email protected]>
Signed-off-by: Jonathan Corbet <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | Documentation/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 3a1a804c3a13..a3d1fe9dfcf9 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -106,6 +106,7 @@ if major >= 3: "__weak", "noinline", "__fix_address", + "__counted_by", # include/linux/memblock.h: "__init_memblock", |