Commit 67a6de49 authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Ingo Molnar

locking/doc: Update references to kernel/mutex.c

Fix this docbook error:

  >> docproc: kernel/mutex.c: No such file or directory

by updating the stale references to kernel/mutex.c.

Reported-by: fengguang.wu@intel.com
Signed-off-by: default avatarPeter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/n/tip-34pikw1tlsskj65rrt5iusrq@git.kernel.orgSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 5ac68e7c
...@@ -1958,7 +1958,7 @@ machines due to caching. ...@@ -1958,7 +1958,7 @@ machines due to caching.
<chapter id="apiref-mutex"> <chapter id="apiref-mutex">
<title>Mutex API reference</title> <title>Mutex API reference</title>
!Iinclude/linux/mutex.h !Iinclude/linux/mutex.h
!Ekernel/mutex.c !Ekernel/locking/mutex.c
</chapter> </chapter>
<chapter id="apiref-futex"> <chapter id="apiref-futex">
......
...@@ -116,11 +116,11 @@ using mutexes at the moment, please let me know if you find any. ] ...@@ -116,11 +116,11 @@ using mutexes at the moment, please let me know if you find any. ]
Implementation of mutexes Implementation of mutexes
------------------------- -------------------------
'struct mutex' is the new mutex type, defined in include/linux/mutex.h 'struct mutex' is the new mutex type, defined in include/linux/mutex.h and
and implemented in kernel/mutex.c. It is a counter-based mutex with a implemented in kernel/locking/mutex.c. It is a counter-based mutex with a
spinlock and a wait-list. The counter has 3 states: 1 for "unlocked", spinlock and a wait-list. The counter has 3 states: 1 for "unlocked", 0 for
0 for "locked" and negative numbers (usually -1) for "locked, potential "locked" and negative numbers (usually -1) for "locked, potential waiters
waiters queued". queued".
the APIs of 'struct mutex' have been streamlined: the APIs of 'struct mutex' have been streamlined:
......
...@@ -131,7 +131,7 @@ static inline int mutex_is_locked(struct mutex *lock) ...@@ -131,7 +131,7 @@ static inline int mutex_is_locked(struct mutex *lock)
} }
/* /*
* See kernel/mutex.c for detailed documentation of these APIs. * See kernel/locking/mutex.c for detailed documentation of these APIs.
* Also see Documentation/mutex-design.txt. * Also see Documentation/mutex-design.txt.
*/ */
#ifdef CONFIG_DEBUG_LOCK_ALLOC #ifdef CONFIG_DEBUG_LOCK_ALLOC
......
/* /*
* kernel/mutex.c * kernel/locking/mutex.c
* *
* Mutexes: blocking mutual exclusion locks * Mutexes: blocking mutual exclusion locks
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment