From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E0029176FA7 for ; Thu, 17 Oct 2024 21:23:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729200209; cv=none; b=fJ2JIhQ/MEFdb7RjHiWwuLhOZLkWEny/oxNer4YoVq3f+yKYJthwkAv9y2O1Xus39CuCq7QjYVjTxX/YeFYN9bQDRPYh6XtcPjdItq8067zKcDGHTJ51CaBeX82jXvFC8KgpXDmB3EwO568DGtp9Baj3EsIqcaxqh4AuPNATRkQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729200209; c=relaxed/simple; bh=aEK4bJNDMhQvEOqY3np4qo3icaikc195g1yh7hhYeA8=; h=Message-ID:Date:From:To:Cc:Subject; b=i94lf82PKjiletQJ0B/9n+MoH6xyLgoYCqCp73iIDveYEa488UjhymY5Nme7OwLVGzUbIvKCuvJ39MWy6t8EamF1hxBrvVCkQ3G3ZhwNEpFdYLbMPrn1ZnCGUAfSnSsQybSmm16RMqO2b+JTn5wy6qAEEpnGj+e9AoJcoDNWJ64= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 77C46C4CEC3; Thu, 17 Oct 2024 21:23:29 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.98) (envelope-from ) id 1t1XyL-00000003wCS-447W; Thu, 17 Oct 2024 17:23:53 -0400 Message-ID: <20241017212328.560060762@goodmis.org> User-Agent: quilt/0.68 Date: Thu, 17 Oct 2024 17:23:28 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Tomas Glozar , John Kacur Subject: [for-next][PATCH 0/6] rtla: Updates for 6.13 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git tools/for-next Head SHA1: 13216486e3ede30d6910a22e0e15988b7016366b Tomas Glozar (6): tools/build: Add libcpupower dependency detection rtla: Add optional dependency on libcpupower rtla/utils: Add idle state disabling via libcpupower rtla/timerlat: Add --deepest-idle-state for top rtla/timerlat: Add --deepest-idle-state for hist rtla: Documentation: Mention --deepest-idle-state ---- .../tools/rtla/common_timerlat_options.rst | 8 ++ tools/build/Makefile.feature | 1 + tools/build/feature/Makefile | 4 + tools/build/feature/test-libcpupower.c | 8 ++ tools/tracing/rtla/Makefile | 2 + tools/tracing/rtla/Makefile.config | 10 ++ tools/tracing/rtla/README.txt | 4 + tools/tracing/rtla/src/timerlat_hist.c | 42 +++++- tools/tracing/rtla/src/timerlat_top.c | 42 +++++- tools/tracing/rtla/src/utils.c | 150 +++++++++++++++++++++ tools/tracing/rtla/src/utils.h | 13 ++ 11 files changed, 282 insertions(+), 2 deletions(-) create mode 100644 tools/build/feature/test-libcpupower.c