Linux User Notes Table of Contents TOC
- Linux User Notes Table of Contents TOC
- Ubuntu Network Setup
- Ubuntu Command Line Reference Cheat Sheet
- Embedded Linux
- LInux Package Install List – IIRC this is list of packages for the Gnu build chain?
- How to edit Linux Ubuntu Files that are owned by the super user
- RFDesignWiki EmarketBrasil Open-Source-Test move using Linux Command Line method due to Big Image Directory
- Understanding the Linux Kernel via Ftrace
- Big List of Little Linux Tasks
End of TOC
Ftrace is an internal tracer designed to help out developers and designers of systems to find what is going on inside the kernel. It can be used for debugging or analyzing latencies and performance issues that take place outside of user-space. Although ftrace is typically considered the function tracer, it is really a frame work of several assorted tracing utilities. There's latency tracing to examine what occurs between interrupts disabled and enabled, as well as for preemption and from a time a task is woken to the task is actually scheduled in. One of the most common uses of ftrace is the event tracing. Through out the kernel is hundreds of static event points that can be enabled via the tracefs file system to see what is going on in certain parts of the kernel.
0 Comments