|
@@ -811,7 +811,7 @@ ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
@@ -824,10 +824,10 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(__ww_mutex_lock);
|
|
|
+EXPORT_SYMBOL_GPL(ww_mutex_lock);
|
|
|
|
|
|
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;
|
|
|
|
|
@@ -841,7 +841,7 @@ __ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
-EXPORT_SYMBOL_GPL(__ww_mutex_lock_interruptible);
|
|
|
+EXPORT_SYMBOL_GPL(ww_mutex_lock_interruptible);
|
|
|
|
|
|
#endif
|
|
|
|
|
@@ -1019,7 +1019,7 @@ EXPORT_SYMBOL(mutex_trylock);
|
|
|
|
|
|
#ifndef CONFIG_DEBUG_LOCK_ALLOC
|
|
|
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();
|
|
|
|
|
@@ -1031,10 +1031,10 @@ __ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
|
|
|
|
|
|
return __ww_mutex_lock_slowpath(lock, ctx);
|
|
|
}
|
|
|
-EXPORT_SYMBOL(__ww_mutex_lock);
|
|
|
+EXPORT_SYMBOL(ww_mutex_lock);
|
|
|
|
|
|
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();
|
|
|
|
|
@@ -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);
|
|
|
}
|
|
|
-EXPORT_SYMBOL(__ww_mutex_lock_interruptible);
|
|
|
+EXPORT_SYMBOL(ww_mutex_lock_interruptible);
|
|
|
|
|
|
#endif
|
|
|
|