Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755425AbXKXSoS (ORCPT ); Sat, 24 Nov 2007 13:44:18 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753035AbXKXSoJ (ORCPT ); Sat, 24 Nov 2007 13:44:09 -0500 Received: from waste.org ([66.93.16.53]:51666 "EHLO waste.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752841AbXKXSoF (ORCPT ); Sat, 24 Nov 2007 13:44:05 -0500 Date: Sat, 24 Nov 2007 12:43:33 -0600 From: Matt Mackall To: Andi Kleen Cc: David Chinner , Stewart Smith , xfs-oss , lkml Subject: Re: [PATCH 2/9]: Reduce Log I/O latency Message-ID: <20071124184333.GK17536@waste.org> References: <20071122003339.GH114266761__34694.2978365861$1195691722$gmane$org@sgi.com> <20071122011214.GR114266761@sgi.com> <1195702123.8369.78.camel@localhost.localdomain> <20071122120611.GA3573@one.firstfloor.org> <20071122131539.GX114266761@sgi.com> <20071123025317.GA12257@one.firstfloor.org> <20071123040329.GB114266761@sgi.com> <20071123120115.GA18532@one.firstfloor.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071123120115.GA18532@one.firstfloor.org> User-Agent: Mutt/1.5.13 (2006-08-11) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2644 Lines: 50 On Fri, Nov 23, 2007 at 01:01:15PM +0100, Andi Kleen wrote: > On Fri, Nov 23, 2007 at 03:03:29PM +1100, David Chinner wrote: > > On Fri, Nov 23, 2007 at 03:53:17AM +0100, Andi Kleen wrote: > > > On Fri, Nov 23, 2007 at 12:15:39AM +1100, David Chinner wrote: > > > > On Thu, Nov 22, 2007 at 01:06:11PM +0100, Andi Kleen wrote: > > > > > > FWIW from a "real time" database POV this seems to make sense to me... > > > > > > in fact, we probably rely on filesystem metadata way too much > > > > > > (historically it's just "worked".... although we do seem to get issues > > > > > > on ext3). > > > > > > > > > > For that case you really would need priority inheritance: any metadata > > > > > IO on behalf or blocking a process needs to use the process' block IO > > > > > priority. > > > > > > > > How do you do that when the processes are blocking on semaphores, > > > > mutexes or rw-semaphores in the fileysystem three layers removed from > > > > the I/O in progress? > > > > > > [...] I didn't say it was easy (or rather explicitely said it would be tricky). > > > Probably it would be possible to fold it somehow into rt mutexes PI, > > > but it's not easy and semaphores would need to be handled too. > > > > > > Just my point was to solve the metadata RT problem unconditionally increasing > > > the priority is a bad idea and not really a replacement to a "full" > > > solution. Short term a user can just increase the priority of all the XFS > > > threads anyways. > > > > The point is that it's not actually a thread-based problem - the priority > > can't be inherited via the traditional mutex-like manner. There is no > > connection between a thread and an I/o it has already issued and so you > > can't transfer a priority from a blocked thread to an issued-but-blocked > > i/o.... > > It could be handled in theory similar to standard CPU priority inheritance -- \ > keep track of IO priority of all threads you block and boost your IO priority > always to that level. But it would be probably not very easy to do. Well I think what Dave is saying is that we can't find the related process. The submitter process may have even exited before the flush happens.. You'd instead have to keep track of (the max of) all the submitted I/O segment priorities related to the transaction instead. But I'm sure there are complications. -- Mathematics is the supreme nostalgia of our time. - 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/