内核中函数指针用的很多,在debug 的时候能直接打印出一个函数指针对应的函数就会很方便。
打印裸指针(raw pointer)用 %p,%p除了可以用来打印指针外还可以打印其它的信息
%pF可打印函数指针的函数名和偏移地址,%pf只打印函数指针的函数名,不打印偏移地址。
如
printk("%pf %pF\n", ptr, ptr) will print:
module_start module_start+0x0/0x62 [hello]
但是为了支持这个功能你需要开启CONFIG_KALLSYMS 选项
参考:
http://haohetao.iteye.com/blog/1147791
原文地址:https://www.cnblogs.com/rivsidn/p/9896238.html
时间: 2024-11-05 22:00:21