aboutsummaryrefslogtreecommitdiffstats
path: root/mm/memory.c
diff options
context:
space:
mode:
authorHugh Dickins <hugh@veritas.com>2005-10-29 21:16:18 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-10-30 00:40:39 -0400
commit365e9c87a982c03d0af3886e29d877f581b59611 (patch)
treed06c1918ca9fe6677d7e4e869555e095004274f7 /mm/memory.c
parent861f2fb8e796022b4928cab9c74fca6681a1c557 (diff)
[PATCH] mm: update_hiwaters just in time
update_mem_hiwater has attracted various criticisms, in particular from those concerned with mm scalability. Originally it was called whenever rss or total_vm got raised. Then many of those callsites were replaced by a timer tick call from account_system_time. Now Frank van Maarseveen reports that to be found inadequate. How about this? Works for Frank. Replace update_mem_hiwater, a poor combination of two unrelated ops, by macros update_hiwater_rss and update_hiwater_vm. Don't attempt to keep mm->hiwater_rss up to date at timer tick, nor every time we raise rss (usually by 1): those are hot paths. Do the opposite, update only when about to lower rss (usually by many), or just before final accounting in do_exit. Handle mm->hiwater_vm in the same way, though it's much less of an issue. Demand that whoever collects these hiwater statistics do the work of taking the maximum with rss or total_vm. And there has been no collector of these hiwater statistics in the tree. The new convention needs an example, so match Frank's usage by adding a VmPeak line above VmSize to /proc/<pid>/status, and also a VmHWM line above VmRSS (High-Water-Mark or High-Water-Memory). There was a particular anomaly during mremap move, that hiwater_vm might be captured too high. A fleeting such anomaly remains, but it's quickly corrected now, whereas before it would stick. What locking? None: if the app is racy then these statistics will be racy, it's not worth any overhead to make them exact. But whenever it suits, hiwater_vm is updated under exclusive mmap_sem, and hiwater_rss under page_table_lock (for now) or with preemption disabled (later on): without going to any trouble, minimize the time between reading current values and updating, to minimize those occasions when a racing thread bumps a count up and back down in between. Signed-off-by: Hugh Dickins <hugh@veritas.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r--mm/memory.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/mm/memory.c b/mm/memory.c
index a25ee1d3e20a..692ad810263d 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -820,6 +820,7 @@ unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address,
820 lru_add_drain(); 820 lru_add_drain();
821 spin_lock(&mm->page_table_lock); 821 spin_lock(&mm->page_table_lock);
822 tlb = tlb_gather_mmu(mm, 0); 822 tlb = tlb_gather_mmu(mm, 0);
823 update_hiwater_rss(mm);
823 end = unmap_vmas(&tlb, mm, vma, address, end, &nr_accounted, details); 824 end = unmap_vmas(&tlb, mm, vma, address, end, &nr_accounted, details);
824 tlb_finish_mmu(tlb, address, end); 825 tlb_finish_mmu(tlb, address, end);
825 spin_unlock(&mm->page_table_lock); 826 spin_unlock(&mm->page_table_lock);
@@ -2225,22 +2226,6 @@ unsigned long vmalloc_to_pfn(void * vmalloc_addr)
2225 2226
2226EXPORT_SYMBOL(vmalloc_to_pfn); 2227EXPORT_SYMBOL(vmalloc_to_pfn);
2227 2228
2228/*
2229 * update_mem_hiwater
2230 * - update per process rss and vm high water data
2231 */
2232void update_mem_hiwater(struct task_struct *tsk)
2233{
2234 if (tsk->mm) {
2235 unsigned long rss = get_mm_rss(tsk->mm);
2236
2237 if (tsk->mm->hiwater_rss < rss)
2238 tsk->mm->hiwater_rss = rss;
2239 if (tsk->mm->hiwater_vm < tsk->mm->total_vm)
2240 tsk->mm->hiwater_vm = tsk->mm->total_vm;
2241 }
2242}
2243
2244#if !defined(__HAVE_ARCH_GATE_AREA) 2229#if !defined(__HAVE_ARCH_GATE_AREA)
2245 2230
2246#if defined(AT_SYSINFO_EHDR) 2231#if defined(AT_SYSINFO_EHDR)