Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759222AbZAGBO7 (ORCPT ); Tue, 6 Jan 2009 20:14:59 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753566AbZAGBOu (ORCPT ); Tue, 6 Jan 2009 20:14:50 -0500 Received: from ns2.suse.de ([195.135.220.15]:56297 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753408AbZAGBOu (ORCPT ); Tue, 6 Jan 2009 20:14:50 -0500 Date: Wed, 7 Jan 2009 02:14:48 +0100 From: Nick Piggin To: Christoph Hellwig Cc: Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: 2.6.29 -mm merge plans Message-ID: <20090107011448.GB3390@wotan.suse.de> References: <20090105004300.19ed52d1.akpm@linux-foundation.org> <20090106225744.GA10553@infradead.org> <20090106151131.b6c4ff0b.akpm@linux-foundation.org> <20090106232418.GB25103@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090106232418.GB25103@infradead.org> User-Agent: Mutt/1.5.9i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1852 Lines: 39 On Tue, Jan 06, 2009 at 06:24:18PM -0500, Christoph Hellwig wrote: > On Tue, Jan 06, 2009 at 03:11:31PM -0800, Andrew Morton wrote: > > > I'm not sure this is a good idea. Concurrent syncs are a bad idea > > > to start with and we should just synchronyze do_sync completely. > > > sync_filesystems as one of the main components of do_sync already > > > is synchronized in that way, and taking that to a higher level would > > > get rid of all the worries about concurrent syncs. > > > > Yes, single-threading sys_sync() would fix the problem which that patch > > addresses. > > > > However there are a lot of performance and correctness issues around > > sys_sync()-versus-fsync(), etc for which such a simple fix won't be > > acceptable. > > fsync should really not much interac with sync at that level. While > they both end up at same primitives at the lowest level those aren't > the ones we're trying to protect against. I'm currently in the process > of a major rework of sys_sync/do_sync to make it work properly for > modern filesystems and the global synchronization was one of the first > things I did.. > > So if you have any workloads where that causes a problem please send > them my way. Not that I can really thing of them, given the global > nature of sys_sync I can't see any benefit of doing multiple of these > in parallel. I can't see a problem with putting a global mutex around sys_sync (almost by definition, any app in the last 10+ years that calls sys_sync is not performance critical). But this patch fixes a correctness problem, so I think it is OK to go upstream now. -- 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/