diff --git a/reactos/ntoskrnl/include/internal/pool.h b/reactos/ntoskrnl/include/internal/pool.h index 5d6babe878f..cf709282f2d 100644 --- a/reactos/ntoskrnl/include/internal/pool.h +++ b/reactos/ntoskrnl/include/internal/pool.h @@ -18,11 +18,11 @@ VOID MmInitializePagedPool(VOID); extern PVOID MmPagedPoolBase; extern ULONG MmPagedPoolSize; -#define MM_PAGED_POOL_SIZE (4*1024*1024) +#define MM_PAGED_POOL_SIZE (100*1024*1024) /* * Maximum size of the kmalloc area (this is totally arbitary) */ -#define NONPAGED_POOL_SIZE (400*1024*1024) +#define NONPAGED_POOL_SIZE (100*1024*1024) #endif /* __INTERNAL_POOL_H */