如何读取和使用/sys/kernel/mm/page_idle/bitmap?

发布于 2025-01-11 18:30:37 字数 611 浏览 0 评论 0原文

文档很清楚:

位图由 8 字节整数数组表示,PFN #i 处的页映射到数组元素 #i/64 的位 #i%64,字节顺序是本机的。当一点点是 设置后,对应页面空闲。

但我对linux内部没有经验,甚至没有处理二进制文件的经验。 PFN 应该是整数吗?

我想做的是弄清楚是否为一系列虚拟地址设置了空闲位。我在 /proc/{pid}/maps 中查找虚拟地址范围,例如 01ac3000-01fe5000。如何获取该范围的 PFN 以及如何读取该文件(在 C++ 或 Python 中)以查找空闲位?

我在此处看到了该文件作者的一个 Python 示例。但我坚持将旧 kpageidle (每页 64 位)上操作的读取转换为位图文件,这是一个紧凑的表示形式。

The documentation is clear:

The bitmap is represented by an array of 8-byte integers, and the page at PFN #i is mapped to bit #i%64 of array element #i/64, byte order is native. When a bit is
set, the corresponding page is idle.

But I'm not experienced in linux internals, or even processing binary files. Is PFN supposed to be an integer?

What I'm trying to do is to figure out if the idle bit is set for a range of virtual addresses. I look up the virtual address range in /proc/{pid}/maps, for example, 01ac3000-01fe5000. How do I get the PFNs for that range and how do I read that file (in C++ or Python) to look up the idle bit?

I saw a Python example by the author of that file here. But I'm stuck on translating the reads that operate on the old kpageidle (which was 64 bits per page) to the bitmap file which is a compact representation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怪我闹别瞎闹 2025-01-18 18:30:37

我想你错过了 /proc/{pid}/pagemap 的一个文件,它提供了虚拟地址到 PFN 的映射。通过读取/proc/{pid}/pagemap,可以获得PFN,然后检查/sys/kernel/mm/page_idle/bitmap中的位图,了解PFN是否空闲。

I think you missed one file of /proc/{pid}/pagemap, which provides the mapping of virtual address to PFN. By reading /proc/{pid}/pagemap, you can get PFN, then check the bitmap in /sys/kernel/mm/page_idle/bitmap to find out if the PFN is idle or not.

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