Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756581AbZKRKzB (ORCPT ); Wed, 18 Nov 2009 05:55:01 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756474AbZKRKzA (ORCPT ); Wed, 18 Nov 2009 05:55:00 -0500 Received: from casper.infradead.org ([85.118.1.10]:33335 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754835AbZKRKy7 (ORCPT ); Wed, 18 Nov 2009 05:54:59 -0500 Subject: Re: [PATCH 2/7] mmc: Don't use PF_MEMALLOC From: Peter Zijlstra To: Minchan Kim Cc: KOSAKI Motohiro , Alan Cox , LKML , linux-mm , Andrew Morton , linux-mmc@vger.kernel.org In-Reply-To: <28c262360911180231o7fcd2128hc9c40f4fffa3f7d6@mail.gmail.com> References: <20091117161711.3DDA.A69D9226@jp.fujitsu.com> <20091117102903.7cb45ff3@lxorguk.ukuu.org.uk> <20091117200618.3DFF.A69D9226@jp.fujitsu.com> <4B029C40.2020803@gmail.com> <1258490826.3918.29.camel@laptop> <28c262360911171601u618ca555o1dd51ea19168575e@mail.gmail.com> <1258538181.3918.138.camel@laptop> <28c262360911180231o7fcd2128hc9c40f4fffa3f7d6@mail.gmail.com> Content-Type: text/plain; charset="UTF-8" Date: Wed, 18 Nov 2009 11:54:56 +0100 Message-ID: <1258541696.3918.237.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.28.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2011 Lines: 46 On Wed, 2009-11-18 at 19:31 +0900, Minchan Kim wrote: > > > > Sure some generic blocklevel infrastructure might work, _but_ you cannot > > take away the responsibility of determining the amount of memory needed, > > nor does any of this have any merit if you do not limit yourself to that > > amount. > > Yes. Some one have to take a responsibility. > > The intention was we could take away the responsibility from block driver. > Instead of driver, VM would take the responsibility. > > You mean althgouth VM could take the responsiblity, it is hard to > expect amout of pages needed by block drivers? Correct, its near impossible for the VM to accurately guess the amount of memory needed for a driver, or limit the usage of the driver. The driver could be very simple in that it'll just start a DMA on the page and get an interrupt when done, not consuming much (if any) memory beyond the generic BIO structure, but it could also be some iSCSI monstrosity which involves the full network stack and userspace. That is why I generally prefer the user of PF_MEMALLOC to take responsibility, because it knows its own consumption and can limit its own consumption. Now, I don't think (but I could be wring here) that you need to bother with PF_MEMALLOC unless you're swapping. File based pages should always be able to free some memory due to the dirty-limit, whcih basically guarantees that there are some clean file pages for every dirty file page. My swap-over-nfs series used to have a block-layer hook to expose the swap-over-block behaviour: http://programming.kicks-ass.net/kernel-patches/vm_deadlock/v12.99/blk_queue_swapdev.patch That gives block devices the power to refuse being swapped over, which could be an alternative to using PF_MEMALLOC. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/