conf: increase default minsamples and polltarget

Change default minsamples to 6 and polltarget to 8. This should improve
stability with extremely small jitters (e.g. HW timestamping) and not
decrease time accuracy at minimum polling interval too much.
This commit is contained in:
Miroslav Lichvar
2016-12-02 09:15:42 +01:00
parent 3513484852
commit a049c9e0f8
4 changed files with 5 additions and 5 deletions

2
conf.c
View File

@@ -148,7 +148,7 @@ static double max_offset;
/* Maximum and minimum number of samples per source */
static int max_samples = 0; /* no limit */
static int min_samples = 0;
static int min_samples = 6;
/* Threshold for a time adjustment to be logged to syslog */
static double log_change_threshold = 1.0;