| 51 |
|
* large blocks to optimize paging in VM environments. |
| 52 |
|
*/ |
| 53 |
|
|
| 54 |
< |
#ifdef BIGMEM |
| 54 |
> |
#ifdef SMLMEM |
| 55 |
|
#ifndef MINBLOCK |
| 56 |
< |
#define MINBLOCK (1<<12) /* minimum allocation block size */ |
| 56 |
> |
#define MINBLOCK (1<<10) /* minimum allocation block size */ |
| 57 |
|
#endif |
| 58 |
|
#ifndef MAXBLOCK |
| 59 |
< |
#define MAXBLOCK (1<<16) /* maximum allocation block size */ |
| 59 |
> |
#define MAXBLOCK (1<<14) /* maximum allocation block size */ |
| 60 |
|
#endif |
| 61 |
|
#else |
| 62 |
|
#ifndef MINBLOCK |
| 63 |
< |
#define MINBLOCK (1<<10) /* minimum allocation block size */ |
| 63 |
> |
#define MINBLOCK (1<<12) /* minimum allocation block size */ |
| 64 |
|
#endif |
| 65 |
|
#ifndef MAXBLOCK |
| 66 |
< |
#define MAXBLOCK (1<<14) /* maximum allocation block size */ |
| 66 |
> |
#define MAXBLOCK (1<<16) /* maximum allocation block size */ |
| 67 |
|
#endif |
| 68 |
|
#endif |
| 69 |
|
|