diff options
author | Kenneth Graunke <[email protected]> | 2018-12-08 11:21:48 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:11 -0800 |
commit | b92ca4d0f6f3fae558ce83477599f7ae6d29c156 (patch) | |
tree | af4049ee427b007e56c8fcc0b59f9d19baa7cb9b /src/gallium/drivers/iris/iris_batch.c | |
parent | ad969a00c08630e428b937666c38e41cfb4a5221 (diff) |
iris: don't print the pointer in INTEL_DEBUG=submit
lots of noise in diff, hope was it would be useful for gdb, but the
the GEM handle is good enough
Diffstat (limited to 'src/gallium/drivers/iris/iris_batch.c')
-rw-r--r-- | src/gallium/drivers/iris/iris_batch.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gallium/drivers/iris/iris_batch.c b/src/gallium/drivers/iris/iris_batch.c index b9fa6d6dc2d..5a507655b23 100644 --- a/src/gallium/drivers/iris/iris_batch.c +++ b/src/gallium/drivers/iris/iris_batch.c @@ -100,15 +100,14 @@ dump_validation_list(struct iris_batch *batch) uint64_t flags = batch->validation_list[i].flags; assert(batch->validation_list[i].handle == batch->exec_bos[i]->gem_handle); - fprintf(stderr, "[%2d]: %2d %-14s %p %-7s @ 0x%016llx (%"PRIu64"B) - %d refs\n", + fprintf(stderr, "[%2d]: %2d %-14s @ 0x%016llx (%"PRIu64"B)\t %2d refs %s\n", i, batch->validation_list[i].handle, batch->exec_bos[i]->name, - batch->exec_bos[i], - (flags & EXEC_OBJECT_WRITE) ? "(write)" : "", batch->validation_list[i].offset, batch->exec_bos[i]->size, - batch->exec_bos[i]->refcount); + batch->exec_bos[i]->refcount, + (flags & EXEC_OBJECT_WRITE) ? " (write)" : ""); } } |