Commit 9cebb552 authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds

[PATCH] lockdep: mutex section binutils workaround

Work around weird section nesting build bug causing smp-alternatives failures
under certain circumstances.
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarArjan van de Ven <arjan@linux.intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9a11b49a
...@@ -313,7 +313,7 @@ static inline int __mutex_trylock_slowpath(atomic_t *lock_count) ...@@ -313,7 +313,7 @@ static inline int __mutex_trylock_slowpath(atomic_t *lock_count)
* This function must not be used in interrupt context. The * This function must not be used in interrupt context. The
* mutex must be released by the same task that acquired it. * mutex must be released by the same task that acquired it.
*/ */
int fastcall mutex_trylock(struct mutex *lock) int fastcall __sched mutex_trylock(struct mutex *lock)
{ {
return __mutex_fastpath_trylock(&lock->count, return __mutex_fastpath_trylock(&lock->count,
__mutex_trylock_slowpath); __mutex_trylock_slowpath);
......
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