Linux之DebugFS(一)-----------------------追踪内核函数调用

debugFS是linux为了给开发人员提供更多的内核数据,方便调试和跟踪。

在嵌入式环境中,有时候内核态的函数运行时间过长可能会导致实时性受到影响,此时我们可以利用debugfs追踪内核函数调用的功能,来跟踪哪些内核函数运行时间过长,从而找出运行过长的原因。

1.首先,我们有将debugfs挂载上,以便使用其功能。

可能通过如下命令,查看当前内核是否编译进了debugfs

[root@localhost zhangxa]# cat /proc/filesystems | grep debugfs
nodev   debugfs       -----------支持
[root@localhost zhangxa]#


执行mount -t debugfs nodev /sys/kernel/debug命令,将debugfs挂载到/sys/kernel/debug目录

mount成功之后,可以看到挂载目录下有很多文件,这些文件就是debugfs提供功能的接口。

[root@localhost zhangxa]# cd /sys/kernel/debug/
[root@localhost debug]# ls
bdi          dynamic_debug  kprobes  sched_features  usb  xen
boot_params  hid            mce      tracing         x86
[root@localhost debug]#


2.tracing目录

进入tracing目录,这里面是关于追踪功能的接口。

查看available_trace文件,里面是当前支持追踪的功能。

[r

你可能感兴趣的:(Linux/Unix,内核,linux,调试,嵌入式,函数)