Commit c5470b22 authored by Nicolai Hähnle's avatar Nicolai Hähnle Committed by Ingo Molnar

locking/ww_mutex: Remove the __ww_mutex_lock*() inline wrappers

Keep the documentation in the header file since there is no good place
for it in mutex.c: there are two rather different implementations with
different EXPORT_SYMBOLs for each function.
Signed-off-by: default avatarNicolai Hähnle <nicolai.haehnle@amd.com>
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Cc: =?UTF-8?q?Nicolai=20H=C3=A4hnle?= <Nicolai.Haehnle@amd.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Maarten Lankhorst <dev@mblankhorst.nl>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: dri-devel@lists.freedesktop.org
Link: http://lkml.kernel.org/r/1482346000-9927-6-git-send-email-nhaehnle@gmail.comSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent ea9e0fb8
...@@ -186,11 +186,6 @@ static inline void ww_acquire_fini(struct ww_acquire_ctx *ctx) ...@@ -186,11 +186,6 @@ static inline void ww_acquire_fini(struct ww_acquire_ctx *ctx)
#endif #endif
} }
extern int __must_check __ww_mutex_lock(struct ww_mutex *lock,
struct ww_acquire_ctx *ctx);
extern int __must_check __ww_mutex_lock_interruptible(struct ww_mutex *lock,
struct ww_acquire_ctx *ctx);
/** /**
* ww_mutex_lock - acquire the w/w mutex * ww_mutex_lock - acquire the w/w mutex
* @lock: the mutex to be acquired * @lock: the mutex to be acquired
...@@ -220,10 +215,8 @@ extern int __must_check __ww_mutex_lock_interruptible(struct ww_mutex *lock, ...@@ -220,10 +215,8 @@ extern int __must_check __ww_mutex_lock_interruptible(struct ww_mutex *lock,
* *
* A mutex acquired with this function must be released with ww_mutex_unlock. * A mutex acquired with this function must be released with ww_mutex_unlock.
*/ */
static inline int ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) extern int __must_check ww_mutex_lock(struct ww_mutex *lock,
{ struct ww_acquire_ctx *ctx);
return __ww_mutex_lock(lock, ctx);
}
/** /**
* ww_mutex_lock_interruptible - acquire the w/w mutex, interruptible * ww_mutex_lock_interruptible - acquire the w/w mutex, interruptible
...@@ -255,11 +248,8 @@ static inline int ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ct ...@@ -255,11 +248,8 @@ static inline int ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ct
* *
* A mutex acquired with this function must be released with ww_mutex_unlock. * A mutex acquired with this function must be released with ww_mutex_unlock.
*/ */
static inline int __must_check ww_mutex_lock_interruptible(struct ww_mutex *lock, extern int __must_check ww_mutex_lock_interruptible(struct ww_mutex *lock,
struct ww_acquire_ctx *ctx) struct ww_acquire_ctx *ctx);
{
return __ww_mutex_lock_interruptible(lock, ctx);
}
/** /**
* ww_mutex_lock_slow - slowpath acquiring of the w/w mutex * ww_mutex_lock_slow - slowpath acquiring of the w/w mutex
......
...@@ -811,7 +811,7 @@ ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ...@@ -811,7 +811,7 @@ ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
} }
int __sched int __sched
__ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
{ {
int ret; int ret;
...@@ -824,10 +824,10 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ...@@ -824,10 +824,10 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
return ret; return ret;
} }
EXPORT_SYMBOL_GPL(__ww_mutex_lock); EXPORT_SYMBOL_GPL(ww_mutex_lock);
int __sched int __sched
__ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
{ {
int ret; int ret;
...@@ -841,7 +841,7 @@ __ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ...@@ -841,7 +841,7 @@ __ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
return ret; return ret;
} }
EXPORT_SYMBOL_GPL(__ww_mutex_lock_interruptible); EXPORT_SYMBOL_GPL(ww_mutex_lock_interruptible);
#endif #endif
...@@ -1019,7 +1019,7 @@ EXPORT_SYMBOL(mutex_trylock); ...@@ -1019,7 +1019,7 @@ EXPORT_SYMBOL(mutex_trylock);
#ifndef CONFIG_DEBUG_LOCK_ALLOC #ifndef CONFIG_DEBUG_LOCK_ALLOC
int __sched int __sched
__ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
{ {
might_sleep(); might_sleep();
...@@ -1031,10 +1031,10 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ...@@ -1031,10 +1031,10 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
return __ww_mutex_lock_slowpath(lock, ctx); return __ww_mutex_lock_slowpath(lock, ctx);
} }
EXPORT_SYMBOL(__ww_mutex_lock); EXPORT_SYMBOL(ww_mutex_lock);
int __sched int __sched
__ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
{ {
might_sleep(); might_sleep();
...@@ -1046,7 +1046,7 @@ __ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx) ...@@ -1046,7 +1046,7 @@ __ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
return __ww_mutex_lock_interruptible_slowpath(lock, ctx); return __ww_mutex_lock_interruptible_slowpath(lock, ctx);
} }
EXPORT_SYMBOL(__ww_mutex_lock_interruptible); EXPORT_SYMBOL(ww_mutex_lock_interruptible);
#endif #endif
......
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