From: Matthew Auld Date: Wed, 12 Jul 2023 15:27:21 +0000 (+0100) Subject: drm/xe/selftests: hold rpm for ccs_test_migrate() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=939902913a25a0feaa9ca34969dd7e5b43fc2502;p=linux.git 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 Cc: Matthew Brost Reviewed-by: Nirmoy Das Signed-off-by: Rodrigo Vivi --- diff --git a/drivers/gpu/drm/xe/tests/xe_bo.c b/drivers/gpu/drm/xe/tests/xe_bo.c index a63f7a447ca45..16e92400e5104 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; }