aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kernel-hacking
diff options
context:
space:
mode:
authorAndré Almeida <andrealmeid@collabora.com>2021-10-12 10:55:49 -0300
committerPeter Zijlstra <peterz@infradead.org>2021-10-19 17:27:05 +0200
commitbc67f1c454fbc79b148f0b47227929da82f4b026 (patch)
tree9f3db2dd26ebca7f5dd6b6907832e962de7b098d /Documentation/kernel-hacking
parentfutex: Fix PREEMPT_RT build (diff)
downloadlinux-dev-bc67f1c454fbc79b148f0b47227929da82f4b026.tar.xz
linux-dev-bc67f1c454fbc79b148f0b47227929da82f4b026.zip
docs: futex: Fix kernel-doc references
Since the futex code was restructured, there's no futex.c file anymore and the implementation is split in various files. Point kernel-doc references to the new files. Signed-off-by: André Almeida <andrealmeid@collabora.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lkml.kernel.org/r/20211012135549.14451-1-andrealmeid@collabora.com
Diffstat (limited to 'Documentation/kernel-hacking')
-rw-r--r--Documentation/kernel-hacking/locking.rst14
1 files changed, 13 insertions, 1 deletions
diff --git a/Documentation/kernel-hacking/locking.rst b/Documentation/kernel-hacking/locking.rst
index 90bc3f51eda9..e6cd40663ea5 100644
--- a/Documentation/kernel-hacking/locking.rst
+++ b/Documentation/kernel-hacking/locking.rst
@@ -1352,7 +1352,19 @@ Mutex API reference
Futex API reference
===================
-.. kernel-doc:: kernel/futex.c
+.. kernel-doc:: kernel/futex/core.c
+ :internal:
+
+.. kernel-doc:: kernel/futex/futex.h
+ :internal:
+
+.. kernel-doc:: kernel/futex/pi.c
+ :internal:
+
+.. kernel-doc:: kernel/futex/requeue.c
+ :internal:
+
+.. kernel-doc:: kernel/futex/waitwake.c
:internal:
Further reading