2

我有一个关于 kmalloc 函数(在 linux 内核中找到)和保护的问题:

  1. kmalloc 创建的分配内存的默认保护(写/读/执行)是什么?
  2. 如何更改分配区域的保护?(来自内核模式)
  3. 如何找到所有内核分配的内存及其保护?

谢谢。

4

1 回答 1

1

Kmalloc is just an interface to the REAL memory manager, the kmem cache allocator.

于 2013-03-12T13:42:44.697 回答