为什么内核驱动程序应居住在非页码内存中?
为什么内核驱动程序应居住在非页码内存中? (我知道对于Windows来说是正确的,如果其他操作系统也是如此,我会很好奇它是否正确)。
Why should kernel drivers reside in non-paged memory? (I know this is true for Windows, I would be curious if it is also true for other operating systems and why).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要非分规存储器,因为与设备(例如ISR)接口的代码区域不应在分类内存中。如果它不适用于设备或不需要在dispatch_level中处理,则可以在分类内存中。
Non-paged memory is required, since the region of code that interfaces with the device (eg ISR) should not be in paged memory. If it does not work with the device or does not need to be processed in DISPATCH_LEVEL, it is okay to be in paged memory.