Mesa (master): v3d: add missing line break for performance debug message

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Sep 13 07:37:43 UTC 2019


Module: Mesa
Branch: master
Commit: b69f51a5efa854dea5c123733e4d0134e2c38930
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b69f51a5efa854dea5c123733e4d0134e2c38930

Author: Iago Toral Quiroga <itoral at igalia.com>
Date:   Mon Sep  9 12:52:16 2019 +0200

v3d: add missing line break for performance debug message

Reviewed-by: Eric Anholt <eric at anholt.net>

---

 src/gallium/drivers/v3d/v3d_job.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/v3d/v3d_job.c b/src/gallium/drivers/v3d/v3d_job.c
index 50ea7ef859c..d16896ce0d8 100644
--- a/src/gallium/drivers/v3d/v3d_job.c
+++ b/src/gallium/drivers/v3d/v3d_job.c
@@ -454,7 +454,7 @@ v3d_read_and_accumulate_primitive_counters(struct v3d_context *v3d)
 {
         assert(v3d->prim_counts);
 
-        perf_debug("stalling on TF counts readback");
+        perf_debug("stalling on TF counts readback\n");
         struct v3d_resource *rsc = v3d_resource(v3d->prim_counts);
         if (v3d_bo_wait(rsc->bo, PIPE_TIMEOUT_INFINITE, "prim-counts")) {
                 uint32_t *map = v3d_bo_map(rsc->bo);




More information about the mesa-commit mailing list