projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2eb460a
)
drm/xe: Add caller info to xe_gt_reset_async
author
Nirmoy Das
<nirmoy.das@intel.com>
Wed, 16 Oct 2024 14:17:17 +0000
(16:17 +0200)
committer
Nirmoy Das
<nirmoy.das@intel.com>
Thu, 17 Oct 2024 12:56:34 +0000
(14:56 +0200)
Add caller info to the xe_gt_reset_async() to help debug issues.
v2: s/%pS/%ps(Matt)
Cc: Matthew Auld <matthew.auld@intel.com>
Link:
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2874
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20241016141717.881143-1-nirmoy.das@intel.com
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
drivers/gpu/drm/xe/xe_gt.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/xe/xe_gt.c
b/drivers/gpu/drm/xe/xe_gt.c
index
1c79660
..
df2fe40
100644
(file)
--- a/
drivers/gpu/drm/xe/xe_gt.c
+++ b/
drivers/gpu/drm/xe/xe_gt.c
@@
-834,7
+834,7
@@
static void gt_reset_worker(struct work_struct *w)
void xe_gt_reset_async(struct xe_gt *gt)
{
- xe_gt_info(gt, "trying reset
\n"
);
+ xe_gt_info(gt, "trying reset
from %ps\n", __builtin_return_address(0)
);
/* Don't do a reset while one is already in flight */
if (!xe_fault_inject_gt_reset() && xe_uc_reset_prepare(>->uc))