Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759923AbZDKX0f (ORCPT ); Sat, 11 Apr 2009 19:26:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758947AbZDKX0Z (ORCPT ); Sat, 11 Apr 2009 19:26:25 -0400 Received: from earthlight.etchedpixels.co.uk ([81.2.110.250]:58217 "EHLO www.etchedpixels.co.uk" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1757997AbZDKX0Z (ORCPT ); Sat, 11 Apr 2009 19:26:25 -0400 Date: Sun, 12 Apr 2009 00:25:27 +0100 From: Alan Cox To: Grant Grundler Cc: Linus Torvalds , Jeff Garzik , Linux IDE mailing list , LKML , Jens Axboe , Arjan van de Ven Subject: Re: Implementing NVMHCI... Message-ID: <20090412002527.631a5a89@lxorguk.ukuu.org.uk> In-Reply-To: References: <49E0D47B.9070205@garzik.org> <20090411203246.513a0892@lxorguk.ukuu.org.uk> X-Mailer: Claws Mail 3.7.0 (GTK+ 2.14.7; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1054 Lines: 22 > We've abstract the DMA mapping/SG list handling enough that the > block size should make no more difference than it does for the > MTU size of a network. You need to start managing groups of pages in the vm and keeping them together and writing them out together and paging them together even if one of them is dirty and the other isn't. You have to deal with cases where a process forks and the two pages are dirtied one in each but still have to be written together. Alternatively you go for read-modify-write (nasty performance hit especially for RAID or a log structured fs). Yes you can do it but it sure won't be pretty with a conventional fs. Some of the log structured file systems have no problems with this and some kinds of journalling can help but for a typical block file system it'll suck. -- 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/