--- Makefile | 2 +- block/Kconfig.iosched | 2 +- kernel/Kconfig.hz | 2 +- kernel/sched.c | 4 ++-- mm/filemap.c | 2 +- mm/page-writeback.c | 2 +- mm/vmscan.c | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) Index: linux-2.6.20-ck1/block/Kconfig.iosched =================================================================== --- linux-2.6.20-ck1.orig/block/Kconfig.iosched 2007-02-16 19:04:03.000000000 +1100 +++ linux-2.6.20-ck1/block/Kconfig.iosched 2007-02-16 19:08:25.000000000 +1100 @@ -41,7 +41,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.20-ck1/kernel/Kconfig.hz =================================================================== --- linux-2.6.20-ck1.orig/kernel/Kconfig.hz 2007-02-16 19:03:52.000000000 +1100 +++ linux-2.6.20-ck1/kernel/Kconfig.hz 2007-02-16 19:08:05.000000000 +1100 @@ -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.20-ck1/kernel/sched.c =================================================================== --- linux-2.6.20-ck1.orig/kernel/sched.c 2007-02-16 19:03:31.000000000 +1100 +++ linux-2.6.20-ck1/kernel/sched.c 2007-02-16 19:07:20.000000000 +1100 @@ -68,9 +68,9 @@ * sched_iso_cpu - sysctl which determines the cpu percentage SCHED_ISO tasks * are allowed to run (over ISO_PERIOD seconds) as real time tasks. */ -int sched_interactive __read_mostly = 1; +int sched_interactive __read_mostly; int sched_compute __read_mostly; -int sched_iso_cpu __read_mostly = 80; +int sched_iso_cpu __read_mostly; #define ISO_PERIOD (5 * HZ) /* Index: linux-2.6.20-ck1/Makefile =================================================================== --- linux-2.6.20-ck1.orig/Makefile 2007-02-16 19:03:52.000000000 +1100 +++ linux-2.6.20-ck1/Makefile 2007-02-16 19:06:49.000000000 +1100 @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 20 -EXTRAVERSION = -ck1 +EXTRAVERSION = -cks1 NAME = Homicidal Dwarf Hamster # *DOCUMENTATION* Index: linux-2.6.20-ck1/mm/filemap.c =================================================================== --- linux-2.6.20-ck1.orig/mm/filemap.c 2007-02-16 19:03:31.000000000 +1100 +++ linux-2.6.20-ck1/mm/filemap.c 2007-02-16 19:06:38.000000000 +1100 @@ -870,7 +870,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.20-ck1/mm/page-writeback.c =================================================================== --- linux-2.6.20-ck1.orig/mm/page-writeback.c 2007-02-16 19:03:31.000000000 +1100 +++ linux-2.6.20-ck1/mm/page-writeback.c 2007-02-16 19:06:19.000000000 +1100 @@ -72,7 +72,7 @@ int dirty_background_ratio = 10; /* * The generator of dirty data starts writeback at this percentage */ -int vm_dirty_ratio = 40; +int vm_dirty_ratio = 66; /* * The interval between `kupdate'-style writebacks, in jiffies Index: linux-2.6.20-ck1/mm/vmscan.c =================================================================== --- linux-2.6.20-ck1.orig/mm/vmscan.c 2007-02-16 19:03:52.000000000 +1100 +++ linux-2.6.20-ck1/mm/vmscan.c 2007-02-16 19:05:39.000000000 +1100 @@ -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 = 0; long vm_total_pages; /* The total number of pages which the VM controls */ static LIST_HEAD(shrinker_list);