Mesa (master): util/u_log: flush auto loggers before starting a new page

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Apr 25 10:37:35 UTC 2019


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

Author: Nicolai Hähnle <nicolai.haehnle at amd.com>
Date:   Tue Feb 26 16:22:02 2019 +0100

util/u_log: flush auto loggers before starting a new page

Without this, command stream dumps of radeonsi may misleadingly end up
in a later page.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/auxiliary/util/u_log.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/gallium/auxiliary/util/u_log.c b/src/gallium/auxiliary/util/u_log.c
index 90fd24ca394..095421edd06 100644
--- a/src/gallium/auxiliary/util/u_log.c
+++ b/src/gallium/auxiliary/util/u_log.c
@@ -187,6 +187,8 @@ out_of_memory:
 void
 u_log_new_page_print(struct u_log_context *ctx, FILE *stream)
 {
+   u_log_flush(ctx);
+
    if (ctx->cur) {
       u_log_page_print(ctx->cur, stream);
       u_log_page_destroy(ctx->cur);
@@ -202,6 +204,8 @@ u_log_new_page_print(struct u_log_context *ctx, FILE *stream)
 struct u_log_page *
 u_log_new_page(struct u_log_context *ctx)
 {
+   u_log_flush(ctx);
+
    struct u_log_page *page = ctx->cur;
    ctx->cur = NULL;
    return page;




More information about the mesa-commit mailing list