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 A347D26290 for ; Sat, 6 Dec 2025 01:05:52 +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=1764983152; cv=none; b=I5k7XfILC3M/CBdq1kHYNskxHw7BHuE0sY54sS83TQdmVKdRzxSgeixsQh6S0F5HNkNApRgwbikHkXYB8jBOR8YfeD35OFylHN94PYcW+qGD3lh+27aMNuvuDKZy6HApcEq6CMYD6am9rIGEgJbdV0Tuf4y3oDmLOU7gn22LyLw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764983152; c=relaxed/simple; bh=v0ZCERkdnKYF1qzMPcEZoZvDH8Dn5SINYMF1xFEEF6k=; h=Message-ID:Date:From:To:Cc:Subject; b=QcVzN2Lbd9Dn1WhZ7TeX9uy1pDd63XMp7lYbqQCPWqlqTjn2d8R+/swafFAHxMa+7eqhZ0ZRUvE/9s//WI+NCe4MoaZtsQVv8fJWLuOiOZXo6loLp2ES5BEM7QRU6W67XZY4INsFl95/bHX+QGAhGEur3kYwP2qA128EqL4QOrA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=uwh64Evh; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="uwh64Evh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 45767C4CEF1; Sat, 6 Dec 2025 01:05:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1764983152; bh=v0ZCERkdnKYF1qzMPcEZoZvDH8Dn5SINYMF1xFEEF6k=; h=Date:From:To:Cc:Subject:From; b=uwh64EvhGStzxqI06sxxCGTcJE7BevypFCjW3g41TQzTF8erUP3LlFz0aXWl5U+bo 3bUgV0zYvfOT/ru0gXdYpwembs5Or7DpbqKRj1yPYH5fPENQKYbeo3PVYFtiHY+lRf 9NWymye4ohFoWkWRUQAcKXouptQwmv9D7x15kTZSE1H1uY0AaWuPSmj/a6wWs9i9/S TAxeD1RYb+YrD7PW9lzRLgxX5MG5UeVTW+5zPvTgOyQdQZTWeN0Bq+lG45axKyg45o Iq/yfq7XhWNNVEDegMCEr08nUG4irTM264Tf5EBewzVgyQXiEFqm1a9J2WTRnOPLMs G9CRC7l2rwROw== Received: from rostedt by gandalf with local (Exim 4.98.2) (envelope-from ) id 1vRglI-00000009Vkw-3I70; Fri, 05 Dec 2025 20:07:00 -0500 Message-ID: <20251206010633.884804695@kernel.org> User-Agent: quilt/0.68 Date: Fri, 05 Dec 2025 20:06:33 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Masami Hiramatsu , Mark Rutland , Mathieu Desnoyers , Andrew Morton Subject: [for-linus][PATCH 00/15] tracing: Fixes for v6.19 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: tracing fixes for v6.19: - Fix accounting of stop_count in file release On opening the trace file, if "pause-on-trace" option is set, it will increment the stop_count. On file release, it checks if stop_count is set, and if so it decrements it. Since this code was originally written, the stop_count can be incremented by other use cases. This makes just checking the stop_count not enough to know if it should be decremented. Add a new iterator flag called "PAUSE" and have it set if the open disables tracing and only decrement the stop_count if that flag is set on close. - Remove length field in trace_seq_printf() of print_synth_event() When printing the synthetic event that has a static length array field, the vsprintf() of the trace_seq_printf() triggered a "(efault)" in the output. That's because the print_fmt replaced the "%.*s" with "%s" causing the arguments to be off. - Fix a bunch of typos git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git trace/fixes Head SHA1: c5108c58b991cb6cac78947ac3811321895190e2 Maurice Hieronymus (13): tracing: Fix typo in fpgraph.c tracing: Fix typo in fprobe.c tracing: Fix multiple typos in ring_buffer.c tracing: Fix typo in ring_buffer_benchmark.c tracing: Fix multiple typos in trace.c tracing: Fix multiple typos in trace_events.c tracing: Fix typo in trace_events_filter.c tracing: Fix typo in trace_events_hist.c tracing: Fix typo in trace_events_trigger.c tracing: Fix multiple typos in trace_events_user.c tracing: Fix multiple typos in trace_osnoise.c tracing: Fix typo in trace_probe.c tracing: Fix typo in trace_seq.c Steven Rostedt (2): tracing: Fix enabling of tracing on file release tracing: Fix fixed array of synthetic event ---- include/linux/trace_events.h | 1 + kernel/trace/fgraph.c | 2 +- kernel/trace/fprobe.c | 2 +- kernel/trace/ring_buffer.c | 6 +++--- kernel/trace/ring_buffer_benchmark.c | 2 +- kernel/trace/trace.c | 16 +++++++++------- kernel/trace/trace_events.c | 8 ++++---- kernel/trace/trace_events_filter.c | 2 +- kernel/trace/trace_events_hist.c | 2 +- kernel/trace/trace_events_synth.c | 1 - kernel/trace/trace_events_trigger.c | 2 +- kernel/trace/trace_events_user.c | 6 +++--- kernel/trace/trace_osnoise.c | 12 ++++++------ kernel/trace/trace_probe.c | 2 +- kernel/trace/trace_seq.c | 2 +- 15 files changed, 34 insertions(+), 32 deletions(-)