8445cd91a1
We use the CentOS 8 version of the source package and apply the same six patches that we applied to the previous version, with one caveat. Patch 3 had an additional test in it of the uncalibrated state, and this test does not exist in the upstream version of the patch. Now patch 3 is identical to the upstream version. All five upstream patches have been refreshed to what was actually accepted upstream and thus now contain proper git headers. The logic of those five patches remain as they were, with the one exception noted in the previous paragraph. Patch 6 has also now been given a proper git header. Change-Id: Ifd44680d2f190dc0c5662bd05bd214fccf50a2fd Story: 2009130 Task: 43199 Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From 3bf4f1784fa0a03a252961f400a78d963773f8f5 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <3bf4f1784fa0a03a252961f400a78d963773f8f5.1630611367.git.Jim.Somerville@windriver.com>
|
|
In-Reply-To: <0389752e3aecf8d2b2743f16ce1408a58088bea9.1630611367.git.Jim.Somerville@windriver.com>
|
|
References: <0389752e3aecf8d2b2743f16ce1408a58088bea9.1630611367.git.Jim.Somerville@windriver.com>
|
|
From: Miroslav Lichvar <mlichvar@redhat.com>
|
|
Date: Mon, 31 May 2021 11:07:56 +0200
|
|
Subject: [PATCH 5/6] clockcheck: Increase minimum interval.
|
|
|
|
Increase the minimum check interval to 1 second to measure the frequency
|
|
offset more accurately and with default configuration make false
|
|
positives less likely due to a heavily overloaded system.
|
|
|
|
Signed-off-by: Miroslav Lichvar <mlichvar@redhat.com>
|
|
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
|
|
[commit a082bcd700e4955ebaa00d7039bf4bce92048ac4 upstream]
|
|
Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
|
|
---
|
|
clockcheck.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/clockcheck.c b/clockcheck.c
|
|
index d0b4714..f0141be 100644
|
|
--- a/clockcheck.c
|
|
+++ b/clockcheck.c
|
|
@@ -23,7 +23,7 @@
|
|
#include "clockcheck.h"
|
|
#include "print.h"
|
|
|
|
-#define CHECK_MIN_INTERVAL 100000000
|
|
+#define CHECK_MIN_INTERVAL 1000000000
|
|
#define CHECK_MAX_FREQ 900000000
|
|
|
|
struct clockcheck {
|
|
--
|
|
2.29.2
|
|
|