From: Chad Versace Date: Wed, 4 Jan 2017 20:33:56 +0000 (-0800) Subject: i965: Delete pending CCS and HiZ ops in intel_miptree_make_shareable() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=de0b0a3a9cfd25ac5082223322002710a23da8ab;p=mesa.git i965: Delete pending CCS and HiZ ops in intel_miptree_make_shareable() Fixes crash in piglit `egl_khr_gl_renderbuffer_image-clear-shared-image GL_DEPTH_COMPONENT24` on Skylake. The crash happened because blorp attempted to execute a pending hiz clear after the hiz buffer was deleted. Deleting the pending hiz ops when the hiz buffer gets deleted fixes the crash. For good measure, this patch also deletes all pending CCS/MCS ops when the CCS/MCS buffer gets deleted. I'm now aware of any bugs caused by the dangling ops, but deleting them is clearly the right thing to do. Cc: Ben Widawsky Reviewed-by: Jason Ekstrand Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99265 --- diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index 25f8f391456..ed514239e21 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -2338,6 +2338,12 @@ intel_miptree_make_shareable(struct brw_context *brw, drm_intel_bo_unreference(mt->mcs_buf->bo); free(mt->mcs_buf); mt->mcs_buf = NULL; + + /* Any pending MCS/CCS operations are no longer needed. Trying to + * execute any will likely crash due to the missing aux buffer. So let's + * delete all pending ops. + */ + exec_list_make_empty(&mt->color_resolve_map); } if (mt->hiz_buf) { @@ -2345,6 +2351,16 @@ intel_miptree_make_shareable(struct brw_context *brw, intel_miptree_all_slices_resolve_depth(brw, mt); intel_miptree_hiz_buffer_free(mt->hiz_buf); mt->hiz_buf = NULL; + + for (uint32_t l = mt->first_level; l <= mt->last_level; ++l) { + mt->level[l].has_hiz = false; + } + + /* Any pending HiZ operations are no longer needed. Trying to execute + * any will likely crash due to the missing aux buffer. So let's delete + * all pending ops. + */ + exec_list_make_empty(&mt->hiz_map); } }