Mesa (master): mesa: only report up to 50 _mesa_problem() calls

Brian Paul brianp at kemper.freedesktop.org
Fri Mar 18 02:32:55 UTC 2011


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

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Mar 17 20:31:58 2011 -0600

mesa: only report up to 50 _mesa_problem() calls

http://bugs.freedesktop.org/show_bug.cgi?id=35200 reports a disk
partition getting filled because of warning messages.  Stop emitting
after 50.

---

 src/mesa/main/imports.c |   16 +++++++++++-----
 1 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c
index bf89815..f262b25 100644
--- a/src/mesa/main/imports.c
+++ b/src/mesa/main/imports.c
@@ -930,14 +930,20 @@ _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... )
 {
    va_list args;
    char str[MAXSTRING];
+   static int numCalls = 0;
+
    (void) ctx;
 
-   va_start( args, fmtString );  
-   vsnprintf( str, MAXSTRING, fmtString, args );
-   va_end( args );
+   if (numCalls < 50) {
+      numCalls++;
 
-   fprintf(stderr, "Mesa %s implementation error: %s\n", MESA_VERSION_STRING, str);
-   fprintf(stderr, "Please report at bugs.freedesktop.org\n");
+      va_start( args, fmtString );  
+      vsnprintf( str, MAXSTRING, fmtString, args );
+      va_end( args );
+      fprintf(stderr, "Mesa %s implementation error: %s\n",
+              MESA_VERSION_STRING, str);
+      fprintf(stderr, "Please report at bugs.freedesktop.org\n");
+   }
 }
 
 




More information about the mesa-commit mailing list