rteval/rteval-Change-the-default-interval-for-timerlat-to-1100us.patch
John Kacur 1ed9f604b4 Make cyclictest the default measurement module for rteval
- Make cyclictest the default measurement module for rteval
 - Make the default interval for timerlat in rteval 1100us
Resolves: RHEL-78394

Signed-off-by: John Kacur <jkacur@redhat.com>
2025-02-07 15:00:11 -05:00

32 lines
1.2 KiB
Diff

From 686fefa1e63da70b0c3e4da9ea816e334fef1782 Mon Sep 17 00:00:00 2001
From: John Kacur <jkacur@redhat.com>
Date: Fri, 7 Feb 2025 14:31:14 -0500
Subject: [PATCH 1/2] rteval: Change the default interval for timerlat to
1100us
Change the default interval for timerlat in rteval to 1100us to make it less
likely to encounter a hang in rtla timerlat hist, until we have a better
solution.
Signed-off-by: John Kacur <jkacur@redhat.com>
---
rteval/modules/measurement/timerlat.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rteval/modules/measurement/timerlat.py b/rteval/modules/measurement/timerlat.py
index 5bfc495217ea..fe29f34bccbd 100644
--- a/rteval/modules/measurement/timerlat.py
+++ b/rteval/modules/measurement/timerlat.py
@@ -509,7 +509,7 @@ class Timerlat(rtevalModulePrototype):
def ModuleParameters():
""" default parameters """
return {"interval": {"descr": "Base interval or period of threads in microseconds",
- "default": 100,
+ "default": 1100,
"metavar": "INTV_US"},
"priority": {"descr": "Run rtla timerlat with this priority",
"default": 95,
--
2.48.1