diff options
author | Chandra Seetharaman <sekharan@us.ibm.com> | 2006-09-29 05:01:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-29 12:18:22 -0400 |
commit | 2d1d43f6a43b703587e759145f69467e7c6553a7 (patch) | |
tree | 8ceb1c78a54c6f44f177779b2b7bdbbc9e03048a /mm/memory_hotplug.c | |
parent | 40c99aae23529f3d069ae08836ae46fadb3fd2bd (diff) |
[PATCH] call mm/page-writeback.c:set_ratelimit() when new pages are hot-added
ratelimit_pages in page-writeback.c is recalculated (in set_ratelimit())
every time a CPU is hot-added/removed. But this value is not recalculated
when new pages are hot-added.
This patch fixes that problem by calling set_ratelimit() when new pages
are hot-added.
[akpm@osdl.org: cleanups]
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/memory_hotplug.c')
-rw-r--r-- | mm/memory_hotplug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 9576ed920c0a..2053bb165a21 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/compiler.h> | 13 | #include <linux/compiler.h> |
14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
15 | #include <linux/pagevec.h> | 15 | #include <linux/pagevec.h> |
16 | #include <linux/writeback.h> | ||
16 | #include <linux/slab.h> | 17 | #include <linux/slab.h> |
17 | #include <linux/sysctl.h> | 18 | #include <linux/sysctl.h> |
18 | #include <linux/cpu.h> | 19 | #include <linux/cpu.h> |
@@ -192,6 +193,7 @@ int online_pages(unsigned long pfn, unsigned long nr_pages) | |||
192 | if (need_zonelists_rebuild) | 193 | if (need_zonelists_rebuild) |
193 | build_all_zonelists(); | 194 | build_all_zonelists(); |
194 | vm_total_pages = nr_free_pagecache_pages(); | 195 | vm_total_pages = nr_free_pagecache_pages(); |
196 | writeback_set_ratelimit(); | ||
195 | return 0; | 197 | return 0; |
196 | } | 198 | } |
197 | 199 | ||