Balenced paged and non paged pool sizes to 100 megs each, instead of 4 paged and 400 non

svn path=/trunk/; revision=2600
This commit is contained in:
Phillip Susi 2002-02-05 02:24:29 +00:00
parent 14a6c7e57d
commit 2a7825f502

View file

@ -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 */