ftrace: separate ftrace from ftrace
From: | Steven Rostedt <rostedt@goodmis.org> | |
To: | linux-kernel@vger.kernel.org | |
Subject: | [PATCH 0/3] ftrace: separate ftrace from ftrace | |
Date: | Mon, 06 Oct 2008 19:06:10 -0400 | |
Message-ID: | <20081006230610.024517480@goodmis.org> | |
Cc: | Ingo Molnar <mingo@elte.hu>, Andrew Morton <akpm@linux-foundation.org> | |
Archive‑link: | Article |
There has been a lot of confusion between ftrace the infrastructure and ftrace the function tracer within ftrace. Developers have added dependencies on HAVE_FTRACE when they did not need to. The HAVE_FTRACE was the architecture supported the function tracer. This patch series renames the ftrace function tracer to just that, FUNCTION_TRACER. And even renames the tracer shown to users from 'ftrace' to 'function'. Now, when referring to ftrace, it means the ftrace infrastructure, and when referring to the function trace, it is now called the function tracer. The second patch cause a lot of files to be touched. Mostly Makefiles and Kconfig files. As well as default configs. -- Steve