本文介绍了kmalloc功能和保护(READ,WRITE,EXEC)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对kmalloc函数(在Linux内核中找到)和保护有疑问:
I have a question regarding kmalloc function (found in the linux kernel) and protection:
- 由kmalloc创建的分配内存的默认保护(写/读/执行)是什么?
- 如何更改分配的区域的保护? (从内核模式开始)
- 如何找到所有内核分配的内存及其保护?
谢谢.
推荐答案
Kmalloc只是REAL内存管理器的接口kmem 缓存分配器.
Kmalloc is just an interface to the REAL memory manager, the kmem cache allocator.
这篇关于kmalloc功能和保护(READ,WRITE,EXEC)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!