Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932096AbZJBUrd (ORCPT ); Fri, 2 Oct 2009 16:47:33 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758146AbZJBUrc (ORCPT ); Fri, 2 Oct 2009 16:47:32 -0400 Received: from mail.gmx.net ([213.165.64.20]:55325 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1758121AbZJBUrc (ORCPT ); Fri, 2 Oct 2009 16:47:32 -0400 X-Authenticated: #14349625 X-Provags-ID: V01U2FsdGVkX18pu4pbfdApd+XabfEv6tFWWPvZFOE9RXU6jznXe7 iHNH0j8ctKELlj Subject: Re: IO scheduler based IO controller V10 From: Mike Galbraith To: Jens Axboe Cc: Ingo Molnar , Linus Torvalds , Vivek Goyal , Ulrich Lukas , linux-kernel@vger.kernel.org, containers@lists.linux-foundation.org, dm-devel@redhat.com, nauman@google.com, dpshah@google.com, lizf@cn.fujitsu.com, mikew@google.com, fchecconi@gmail.com, paolo.valente@unimore.it, ryov@valinux.co.jp, fernando@oss.ntt.co.jp, jmoyer@redhat.com, dhaval@linux.vnet.ibm.com, balbir@linux.vnet.ibm.com, righi.andrea@gmail.com, m-ikeda@ds.jp.nec.com, agk@redhat.com, akpm@linux-foundation.org, peterz@infradead.org, jmarchan@redhat.com, riel@redhat.com In-Reply-To: <1254509838.8667.30.camel@marge.simson.net> References: <20091002092839.GA26962@kernel.dk> <20091002145610.GD31616@kernel.dk> <20091002171129.GG31616@kernel.dk> <20091002172046.GA2376@elte.hu> <20091002172554.GJ31616@kernel.dk> <20091002172842.GA4884@elte.hu> <20091002173732.GK31616@kernel.dk> <1254507215.8667.7.camel@marge.simson.net> <20091002181903.GN31616@kernel.dk> <1254509838.8667.30.camel@marge.simson.net> Content-Type: text/plain Date: Fri, 02 Oct 2009 22:47:27 +0200 Message-Id: <1254516447.11265.5.camel@marge.simson.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.1.1 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.53 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2246 Lines: 48 On Fri, 2009-10-02 at 20:57 +0200, Mike Galbraith wrote: > On Fri, 2009-10-02 at 20:19 +0200, Jens Axboe wrote: > > > I'm not too worried about the "single IO producer" scenarios, and it > > looks like (from a quick look) that most of your numbers are within some > > expected noise levels. It's the more complex mixes that are likely to > > cause a bit of a stink, but lets worry about that later. One quick thing > > would be to read eg 2 or more files sequentially from disk and see how > > that performs. > > Hm. git(s) should be good for a nice repeatable load. Suggestions? > > > If you could do a cleaned up version of your overload patch based on > > this: > > > > http://git.kernel.dk/?p=linux-2.6-block.git;a=commit;h=1d2235152dc745c6d94bedb550fea84cffdbf768 > > > > then lets take it from there. > > I'll try to find a good repeatable git beater first. At this point, I > only know it helps with one load. Seems to help mixed concurrent read/write a bit too. perf stat testo.sh Avg 108.12 106.33 106.34 97.00 106.52 104.8 1.000 fairness=0 overload_delay=0 93.98 102.44 94.47 97.70 98.90 97.4 .929 fairness=0 overload_delay=1 90.87 95.40 95.79 93.09 94.25 93.8 .895 fairness=1 overload_delay=0 89.93 90.57 89.13 93.43 93.72 91.3 .871 fairness=1 overload_delay=1 #!/bin/sh LOGFILE=testo.log rm -f $LOGFILE echo 3 > /proc/sys/vm/drop_caches sh -c "(cd linux-2.6.23; perf stat -- git checkout -f; git archive --format=tar HEAD > ../linux-2.6.23.tar)" 2>&1|tee -a $LOGFILE & sh -c "(cd linux-2.6.24; perf stat -- git archive --format=tar HEAD > ../linux-2.6.24.tar; git checkout -f)" 2>&1|tee -a $LOGFILE & sh -c "(cd linux-2.6.25; perf stat -- git checkout -f; git archive --format=tar HEAD > ../linux-2.6.25.tar)" 2>&1|tee -a $LOGFILE & sh -c "(cd linux-2.6.26; perf stat -- git archive --format=tar HEAD > ../linux-2.6.26.tar; git checkout -f)" 2>&1|tee -a $LOGFILE & wait -- 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/