diff mbox series

[2/2] rteval: Make timerlat the default for rteval

Message ID 20250618182758.57946-2-jkacur@redhat.com
State New
Headers show
Series [1/2] rteval: services.py: Fix SyntaxWarning | expand

Commit Message

John Kacur June 18, 2025, 6:27 p.m. UTC
Return timerlat to be the default measurement module for rteval
Also make the default base interval 100us to match cyclictest

Signed-off-by: John Kacur <jkacur@redhat.com>
---
 rteval.conf                            | 4 ++--
 rteval/modules/measurement/timerlat.py | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/rteval.conf b/rteval.conf
index 601410b51c28..46a9b1743716 100644
--- a/rteval.conf
+++ b/rteval.conf
@@ -6,8 +6,8 @@  duration:  60.0
 report_interval: 600
 
 [measurement]
-cyclictest: module
-# timerlat: module
+# cyclictest: module
+timerlat: module
 
 [loads]
 kcompile:  module
diff --git a/rteval/modules/measurement/timerlat.py b/rteval/modules/measurement/timerlat.py
index fe29f34bccbd..5bfc495217ea 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": 1100,
+                         "default": 100,
                          "metavar": "INTV_US"},
             "priority": {"descr": "Run rtla timerlat with this priority",
                          "default": 95,