2.6 Linux 内核中的锁定分析
如何在 2.6 Linux 内核中进行锁分析(自旋和其他类型的锁)? 我想获取我在模块中添加的几个锁的锁争用编号。 是否有任何 .config 选项可以启用并获取配置文件或任何其他工具?
How can I do the lock profiling (spin and other kind of locks) in 2.6 Linux kernel? I want to get the lock contention numbers for few locks which I have added in my module. Is there any .config option which I can enable and get the profile or any other tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
安德鲁感谢您的好指点。
看起来 oprofile 无法提供锁统计信息。 CONFIG_LOCK_STAT 仅在 2.6.23 内核之后出现。 而我的内核版本是2.6.16。 如果内核版本<2.6.23,则lockmeter补丁(http://oss.sgi.com/项目/lockmeter/)是选项。
Andrew Thanks for good pointer.
Looks like oprofile cannot give lock statistics. CONFIG_LOCK_STAT is present only after 2.6.23 kernel. While my kernel version is 2.6.16. If kernel version is <2.6.23 then lockmeter patch (http://oss.sgi.com/projects/lockmeter/) is the option.
OProfile 的文档说您可以使用它来分析内核。 不过,似乎有一个更好的选择 - 使用以下配置选项编译内核:
有一个 更详细地描述它的博客条目。
完整免责声明 - 我自己没有尝试过,只是阅读了相关内容。
OProfile's docs say that you can use it to profile the kernel. Though, it seems there is a better alternative - compiling the kernel with the following config option:
There's a blog entry describing it in more details.
Full Disclaimer - I did not try it myself, merely read about it.