intel/common: fix mi_builder_test issue
Fixes intel_gfx20_mi_builder_test failures on LNL.
Fixes: bb31287d24 ("intel: Initialize upper 32bits of drm_xe_sync.handle")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33366>
This commit is contained in:
@@ -592,7 +592,7 @@ mi_builder_test::submit_batch()
|
||||
struct drm_xe_sync exec_syncs[] = {
|
||||
{
|
||||
.type = DRM_XE_SYNC_TYPE_SYNCOBJ,
|
||||
.handle = sync_handles[0],
|
||||
.addr = 0,
|
||||
},
|
||||
{
|
||||
.type = DRM_XE_SYNC_TYPE_SYNCOBJ,
|
||||
@@ -600,7 +600,8 @@ mi_builder_test::submit_batch()
|
||||
.addr = 0,
|
||||
}
|
||||
};
|
||||
exec_syncs[0].handle = sync_handles[1];
|
||||
exec_syncs[0].handle = sync_handles[0];
|
||||
exec_syncs[1].handle = sync_handles[1];
|
||||
|
||||
struct drm_xe_exec exec = {
|
||||
.exec_queue_id = xe.queue_id,
|
||||
|
||||
Reference in New Issue
Block a user