summaryrefslogtreecommitdiff
path: root/kernel/locking/mutex-debug.h (follow)
Commit message (Collapse)AuthorAge
* UPSTREAM: locking: avoid passing around 'thread_info' in mutex debugging codeLinus Torvalds2017-08-14
| | | | | | | | | | | | | | | | | commit 6720a305df74ca30bcc10fc316881641b6ff0c80 upstream. None of the code actually wants a thread_info, it all wants a task_struct, and it's just converting back and forth between the two ("ti->task" to get the task_struct from the thread_info, and "task_thread_info(task)" to go the other way). No semantic change. Acked-by: Peter Zijlstra <peterz@infradead.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Change-Id: Idd7d0fe0b2b57ece9a969d178576a12f3ae90701 Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
* locking: Move the mutex code to kernel/locking/Peter Zijlstra2013-11-06
Suggested-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/n/tip-1ditvncg30dgbpvrz2bxfmke@git.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>