Commit c4f08d72 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Jani Nikula

drm/locking: fix __stack_depot_* name conflict

Commit cd06ab2f ("drm/locking: add backtrace for locking contended
locks without backoff") added functions named __stack_depot_* in drm
which conflict with stack depot. Rename to __drm_stack_depot_*.

v2 by Jani:
- Also rename __stack_depot_print

References: https://lore.kernel.org/r/20211015202648.258445ef@canb.auug.org.au
Fixes: cd06ab2f ("drm/locking: add backtrace for locking contended locks without backoff")
Cc: Daniel Vetter <daniel@ffwll.ch>
Reviewed-by: default avatarDaniel Vetter <daniel@ffwll.ch>
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211018085113.27033-1-jani.nikula@intel.com
parent 43a1f146
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
static DEFINE_WW_CLASS(crtc_ww_class); static DEFINE_WW_CLASS(crtc_ww_class);
#if IS_ENABLED(CONFIG_DRM_DEBUG_MODESET_LOCK) #if IS_ENABLED(CONFIG_DRM_DEBUG_MODESET_LOCK)
static noinline depot_stack_handle_t __stack_depot_save(void) static noinline depot_stack_handle_t __drm_stack_depot_save(void)
{ {
unsigned long entries[8]; unsigned long entries[8];
unsigned int n; unsigned int n;
...@@ -89,7 +89,7 @@ static noinline depot_stack_handle_t __stack_depot_save(void) ...@@ -89,7 +89,7 @@ static noinline depot_stack_handle_t __stack_depot_save(void)
return stack_depot_save(entries, n, GFP_NOWAIT | __GFP_NOWARN); return stack_depot_save(entries, n, GFP_NOWAIT | __GFP_NOWARN);
} }
static void __stack_depot_print(depot_stack_handle_t stack_depot) static void __drm_stack_depot_print(depot_stack_handle_t stack_depot)
{ {
struct drm_printer p = drm_debug_printer("drm_modeset_lock"); struct drm_printer p = drm_debug_printer("drm_modeset_lock");
unsigned long *entries; unsigned long *entries;
...@@ -108,11 +108,11 @@ static void __stack_depot_print(depot_stack_handle_t stack_depot) ...@@ -108,11 +108,11 @@ static void __stack_depot_print(depot_stack_handle_t stack_depot)
kfree(buf); kfree(buf);
} }
#else /* CONFIG_DRM_DEBUG_MODESET_LOCK */ #else /* CONFIG_DRM_DEBUG_MODESET_LOCK */
static depot_stack_handle_t __stack_depot_save(void) static depot_stack_handle_t __drm_stack_depot_save(void)
{ {
return 0; return 0;
} }
static void __stack_depot_print(depot_stack_handle_t stack_depot) static void __drm_stack_depot_print(depot_stack_handle_t stack_depot)
{ {
} }
#endif /* CONFIG_DRM_DEBUG_MODESET_LOCK */ #endif /* CONFIG_DRM_DEBUG_MODESET_LOCK */
...@@ -266,7 +266,7 @@ EXPORT_SYMBOL(drm_modeset_acquire_fini); ...@@ -266,7 +266,7 @@ EXPORT_SYMBOL(drm_modeset_acquire_fini);
void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx) void drm_modeset_drop_locks(struct drm_modeset_acquire_ctx *ctx)
{ {
if (WARN_ON(ctx->contended)) if (WARN_ON(ctx->contended))
__stack_depot_print(ctx->stack_depot); __drm_stack_depot_print(ctx->stack_depot);
while (!list_empty(&ctx->locked)) { while (!list_empty(&ctx->locked)) {
struct drm_modeset_lock *lock; struct drm_modeset_lock *lock;
...@@ -286,7 +286,7 @@ static inline int modeset_lock(struct drm_modeset_lock *lock, ...@@ -286,7 +286,7 @@ static inline int modeset_lock(struct drm_modeset_lock *lock,
int ret; int ret;
if (WARN_ON(ctx->contended)) if (WARN_ON(ctx->contended))
__stack_depot_print(ctx->stack_depot); __drm_stack_depot_print(ctx->stack_depot);
if (ctx->trylock_only) { if (ctx->trylock_only) {
lockdep_assert_held(&ctx->ww_ctx); lockdep_assert_held(&ctx->ww_ctx);
...@@ -317,7 +317,7 @@ static inline int modeset_lock(struct drm_modeset_lock *lock, ...@@ -317,7 +317,7 @@ static inline int modeset_lock(struct drm_modeset_lock *lock,
ret = 0; ret = 0;
} else if (ret == -EDEADLK) { } else if (ret == -EDEADLK) {
ctx->contended = lock; ctx->contended = lock;
ctx->stack_depot = __stack_depot_save(); ctx->stack_depot = __drm_stack_depot_save();
} }
return ret; return ret;
......
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