dpif: Really don't log many dpif errors.
authorBen Pfaff <blp@nicira.com>
Tue, 6 Apr 2010 18:17:39 +0000 (11:17 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 6 Apr 2010 18:17:39 +0000 (11:17 -0700)
The comment here was out of touch with the actual definition.  Limiting a
log message to 9999 per minute is not much of a limit!

I suspect that I turned this way up during initial development at some
point and forgot to turn it down to a reasonable level.

lib/dpif.c

index 315f11f9dd72c078f078d79deedb1a41a165d759..8e5cf9ffcb36af7650f6485a46456b9289907e45 100644 (file)
@@ -58,7 +58,7 @@ static struct shash dpif_classes = SHASH_INITIALIZER(&dpif_classes);
 static struct vlog_rate_limit dpmsg_rl = VLOG_RATE_LIMIT_INIT(600, 600);
 
 /* Not really much point in logging many dpif errors. */
-static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(9999, 5);
+static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(60, 5);
 
 static void log_operation(const struct dpif *, const char *operation,
                           int error);