On Monday, November 5, 2018 5:02:49 AM PST Sergii Romantsov wrote:
> Message that may show the culprit of assert now will
> be dumped before that for debug purposes.
> 
> CC: Kenneth Graunke <kenn...@whitecape.org>
> CC: Lionel G Landwerlin <lionel.g.landwer...@intel.com>
> Signed-off-by: Sergii Romantsov <sergii.romant...@globallogic.com>
> ---
>  src/mesa/drivers/dri/i965/intel_batchbuffer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c 
> b/src/mesa/drivers/dri/i965/intel_batchbuffer.c
> index 8b769ea..353fcba 100644
> --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c
> +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c
> @@ -725,10 +725,10 @@ execbuffer(int fd,
>  
>        /* Update brw_bo::gtt_offset */
>        if (batch->validation_list[i].offset != bo->gtt_offset) {
> -         assert(!(bo->kflags & EXEC_OBJECT_PINNED));
>           DBG("BO %d migrated: 0x%" PRIx64 " -> 0x%llx\n",
>               bo->gem_handle, bo->gtt_offset,
>               batch->validation_list[i].offset);
> +         assert(!(bo->kflags & EXEC_OBJECT_PINNED));
>           bo->gtt_offset = batch->validation_list[i].offset;
>        }
>     }
> 

Pushed, thank you!

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to