Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762289AbZAOTA4 (ORCPT ); Thu, 15 Jan 2009 14:00:56 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753892AbZAOTAq (ORCPT ); Thu, 15 Jan 2009 14:00:46 -0500 Received: from accolon.hansenpartnership.com ([76.243.235.52]:59077 "EHLO accolon.hansenpartnership.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753889AbZAOTAp (ORCPT ); Thu, 15 Jan 2009 14:00:45 -0500 Subject: Re: [PATCH] block: export SSD/non-rotational queue flag through sysfs From: James Bottomley To: Grant Grundler Cc: Jens Axboe , Greg Freemyer , Tejun Heo , Michael Tokarev , Kay Sievers , Bartlomiej Zolnierkiewicz , linux-kernel@vger.kernel.org, linux-ide@vger.kernel.org, Alan Cox In-Reply-To: References: <200901051952.58029.bzolnier@gmail.com> <20090105185428.GS32491@kernel.dk> <20090106073515.GY32491@kernel.dk> <4964866D.8010503@msgid.tls.msk.ru> <1231342473.3282.19.camel@localhost.localdomain> <496ECBA0.60209@gmail.com> <87f94c370901150707h10506e99reaa40c23e32ab18c@mail.gmail.com> <1232035561.5966.48.camel@localhost.localdomain> Content-Type: text/plain Date: Thu, 15 Jan 2009 14:00:39 -0500 Message-Id: <1232046039.5966.54.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 (2.22.3.1-1.fc9) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2462 Lines: 52 On Thu, 2009-01-15 at 10:55 -0800, Grant Grundler wrote: > On Thu, Jan 15, 2009 at 8:06 AM, James Bottomley > wrote: > ... > > Right, this is the flash cache idea that's been floating around for a > > while. It's even been suggested as a way of avoiding the IDE barrier > > flush penalties. I think Seagate went as far as making hybrid drives > > that were a large flash cache backed by rotational storage. > > "inline" RAM caches were implemented 10+ years ago for SCSI devices > to avoid seek *and* rotational delay penalties. These were transperent > SCSI devices that would cache and prefetch content from disks. > For the given dataset size, the seek cost was effectively zero. This is > mostly true today for high-end disk arrays which have large RAM > front-end's (TB) and very smart data placement strategies (reduced seek). RAM caches are different from flash caches: they're volatile. Essentially they're the cause of our barrier flush issues. The point about flash caches is they're non volatile. You can pull power from the disk as soon as the data is in flash cache; the disc can commit it again as soon as it powers up. > Back to the bikeshed painting: I prefer two flags: "AVGREADCOST" and > "AVGWRITECOST as the flag. This isn't just about seek. Rotational delay > @7200 RPM is 8.3ms. Making both non-zero implies rotational media. > Different devices have different read and write characteristics. > Flash typically has a much higher write cost than read cost. > Disks (because of WCE) can be the opposite. > > Code can test for zero/nonzero or (preferably) more fine grained. > e.g. "avgreadcost > 1ms" or "avgwritecost". I'm hoping this test > can be abstracted into a macro. Um these really have to be things we can get out of the device at boot time without effort (as in part of the data the device can give in a single command). I'll be shot for increasing boot time so we can work out these parameters ... > I'm hoping longterm, the values could be "self tuning" but don't know > how that might work - e.g. 1 minute avg? 10 minute avg? Cost > of collecting/maintaining the stats? Feels like a CONFIG option. CONFIG_SLOW_YOUR_BOOT? James -- 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/