为什么内核驱动程序应居住在非页码内存中?

发布于 2025-01-24 23:59:49 字数 73 浏览 0 评论 0原文

为什么内核驱动程序应居住在非页码内存中? (我知道对于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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阪姬 2025-01-31 23:59:49

需要非分规存储器,因为与设备(例如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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文