c01d34c Ticket 50265: the warning about skew time could last forever

Authored and Committed by lkrispen 5 years ago
    Ticket 50265: the warning about skew time could last forever
    
    Bug: if the local system time is set back more than 300 seconds
    	a worning about too much time skew is logged and the sampled
    	time is updated. This adjustment is done at every write operation
    	and can increase the time skew and be logged infinitely
    
    Fix: the intention of the adjustment was to avoid a roll over of seq_num
    	if the sampled time is not increased for more than 65k oberations.
    	But this is already handled with an explicite check for seq_num
    	rollover. The extra adjustment for negative time skew can be removed.
    
    Reviewed by: Thierry, William. Thanks.
    
        
file modified
+7 -15