From 1e0e79c9930e4d14cbbe49776c8c00a9f97139ce Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Thu, 4 Mar 2004 14:14:23 +0000 Subject: [PATCH] Just because the timecounter reads the same value on two samples after each other doesn't mean that nothing happened. --- sys/kern/kern_tc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c index 55dda34ff0d..f2a12a84664 100644 --- a/sys/kern/kern_tc.c +++ b/sys/kern/kern_tc.c @@ -670,10 +670,6 @@ pps_event(struct pps_state *pps, int event) return; } - /* Return if nothing really happened. */ - if (*pcount == pps->capcount) - return; - /* Convert the count to a timespec. */ tcount = pps->capcount - pps->capth->th_offset_count; tcount &= pps->capth->th_counter->tc_counter_mask;