commit | 6720a305df74ca30bcc10fc316881641b6ff0c80 | [log] [tgz] |
---|---|---|
author | Linus Torvalds <torvalds@linux-foundation.org> | Thu Jun 23 12:11:17 2016 -0700 |
committer | Linus Torvalds <torvalds@linux-foundation.org> | Thu Jun 23 12:11:17 2016 -0700 |
tree | 3e7f20a6756579c4a155dca37ebdf088b4305ecf | |
parent | f9020d17416ae62f1b1c6459d61e65abb4af79b5 [diff] |
locking: avoid passing around 'thread_info' in mutex debugging code 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>