From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx206.postini.com [74.125.245.206]) by kanga.kvack.org (Postfix) with SMTP id 9825C6B0005 for ; Thu, 24 Jan 2013 09:57:12 -0500 (EST) Date: Thu, 24 Jan 2013 22:57:07 +0800 From: Fengguang Wu Subject: Re: [PATCH] Negative (setpoint-dirty) in bdi_position_ratio() Message-ID: <20130124145707.GB12745@localhost> References: <201301200002.r0K02Atl031280@como.maths.usyd.edu.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201301200002.r0K02Atl031280@como.maths.usyd.edu.au> Sender: owner-linux-mm@kvack.org List-ID: To: paul.szabo@sydney.edu.au Cc: linux-mm@kvack.org, 695182@bugs.debian.org, linux-kernel@vger.kernel.org, Andrew Morton , Jan Kara Hi Paul, > (This patch does not solve the PAE OOM issue.) You may try the below debug patch. The only way the writeback patches should trigger OOM, I think, is for the number of dirty/writeback pages going out of control. Or more simple, you may show us the OOM dmesg which will contain the number of dirty pages. Or run this in a continuous loop during your tests, and see how the dirty numbers change before OOM: while : do grep -E '(Dirty|Writeback)' /proc/meminfo sleep 1 done Thanks, Fengguang diff --git a/mm/page-writeback.c b/mm/page-writeback.c index 50f0824..cf1165a 100644 --- a/mm/page-writeback.c +++ b/mm/page-writeback.c @@ -1147,6 +1147,16 @@ pause: if (task_ratelimit) break; + if (nr_dirty > dirty_thresh + dirty_thresh / 2) { + if (printk_ratelimit()) + printk(KERN_WARNING "nr_dirty=%lu dirty_thresh=%lu task_ratelimit=%lu dirty_ratelimit=%lu pos_ratio=%lu\n", + nr_dirty, + dirty_thresh, + task_ratelimit, + dirty_ratelimit, + pos_ratio); + } + /* * In the case of an unresponding NFS server and the NFS dirty * pages exceeds dirty_thresh, give the other good bdi's a pipe -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org