2.6 Linux 内核中的锁定分析

发布于 2024-07-27 14:44:36 字数 102 浏览 3 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮了一弯 2024-08-03 14:44:36

安德鲁感谢您的好指点。

看起来 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.

蓝颜夕 2024-08-03 14:44:36

OProfile 的文档说您可以使用它来分析内核。 不过,似乎有一个更好的选择 - 使用以下配置选项编译内核:

CONFIG_LOCK_STAT=y

有一个 更详细地描述它的博客条目

完整免责声明 - 我自己没有尝试过,只是阅读了相关内容。

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:

CONFIG_LOCK_STAT=y

There's a blog entry describing it in more details.

Full Disclaimer - I did not try it myself, merely read about it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文