[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 01/14] scripts/kernel-doc: strip QEMU_ from function definitio
From: |
Alex Bennée |
Subject: |
[PATCH v1 01/14] scripts/kernel-doc: strip QEMU_ from function definitions |
Date: |
Sat, 20 Mar 2021 13:36:53 +0000 |
Some packaged versions of Sphinx (fedora33/alpine so far) have issues
with the annotated C code that kernel-doc spits out. Without knowing
about things like QEMU_PLUGIN_EXPORT it chokes trying to understand
the code. Evidently this is a problem for the kernel as well as the
long stream of regex substitutions we add to in this patch can attest.
Fortunately we have a fairly common format for all our compiler
shenanigans as applied to functions so lets just filter them all out.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
scripts/kernel-doc | 3 +++
1 file changed, 3 insertions(+)
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index 4b19851b2d..240923d509 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -1745,6 +1745,9 @@ sub dump_function($$) {
)+
\)\)\s+//x;
+ # Strip QEMU specific compiler annotations
+ $prototype =~ s/QEMU_[A-Z_]+ +//;
+
# Yes, this truly is vile. We are looking for:
# 1. Return type (may be nothing if we're looking at a macro)
# 2. Function name
--
2.20.1
- [PATCH for 6.0 v1 00/14] fixes for rc1 (kernel-doc, semihosting, testing), Alex Bennée, 2021/03/20
- [PATCH v1 01/14] scripts/kernel-doc: strip QEMU_ from function definitions,
Alex Bennée <=
- [PATCH v1 08/14] linux-user/riscv: initialise the TaskState heap/stack info, Alex Bennée, 2021/03/20
- [PATCH v1 02/14] docs/devel: include the plugin API information from the headers, Alex Bennée, 2021/03/20
- [PATCH v1 05/14] semihosting: move semihosting tests to multiarch, Alex Bennée, 2021/03/20
- [PATCH v1 04/14] tools/virtiofsd: include --socket-group in help, Alex Bennée, 2021/03/20
- [PATCH v1 03/14] docs/devel: expand style section of memory management, Alex Bennée, 2021/03/20