From 0e269c0ac2d98dd3a30a7af32a5a1895a0df96b5 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Thu, 7 Mar 2019 16:14:13 +0000 Subject: [PATCH] iris: fix decoder call Signed-off-by: Lionel Landwerlin Fixes: acb50d6b1ff1b7 ("intel/decoders: handle decoding MI_BBS from ring") --- src/gallium/drivers/iris/iris_batch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_batch.c b/src/gallium/drivers/iris/iris_batch.c index 1e6f4681e71..f6362fd684a 100644 --- a/src/gallium/drivers/iris/iris_batch.c +++ b/src/gallium/drivers/iris/iris_batch.c @@ -145,7 +145,7 @@ decode_batch(struct iris_batch *batch) { void *map = iris_bo_map(batch->dbg, batch->exec_bos[0], MAP_READ); gen_print_batch(&batch->decoder, map, batch->primary_batch_size, - batch->exec_bos[0]->gtt_offset); + batch->exec_bos[0]->gtt_offset, false); } void -- 2.30.2