Debugging Linux Kernel using ftrace Part11 - What calls made by a kernel function
In the previous post we have seen how to find out the backtrace of a particular function. In this post, we will learn on what all functions are being called by a particular function.
The file for this is 'set_graph_function' and tracer is 'function_graph'
Let's find out what all calls are made by 'vfs_read'.
You can see from the above screenshot, vfs_read calls many functions for a read operation
The file for this is 'set_graph_function' and tracer is 'function_graph'
Let's find out what all calls are made by 'vfs_read'.
You can see from the above screenshot, vfs_read calls many functions for a read operation
Comments
Post a Comment