Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932747AbdCGVwV (ORCPT ); Tue, 7 Mar 2017 16:52:21 -0500 Received: from mail.kernel.org ([198.145.29.136]:50922 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751113AbdCGVwT (ORCPT ); Tue, 7 Mar 2017 16:52:19 -0500 Message-Id: <20170307212833.964734229@goodmis.org> User-Agent: quilt/0.63-1 Date: Tue, 07 Mar 2017 16:28:33 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Ingo Molnar , Andrew Morton , Todd Brandt Subject: [RFC][PATCH 0/4] tracing: Allow function tracing to start earlier in boot up Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1440 Lines: 30 I've had people ask about moving tracing up further in the boot process. This patch series looks at function tracing only. It allows for tracing (and function filtering) to be moved right after memory is initialized. To have it happen before memory initialization would require a bit more work with allocating the ring buffer. But this is a start. I placed a hook into free_reserved_area() which is used by all archs to free the init memory. Having it pass the range being freed to ftrace lets ftrace clean up any function that is registered such that it doesn't try to modify code that no longer exists. Steven Rostedt (VMware) (4): tracing: Split tracing initialization into two for early initialization ftrace: Move ftrace_init() to right after memory initialization ftrace: Have function tracing start in early boot up ftrace: Allow for function tracing to record init functions on boot up ---- include/linux/ftrace.h | 5 +++++ include/linux/init.h | 4 +++- init/main.c | 9 ++++++--- kernel/trace/ftrace.c | 44 ++++++++++++++++++++++++++++++++++++++++++ kernel/trace/trace.c | 9 ++++++++- kernel/trace/trace.h | 2 ++ kernel/trace/trace_functions.c | 3 +-- mm/page_alloc.c | 4 ++++ scripts/recordmcount.c | 1 + scripts/recordmcount.pl | 1 + 10 files changed, 75 insertions(+), 7 deletions(-)