如何转储页面表?

时间:2015-08-01 03:17:24

标签: c linux huge-pages page-tables

我是linux,C和堆栈溢出的新手。我试图查看正在运行的所有进程的页表。为此我使用dump_pagetable.c

我试图通过正常编译gcc dump_pagetables.c -o dump_pagetables.out来先运行。但它给了我错误:

dump_pagetable.c:15:27: fatal error: linux/debugfs.h: No such file or directory #include linux/debugfs.h></code><br/><br/>Then I tried to use a make command <code>make -C /lib/modules/$(uname -r)/build M=$PWD modules</code>. So it gave me this error<code>CC [M]  /home/varma/Desktop/TLB/dump_pagetable.o
/home/varma/Desktop/TLB/dump_pagetable.c:420:1: warning: data definition has no type or storage class
 __initcall(pt_dump_init);
 ^
/home/varma/Desktop/TLB/dump_pagetable.c:420:1: error: type defaults to ‘int’ in declaration of ‘__initcall’ [-Werror=implicit-int]
/home/varma/Desktop/TLB/dump_pagetable.c:420:1: warning: parameter names (without types) in function declaration
/home/varma/Desktop/TLB/dump_pagetable.c:398:12: warning: ‘pt_dump_init’ defined but not used [-Wunused-function]
 static int pt_dump_init(void)
            ^
cc1: some warnings being treated as errors
scripts/Makefile.build:263: recipe for target '/home/varma/Desktop/TLB/dump_pagetable.o' failed
make[1]: *** [/home/varma/Desktop/TLB/dump_pagetable.o] Error 1
Makefile:1394: recipe for target '_module_/home/varma/Desktop/TLB' failed
make: *** [_module_/home/varma/Desktop/TLB] Error 2
make: Leaving directory '/usr/src/linux-headers-3.19.0-23-generic'</code>
  1. 如何运行此代码?
  2. 如何修改dump_pagetables.c以便我也可以看到大页面。

1 个答案:

答案 0 :(得分:1)

您尝试编译的文件是一个实用程序函数,可以在Linux内核中使用,用于IBM大型机中使用的有点模糊的CPU(IBM System/390)。它不能在内核之外使用,即使在那里,它也只适用于特定体系结构的系统,而不适用于任何台式计算机。

毋庸置疑,这不起作用。

x86系统的内核中有一个等效的功能(CONF_X86_PTDUMP),但它没有启用。如果要使用它,可能需要重新编译内核。有关详细信息,请参阅问题“Print kernel's page tables”的答案。