* [Cluster-devel] [PATCH] qdiskd: Fix bad timer check - RHEL5
@ 2011-03-17 16:34 Lon Hohberger
0 siblings, 0 replies; only message in thread
From: Lon Hohberger @ 2011-03-17 16:34 UTC (permalink / raw)
To: cluster-devel.redhat.com
Resolves: rhbz#679274
Signed-off-by: Lon Hohberger <lhh@redhat.com>
Tested-by: Masanari Iida <masanari_iida@hp.com>
---
cman/qdisk/score.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/cman/qdisk/score.c b/cman/qdisk/score.c
index 2e8993d..1907e4a 100644
--- a/cman/qdisk/score.c
+++ b/cman/qdisk/score.c
@@ -107,7 +107,8 @@ fork_heuristic(struct h_data *h, struct timespec *now)
}
if (now->tv_sec < h->nextrun.tv_sec ||
- now->tv_nsec < h->nextrun.tv_nsec)
+ ((now->tv_sec == h->nextrun.tv_sec) &&
+ (now->tv_nsec < h->nextrun.tv_nsec)))
return 0;
h->nextrun.tv_sec = now->tv_sec + h->interval;
--
1.7.3.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-03-17 16:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-17 16:34 [Cluster-devel] [PATCH] qdiskd: Fix bad timer check - RHEL5 Lon Hohberger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).