From 6c6ed7499e40c29da7dabfa2149350d13fb6496d Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Mon, 16 Sep 2024 17:01:13 +0200 Subject: [PATCH] automated: linux: rtla: use long options Write out the option name for the rtla commands. Signed-off-by: Daniel Wagner --- automated/linux/rtla/rtla-osnoise.sh | 6 +++--- automated/linux/rtla/rtla-timerlat.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/automated/linux/rtla/rtla-osnoise.sh b/automated/linux/rtla/rtla-osnoise.sh index aa5ec7c6b..2cfe63b1f 100755 --- a/automated/linux/rtla/rtla-osnoise.sh +++ b/automated/linux/rtla/rtla-osnoise.sh @@ -33,11 +33,11 @@ background_process_start bgcmd --cmd "${BACKGROUND_CMD}" # real-time priority FIFO:1, on all CPUs, for 900ms at each period (1s by default) rtla osnoise hist -P F:1 -r 900000 -d "${DURATION}" --no-header --trace \ - -e osnoise:irq_noise \ + --event osnoise:irq_noise \ --trigger hist:key=cpu,desc,duration.buckets=1000:sort=duration \ - -e osnoise:thread_noise \ + --event osnoise:thread_noise \ --trigger hist:key=cpu,comm,duration.buckets=1000:sort=duration \ - -e osnoise:sample_threshold \ + --event osnoise:sample_threshold \ --trigger 'hist:key=cpu,duration.buckets=1000:sort=duration if interference == 0' \ | tee -a "${TMPFILE}" diff --git a/automated/linux/rtla/rtla-timerlat.sh b/automated/linux/rtla/rtla-timerlat.sh index e65c77d8a..e99371e0f 100755 --- a/automated/linux/rtla/rtla-timerlat.sh +++ b/automated/linux/rtla/rtla-timerlat.sh @@ -32,9 +32,9 @@ create_out_dir "${OUTPUT}" background_process_start bgcmd --cmd "${BACKGROUND_CMD}" rtla timerlat hist --dma-latency=0 -d "${DURATION}" --no-header --trace \ - -e osnoise:irq_noise \ + --event osnoise:irq_noise \ --trigger hist:key=cpu,desc,duration.buckets=1000:sort=duration \ - -e osnoise:thread_noise \ + --event osnoise:thread_noise \ --trigger hist:key=cpu,comm,duration.buckets=1000:sort=duration \ | tee -a "${TMPFILE}"