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 10C87C433E9 for ; Thu, 4 Mar 2021 14:22:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CC9C764F43 for ; Thu, 4 Mar 2021 14:22:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241830AbhCDOVm (ORCPT ); Thu, 4 Mar 2021 09:21:42 -0500 Received: from mail.kernel.org ([198.145.29.99]:44820 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240295AbhCDOVM (ORCPT ); Thu, 4 Mar 2021 09:21:12 -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 13DB864ED4; Thu, 4 Mar 2021 14:20:32 +0000 (UTC) Received: from rostedt by gandalf.local.home with local (Exim 4.94) (envelope-from ) id 1lHoq6-001nub-PR; Thu, 04 Mar 2021 09:20:30 -0500 Message-ID: <20210304141952.446924335@goodmis.org> User-Agent: quilt/0.66 Date: Thu, 04 Mar 2021 09:19:52 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Ingo Molnar , Andrew Morton Subject: [for-linus][PATCH 0/5] Tracing fixes for 5.12: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Functional fixes: - Fix big endian conversion for arg64 in recordmcount processing - Fix timestamp corruption in ring buffer on discarding events Non-functional fixes: - Fix help text working in Kconfig - Remove duplicate prototype for trace_empty() Self test update: - Add more information to the validation output of when a corrupt timestamp is found in the ring buffer, and also trigger a warning to make sure that tests catch it. Chen Jun (1): ftrace: Have recordmcount use w8 to read relp->r_info in arm64_is_fake_mcount Rolf Eike Beer (1): tracing: Fix help text of TRACEPOINT_BENCHMARK in Kconfig Steven Rostedt (VMware) (2): ring-buffer: Force before_stamp and write_stamp to be different on discard ring-buffer: Add a little more information and a WARN when time stamp going backwards is detected Yordan Karadzhov (VMware) (1): tracing: Remove duplicate declaration from trace.h ---- kernel/trace/Kconfig | 2 +- kernel/trace/ring_buffer.c | 21 ++++++++++++++++++--- kernel/trace/trace.h | 1 - scripts/recordmcount.c | 2 +- 4 files changed, 20 insertions(+), 6 deletions(-)