Stefan Dirsch
199aa14a48
New stable release. Not sure if more changes are needed to enable the new NVK experimental driver, please verify OBS-URL: https://build.opensuse.org/request/show/1130356 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1248
21 lines
983 B
Diff
21 lines
983 B
Diff
commit 5d6f7baf3bc40a85b09e4088c8c3bccec6a7c82d
|
|
Author: Scott Bradnick <scott.bradnick@suse.com>
|
|
Date: Tue May 24 14:47:53 2022 -0400
|
|
|
|
Adjusting 'iris_batch.c' per 'https://gitlab.freedesktop.org/mesa/mesa/-/issues/5731'.
|
|
|
|
Index: mesa-23.3.0/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
===================================================================
|
|
--- mesa-23.3.0.orig/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
+++ mesa-23.3.0/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
@@ -308,8 +308,7 @@ i915_batch_submit(struct iris_batch *bat
|
|
(struct drm_i915_gem_exec_object2) {
|
|
.handle = bo->gem_handle,
|
|
.offset = bo->address,
|
|
- .flags = bo->real.kflags | (written ? EXEC_OBJECT_WRITE : 0) |
|
|
- (iris_bo_is_external(bo) ? 0 : EXEC_OBJECT_ASYNC),
|
|
+ .flags = bo->real.kflags | (written ? EXEC_OBJECT_WRITE : 0),
|
|
};
|
|
++validation_count;
|
|
}
|