aboutsummaryrefslogtreecommitdiff
path: root/tools/tracing/rtla/Makefile.rtla
diff options
context:
space:
mode:
authorCosta Shulyupin <costa.shul@redhat.com>2025-10-02 20:08:45 +0300
committerTomas Glozar <tglozar@redhat.com>2025-11-20 13:15:54 +0100
commitb4275b23010df719ec6508ddbc84951dcd24adce (patch)
tree469a6a15bd7b37cafd6decb9f3d0c027d08020fe /tools/tracing/rtla/Makefile.rtla
parent671314fce1c60913012e5643ffecdaa4578cfcb3 (diff)
tools/rtla: Fix unassigned nr_cpus
In recently introduced timerlat_free(), the variable 'nr_cpus' is not assigned. Assign it with sysconf(_SC_NPROCESSORS_CONF) as done elsewhere. Remove the culprit: -Wno-maybe-uninitialized. The rest of the code is clean. Signed-off-by: Costa Shulyupin <costa.shul@redhat.com> Reviewed-by: Tomas Glozar <tglozar@redhat.com> Fixes: 2f3172f9dd58 ("tools/rtla: Consolidate code between osnoise/timerlat and hist/top") Link: https://lore.kernel.org/r/20251002170846.437888-1-costa.shul@redhat.com Signed-off-by: Tomas Glozar <tglozar@redhat.com>
Diffstat (limited to 'tools/tracing/rtla/Makefile.rtla')
-rw-r--r--tools/tracing/rtla/Makefile.rtla2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tracing/rtla/Makefile.rtla b/tools/tracing/rtla/Makefile.rtla
index 08c1b40883d3..1743d91829d4 100644
--- a/tools/tracing/rtla/Makefile.rtla
+++ b/tools/tracing/rtla/Makefile.rtla
@@ -18,7 +18,7 @@ export CC AR STRIP PKG_CONFIG LD_SO_CONF_PATH LDCONFIG
FOPTS := -flto=auto -ffat-lto-objects -fexceptions -fstack-protector-strong \
-fasynchronous-unwind-tables -fstack-clash-protection
WOPTS := -O -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 \
- -Wp,-D_GLIBCXX_ASSERTIONS -Wno-maybe-uninitialized
+ -Wp,-D_GLIBCXX_ASSERTIONS
ifeq ($(CC),clang)
FOPTS := $(filter-out -flto=auto -ffat-lto-objects, $(FOPTS))