We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572239f commit 5e2d1d4Copy full SHA for 5e2d1d4
drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1375,6 +1375,8 @@ static void __guc_exec_queue_process_msg_resume(struct xe_sched_msg *msg)
1375
1376
static void guc_exec_queue_process_msg(struct xe_sched_msg *msg)
1377
{
1378
+ struct xe_device *xe = guc_to_xe(exec_queue_to_guc(msg->private_data));
1379
+
1380
trace_xe_sched_msg_recv(msg);
1381
1382
switch (msg->opcode) {
@@ -1394,7 +1396,7 @@ static void guc_exec_queue_process_msg(struct xe_sched_msg *msg)
1394
1396
XE_WARN_ON("Unknown message type");
1395
1397
}
1398
- xe_pm_runtime_put(guc_to_xe(exec_queue_to_guc(msg->private_data)));
1399
+ xe_pm_runtime_put(xe);
1400
1401
1402
static const struct drm_sched_backend_ops drm_sched_ops = {
0 commit comments