--- Makefile | 2 +- block/Kconfig.iosched | 2 +- kernel/Kconfig.hz | 2 +- kernel/sched.c | 6 +++--- mm/filemap.c | 2 +- mm/vmscan.c | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) Index: linux-2.6.21-ck1/block/Kconfig.iosched =================================================================== --- linux-2.6.21-ck1.orig/block/Kconfig.iosched 2007-05-04 12:21:37.000000000 +1000 +++ linux-2.6.21-ck1/block/Kconfig.iosched 2007-05-04 12:24:52.000000000 +1000 @@ -42,7 +42,7 @@ config IOSCHED_CFQ choice prompt "Default I/O scheduler" - default DEFAULT_CFQ + config DEFAULT_DEADLINE help Select the I/O scheduler which will be used by default for all block devices. Index: linux-2.6.21-ck1/kernel/Kconfig.hz =================================================================== --- linux-2.6.21-ck1.orig/kernel/Kconfig.hz 2007-05-04 12:24:21.000000000 +1000 +++ linux-2.6.21-ck1/kernel/Kconfig.hz 2007-05-04 12:24:52.000000000 +1000 @@ -4,7 +4,7 @@ choice prompt "Timer frequency" - default HZ_1000 + default HZ_100 help Allows the configuration of the timer frequency. It is customary to have the timer interrupt run at 1000 Hz but 100 Hz may be more Index: linux-2.6.21-ck1/kernel/sched.c =================================================================== --- linux-2.6.21-ck1.orig/kernel/sched.c 2007-05-04 12:24:22.000000000 +1000 +++ linux-2.6.21-ck1/kernel/sched.c 2007-05-04 12:24:52.000000000 +1000 @@ -100,8 +100,8 @@ unsigned long long __attribute__((weak)) * Value is in ms and set to a minimum of 8ms. Scales with number of cpus. * Tunable via /proc interface. */ -int rr_interval __read_mostly = 6; -int sched_interactive __read_mostly = 1; +int rr_interval __read_mostly = 10; +int sched_interactive __read_mostly; /* * sched_iso_cpu - sysctl which determines the cpu percentage SCHED_ISO tasks @@ -110,7 +110,7 @@ int sched_interactive __read_mostly = 1; * which cpu usage of SCHED_ISO tasks is averaged to determine if they are * exceeding their allowable bandwidth. */ -int sched_iso_cpu __read_mostly = 80; +int sched_iso_cpu __read_mostly; int sched_iso_period __read_mostly = 5; #define ISO_PERIOD ((sched_iso_period * HZ) + 1) Index: linux-2.6.21-ck1/Makefile =================================================================== --- linux-2.6.21-ck1.orig/Makefile 2007-05-04 12:21:37.000000000 +1000 +++ linux-2.6.21-ck1/Makefile 2007-05-04 12:24:52.000000000 +1000 @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 21 -EXTRAVERSION = -ck1 +EXTRAVERSION = -cks1 NAME = Nocturnal Monster Puppy # *DOCUMENTATION* Index: linux-2.6.21-ck1/mm/filemap.c =================================================================== --- linux-2.6.21-ck1.orig/mm/filemap.c 2007-05-04 12:24:21.000000000 +1000 +++ linux-2.6.21-ck1/mm/filemap.c 2007-05-04 12:24:52.000000000 +1000 @@ -850,7 +850,7 @@ static void shrink_readahead_size_eio(st * Sysctl which determines whether we should read from large files to the * tail of the inactive lru list. */ -int vm_tail_largefiles __read_mostly = 1; +int vm_tail_largefiles __read_mostly; static inline int nr_mapped(void) { Index: linux-2.6.21-ck1/mm/vmscan.c =================================================================== --- linux-2.6.21-ck1.orig/mm/vmscan.c 2007-05-04 12:24:21.000000000 +1000 +++ linux-2.6.21-ck1/mm/vmscan.c 2007-05-04 12:24:52.000000000 +1000 @@ -115,7 +115,7 @@ struct shrinker { * From 0 .. 100. Lower means more swappy. */ int vm_mapped __read_mostly = 66; -int vm_hardmaplimit __read_mostly = 1; +int vm_hardmaplimit __read_mostly; long vm_total_pages; /* The total number of pages which the VM controls */ static LIST_HEAD(shrinker_list);