From: adilger Date: Tue, 21 Jul 2009 17:15:20 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_230~54 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=4828d6803febd381cf442711a19b70210e30b745;p=fs%2Flustre-release.git Branch HEAD Fix error message to reflect reality of 3 watchdogs per time period. --- diff --git a/libcfs/libcfs/watchdog.c b/libcfs/libcfs/watchdog.c index e3fd951..565c71c2 100644 --- a/libcfs/libcfs/watchdog.c +++ b/libcfs/libcfs/watchdog.c @@ -160,7 +160,7 @@ static void lcw_cb(ulong_ptr_t data) if (delta_time < libcfs_watchdog_ratelimit && lcw_recent_watchdog_count > 3) { CWARN("Refusing to fire watchdog for pid %d: it was inactive " - "for %lu.%.02lus. Rate limiting 1 per %d seconds.\n", + "for %lu.%.02lus. Rate limiting 3 per %d seconds.\n", (int)lcw->lcw_pid, timediff.tv_sec, timediff.tv_usec / 10000, libcfs_watchdog_ratelimit); } else {