mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 09:20:13 -04:00
Merge tag 'drm-xe-next-fixes-2026-08-20' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-next
Couple commits cleaning up error messages. Signed-off-by: Dave Airlie <airlied@redhat.com> From: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patch.msgid.link/aocSC19By5UIIbTZ@intel.com
This commit is contained in:
@@ -198,8 +198,7 @@ static void xe_migrate_sanity_test(struct xe_migrate *m, struct kunit *test,
|
||||
|
||||
err = xe_bo_vmap(bo);
|
||||
if (err) {
|
||||
KUNIT_FAIL(test, "Failed to vmap our pagetables: %li\n",
|
||||
PTR_ERR(bo));
|
||||
KUNIT_FAIL(test, "Failed to vmap our pagetables: %d\n", err);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -1559,8 +1559,14 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
|
||||
if (!skip_timeout_check && !check_timeout(q, job))
|
||||
goto rearm;
|
||||
|
||||
/*
|
||||
* Killed queues must not newly wedge the device, but preserve an
|
||||
* already-wedged state to avoid warning on teardown timeouts.
|
||||
*/
|
||||
if (!exec_queue_killed(q))
|
||||
wedged = guc_submit_hint_wedged(exec_queue_to_guc(q));
|
||||
else
|
||||
wedged = xe_device_wedged(xe);
|
||||
|
||||
set_exec_queue_banned(q);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user