Mukesh Chauhan

Just another WordPress.com weblog

Difference between paged pool and nonpaged pool memory

Windows divides the kernel mode address space into paged and nonpaged memory pools. The paged memory can be swapped out and nonpaged memory is never swapped out.

Device drivers are usually not paged. For example, interrupt routine must be in nonpaged memory because interrupt can occur anytime. Paged pool can be allocated and accessed at IRQL < DISPATCH_LEVEL.

For more information, please visit this blog.

July 14, 2011 Posted by | Uncategorized | , | Leave a comment