[PATCH 2/2] mm: Fix overcommit overflow

From: Alan Cox
Date: Wed Apr 30 2008 - 16:51:06 EST


Thanks, one more reason to boot to 2.6.24.5...

This patch needed, too, I guess.

From: Sami Farin <safari-kernel@xxxxxxxxxxxxx>
Signed-off-by: Sami Farin <safari-kernel@xxxxxxxxxxxxx>
Signed-off-by: Alan Cox <alan@xxxxxxxxxx>
Tested-by: Sami Farin <safari-kernel@xxxxxxxxxxxxx>

diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
index 3462bfd..a208a7b 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -132,7 +132,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
#define K(x) ((x) << (PAGE_SHIFT - 10))
si_meminfo(&i);
si_swapinfo(&i);
- committed = atomic_read(&vm_committed_space);
+ committed = vm_atomic_read(&vm_committed_space);
allowed = ((totalram_pages - hugetlb_total_pages())
* sysctl_overcommit_ratio / 100) + total_swap_pages;



--
Do what you love because life is too short for anything else.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/