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 29E56C54E94 for ; Wed, 25 Jan 2023 16:20:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235936AbjAYQUg (ORCPT ); Wed, 25 Jan 2023 11:20:36 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52302 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235735AbjAYQUO (ORCPT ); Wed, 25 Jan 2023 11:20:14 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E8CDE561AB for ; Wed, 25 Jan 2023 08:20:13 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 788A1B81ACA for ; Wed, 25 Jan 2023 16:20:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 009ADC433D2; Wed, 25 Jan 2023 16:20:10 +0000 (UTC) Received: from rostedt by gandalf.local.home with local (Exim 4.96) (envelope-from ) id 1pKiVN-004MpN-2W; Wed, 25 Jan 2023 11:20:09 -0500 Message-ID: <20230125161824.332648375@goodmis.org> User-Agent: quilt/0.66 Date: Wed, 25 Jan 2023 11:18:24 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Masami Hiramatsu , Andrew Morton , Chuang Wang , Colin Ian King , Mark Rutland , Natalia Petrova , Randy Dunlap Subject: [for-linus][PATCH 00/11] tracing: Updates for 6.2 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Tracing updates for 6.2: - Fix filter memory leak by calling ftrace_free_filter() - Initialize trace_printk() earlier so that ftrace_dump_on_oops shows data on early crashs. - Update the outdated instructions in scripts/tracing/ftrace-bisect.sh - Add lockdep_is_held() to fix lockdep warning - Add allocation failure check in create_hist_field() - Don't initalize pointer that gets set right away in enabled_monitors_write() - Update MAINTAINER entries - Fix help messages in Kconfigs - Fix kernel-doc header for update_preds() git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git ftrace/urgent Head SHA1: 78020233418518faa72fba11f40e1d53b9e88a2e Chuang Wang (1): tracing/osnoise: Use built-in RCU list checking Colin Ian King (1): rv: remove redundant initialization of pointer ptr Mark Rutland (2): ftrace: Export ftrace_free_filter() to modules ftrace: Maintain samples/ftrace Masami Hiramatsu (Google) (1): bootconfig: Update MAINTAINERS file to add tree and mailing list Natalia Petrova (1): trace_events_hist: add check for return value of 'create_hist_field' Randy Dunlap (3): tracing: Kconfig: Fix spelling/grammar/punctuation lib: Kconfig: fix spellos tracing/filter: fix kernel-doc warnings Steven Rostedt (Google) (2): tracing: Make sure trace_printk() can output as soon as it can be used ftrace/scripts: Update the instructions for ftrace-bisect.sh ---- MAINTAINERS | 5 +++++ kernel/trace/Kconfig | 8 +++---- kernel/trace/ftrace.c | 23 ++++++++++++++++++- kernel/trace/rv/rv.c | 2 +- kernel/trace/trace.c | 2 ++ kernel/trace/trace.h | 1 + kernel/trace/trace_events_filter.c | 8 +++---- kernel/trace/trace_events_hist.c | 2 ++ kernel/trace/trace_osnoise.c | 5 ++--- kernel/trace/trace_output.c | 3 +-- lib/Kconfig.debug | 2 +- lib/Kconfig.kcsan | 2 +- samples/ftrace/ftrace-direct-multi-modify.c | 1 + samples/ftrace/ftrace-direct-multi.c | 1 + scripts/tracing/ftrace-bisect.sh | 34 ++++++++++++++++++++++------- 15 files changed, 74 insertions(+), 25 deletions(-)