- Fast mutexes must be allocated from non-paged pool

svn path=/trunk/; revision=56244
This commit is contained in:
Cameron Gutman 2012-03-27 07:05:30 +00:00
parent 040caf7377
commit d45f75426f

View file

@ -264,7 +264,7 @@ AcpiOsCreateMutex(
return AE_BAD_PARAMETER;
}
Mutex = ExAllocatePool(PagedPool, sizeof(FAST_MUTEX));
Mutex = ExAllocatePool(NonPagedPool, sizeof(FAST_MUTEX));
if (!Mutex) return AE_NO_MEMORY;
ExInitializeFastMutex(Mutex);