From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 04659EB64D7 for ; Tue, 13 Jun 2023 22:08:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232836AbjFMWIa (ORCPT ); Tue, 13 Jun 2023 18:08:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52646 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229447AbjFMWI1 (ORCPT ); Tue, 13 Jun 2023 18:08:27 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 471CA10DE for ; Tue, 13 Jun 2023 15:08:26 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id D0605631CF for ; Tue, 13 Jun 2023 22:08:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 41FF7C433C0; Tue, 13 Jun 2023 22:08:25 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.96) (envelope-from ) id 1q9CBb-000EBN-1C; Tue, 13 Jun 2023 18:08:23 -0400 Message-ID: <20230613220750.330146797@goodmis.org> User-Agent: quilt/0.66 Date: Tue, 13 Jun 2023 18:07:50 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Daniel Bristot de Oliveira Subject: [for-next][PATCH 00/11] tracing/tools: Updates for 6.5 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git tools/for-next Head SHA1: 6127383217741615f3450b684ecbee1ff570ee98 Daniel Bristot de Oliveira (11): rtla: Add -C cgroup support rtla: Add --house-keeping option rtla: Change monitored_cpus from char * to cpu_set_t rtla: Automatically move rtla to a house-keeping cpu rtla/timerlat: Give timerlat auto analysis its own instance rtla/timerlat_hist: Add auto-analysis support rtla: Start the tracers after creating all instances rtla/hwnoise: Reduce runtime to 75% rtla/timerlat_top: Add timerlat user-space support rtla/timerlat_hist: Add timerlat user-space support Documentation: Add tools/rtla timerlat -u option documentation ---- Documentation/tools/rtla/common_options.rst | 8 + Documentation/tools/rtla/common_timerlat_aa.rst | 7 - .../tools/rtla/common_timerlat_options.rst | 7 + Documentation/tools/rtla/rtla-timerlat-hist.rst | 7 +- Documentation/tools/rtla/rtla-timerlat-top.rst | 7 + tools/tracing/rtla/src/osnoise.c | 65 +++++ tools/tracing/rtla/src/osnoise.h | 5 + tools/tracing/rtla/src/osnoise_hist.c | 90 +++++- tools/tracing/rtla/src/osnoise_top.c | 83 +++++- tools/tracing/rtla/src/timerlat_aa.c | 35 ++- tools/tracing/rtla/src/timerlat_aa.h | 5 +- tools/tracing/rtla/src/timerlat_hist.c | 262 +++++++++++++++-- tools/tracing/rtla/src/timerlat_top.c | 229 +++++++++++++-- tools/tracing/rtla/src/timerlat_u.c | 224 ++++++++++++++ tools/tracing/rtla/src/timerlat_u.h | 18 ++ tools/tracing/rtla/src/utils.c | 324 +++++++++++++++++++-- tools/tracing/rtla/src/utils.h | 7 + 17 files changed, 1277 insertions(+), 106 deletions(-) create mode 100644 tools/tracing/rtla/src/timerlat_u.c create mode 100644 tools/tracing/rtla/src/timerlat_u.h