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 X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 78C8EC433E0 for ; Mon, 15 Feb 2021 19:56:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 39BFC64E1E for ; Mon, 15 Feb 2021 19:56:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230267AbhBOT4l (ORCPT ); Mon, 15 Feb 2021 14:56:41 -0500 Received: from mail.kernel.org ([198.145.29.99]:48874 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230000AbhBOT4j (ORCPT ); Mon, 15 Feb 2021 14:56:39 -0500 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DB91664E1E; Mon, 15 Feb 2021 19:55:58 +0000 (UTC) Received: from rostedt by gandalf.local.home with local (Exim 4.94) (envelope-from ) id 1lBjyP-0009SE-N3; Mon, 15 Feb 2021 14:55:57 -0500 Message-ID: <20210215195533.101751000@goodmis.org> User-Agent: quilt/0.66 Date: Mon, 15 Feb 2021 14:55:33 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Ingo Molnar , Andrew Morton Subject: [for-next][PATCH 0/5] tracing: Last minute updates for 5.12 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Masami Hiramatsu (3): tracing: Show real address for trace event arguments tracing: Update the stage 3 of trace event macro comment tracing: Add ptr-hash option to show the hashed pointer value Steven Rostedt (VMware) (1): tracing: Make hash-ptr option default Viktor Rosendahl (1): tracing/tools: Add the latency-collector to tools directory ---- Documentation/trace/ftrace.rst | 6 + include/linux/trace_events.h | 4 + include/trace/trace_events.h | 31 +- kernel/trace/trace.c | 77 +- kernel/trace/trace.h | 3 + kernel/trace/trace_output.c | 12 +- tools/Makefile | 14 +- tools/tracing/Makefile | 19 + tools/tracing/latency/.gitignore | 2 + tools/tracing/latency/Makefile | 24 + tools/tracing/latency/latency-collector.c | 2108 +++++++++++++++++++++++++++++ 11 files changed, 2281 insertions(+), 19 deletions(-) create mode 100644 tools/tracing/Makefile create mode 100644 tools/tracing/latency/.gitignore create mode 100644 tools/tracing/latency/Makefile create mode 100644 tools/tracing/latency/latency-collector.c