diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-10-14 10:15:50 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-10-14 10:15:50 +0200 |
commit | fa6c711d2e8f696457ee1a12e49f413b98a175db (patch) | |
tree | 9e68a8b8f1db891d78f8b88e74161f3c6a0a7f49 /linux/src | |
parent | a72523c6570b17311babc105edc7105bc0dce4aa (diff) |
Update constants to nowadays standards
kern/zalloc.c (zone_map_size): Increase to 64MiB.
i386/i386at/model_dep.c (mem_size_init): Reduce cap to 1/6 of memory
space to save room for zalloc area.
linux/src/drivers/block/ide.h (INITIAL_MULT_COUNT): Set to 16.
vm/vm_map.h (VM_MAP_COPY_PAGE_LIST_MAX): Set to 64.
vm/vm_object.c (vm_object_cached_max): Set to 4000.
Diffstat (limited to 'linux/src')
-rw-r--r-- | linux/src/drivers/block/ide.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/src/drivers/block/ide.h b/linux/src/drivers/block/ide.h index 5310ac8..4433160 100644 --- a/linux/src/drivers/block/ide.h +++ b/linux/src/drivers/block/ide.h @@ -23,7 +23,7 @@ * REALLY_SLOW_IO can be defined in ide.c and ide-cd.c, if necessary */ #undef REALLY_FAST_IO /* define if ide ports are perfect */ -#define INITIAL_MULT_COUNT 0 /* off=0; on=2,4,8,16,32, etc.. */ +#define INITIAL_MULT_COUNT 16 /* off=0; on=2,4,8,16,32, etc.. */ #ifndef SUPPORT_SLOW_DATA_PORTS /* 1 to support slow data ports */ #define SUPPORT_SLOW_DATA_PORTS 1 /* 0 to reduce kernel size */ |