summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/tests
diff options
context:
space:
mode:
authorMatthew Auld <matthew.auld@intel.com>2023-07-12 18:27:21 +0300
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-21 19:37:37 +0300
commit939902913a25a0feaa9ca34969dd7e5b43fc2502 (patch)
tree143727c36e51f07857424001f4b5f724b04fcb62 /drivers/gpu/drm/xe/tests
parent6a0612aeabcce6c951788384b94d503b99eefaca (diff)
downloadlinux-939902913a25a0feaa9ca34969dd7e5b43fc2502.tar.xz
drm/xe/selftests: hold rpm for ccs_test_migrate()
The GPU job will keep the device awake, however assumption here is that caller of xe_migrate_clear() is also holding mem_access.ref otherwise we hit the asserts in xe_sa_bo_flush_write() prior to the job construction. Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/tests')
-rw-r--r--drivers/gpu/drm/xe/tests/xe_bo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/tests/xe_bo.c b/drivers/gpu/drm/xe/tests/xe_bo.c
index a63f7a447ca4..16e92400e510 100644
--- a/drivers/gpu/drm/xe/tests/xe_bo.c
+++ b/drivers/gpu/drm/xe/tests/xe_bo.c
@@ -158,9 +158,13 @@ static int ccs_test_run_device(struct xe_device *xe)
return 0;
}
+ xe_device_mem_access_get(xe);
+
for_each_gt(gt, xe, id)
ccs_test_run_gt(xe, gt, test);
+ xe_device_mem_access_put(xe);
+
return 0;
}