作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读 LDD3。在 chapter 8 ,我无法理解这一段:
An example of a function in the kernel that uses
vmalloc
is thecreate_module
system call, which usesvmalloc
to get space for the module being created. Code and data of the module are later copied to the allocated space usingcopy_from_user
. In this way, the module appears to be loaded into contiguous memory.
为什么要使用 copy_from_user
?我们不只是在内核空间吗?
最佳答案
回想一下,内核模块是由 insmod
(或 modprobe
)命令加载的,该命令在用户空间中运行。这些命令将内核模块从磁盘加载到内存中,然后将其传递给内核,内核必须使用 copy_from_user()
将其复制到内核内存。
关于create_module - 为什么使用 copy_from_user?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20429789/
我正在阅读 LDD3。在 chapter 8 ,我无法理解这一段: An example of a function in the kernel that uses vmalloc is the cr
我是一名优秀的程序员,十分优秀!