Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757120AbZCaRLv (ORCPT ); Tue, 31 Mar 2009 13:11:51 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756818AbZCaRLl (ORCPT ); Tue, 31 Mar 2009 13:11:41 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:57535 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756707AbZCaRLk (ORCPT ); Tue, 31 Mar 2009 13:11:40 -0400 Date: Tue, 31 Mar 2009 09:57:18 -0700 (PDT) From: Linus Torvalds X-X-Sender: torvalds@localhost.localdomain To: Jens Axboe cc: Ric Wheeler , =?ISO-8859-15?Q?Fernando_Luis_V=E1zquez_Cao?= , Jeff Garzik , Christoph Hellwig , Theodore Tso , Ingo Molnar , Alan Cox , Arjan van de Ven , Andrew Morton , Peter Zijlstra , Nick Piggin , David Rees , Jesper Krogh , Linux Kernel Mailing List , chris.mason@oracle.com, david@fromorbit.com, tj@kernel.org Subject: Re: [PATCH 1/7] block: Add block_flush_device() In-Reply-To: <20090331164312.GP5178@kernel.dk> Message-ID: References: <20090330185414.GZ5178@kernel.dk> <20090330201732.GB5178@kernel.dk> <49D17CA2.5060105@redhat.com> <49D1FB64.8000505@redhat.com> <49D239A0.5080405@redhat.com> <20090331164312.GP5178@kernel.dk> User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1617 Lines: 51 On Tue, 31 Mar 2009, Jens Axboe wrote: > > So here's a test patch that attempts to just ignore such a failure to > flush the caches. I suspect you should not do it like this. > diff --git a/fs/bio.c b/fs/bio.c > index a040cde..79e3cec 100644 > --- a/fs/bio.c > +++ b/fs/bio.c > @@ -1380,7 +1380,17 @@ void bio_check_pages_dirty(struct bio *bio) > **/ > void bio_endio(struct bio *bio, int error) > { > - if (error) > + /* > + * Special case here - hide the -EOPNOTSUPP from the driver or > + * block layer, dump a warning the first time this happens so that > + * the admin knows that we may not provide the ordering guarantees > + * that are needed. Don't clear the uptodate bit. > + */ > + if (error == -EOPNOTSUPP && bio_barrier(bio)) { > + set_bit(BIO_EOPNOTSUPP, &bio->bi_flags); > + blk_queue_set_noflush(bio->bi_bdev); > + error = 0; > + } else if (error) I suspect this part is just wrong. I could easily imagine a driver that returns EOPNOTSUPP only for a certain _kind_ of bio. For example, if the drive doesn't support FUA, then you cannot do a serialized IO operation, but you can still mostly do a serialized op without any IO attached to it. IOW, the "empty flush" really _is_ special. An this check should not be in the generic "bio_endio()" case, it should only be in the special blkdev_issue_flush() case. I think. No? Linus -- 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/