From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752847AbZBQKFd (ORCPT ); Tue, 17 Feb 2009 05:05:33 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751100AbZBQKFY (ORCPT ); Tue, 17 Feb 2009 05:05:24 -0500 Received: from casper.infradead.org ([85.118.1.10]:35315 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750833AbZBQKFX (ORCPT ); Tue, 17 Feb 2009 05:05:23 -0500 Subject: Re: [patch 2/4] vfs: add set_page_dirty_notag From: Peter Zijlstra To: Nick Piggin Cc: Edward Shishkin , Andrew Morton , Ryan Hope , Randy Dunlap , linux-kernel@vger.kernel.org, ReiserFS Mailing List In-Reply-To: <20090217093805.GB31323@wotan.suse.de> References: <18837.24581.181196.569183@edward.zelnet.ru> <1234530519.6519.46.camel@twins> <49957C43.7050701@gmail.com> <1234534150.6519.101.camel@twins> <18838.49922.215481.399653@edward.zelnet.ru> <1234645893.4695.8.camel@laptop> <18841.60432.329341.514726@edward.zelnet.ru> <1234861781.4744.21.camel@laptop> <20090217093805.GB31323@wotan.suse.de> Content-Type: text/plain Date: Tue, 17 Feb 2009 11:05:16 +0100 Message-Id: <1234865116.4744.46.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.25.90 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2009-02-17 at 10:38 +0100, Nick Piggin wrote: > It is a great shame that filesystems are not properly notified > that a page may become dirty before the actual set_page_dirty > event (which is not allowed to fail and is called after the > page is already dirty). Not quite true, for example the set_page_dirty() done by the write fault code is done _before_ the page becomes dirty. This before/after thing was the reason for that horrid file corruption bug that dragged on for a few weeks back in .19 (IIRC). > This is a big problem I have with fsblock simply in trying to > make the memory allocation robust. page_mkwrite unfortunately > is racy and I've fixed problems there... the big problem though > is get_user_pages. Fixing that properly seems to require fixing > callers so it is not really realistic in the short term. Right, I'm just not sure what we can do, even with a prepage_page_dirty() function, what are you going to do, fail the fault?