From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 0122700014.0.fullrate.dk ([95.166.99.235] helo=kernel.dk) by bombadil.infradead.org with esmtps (Exim 4.69 #1 (Red Hat Linux)) id 1O5FlR-0001kG-Oz for linux-mtd@lists.infradead.org; Fri, 23 Apr 2010 10:05:38 +0000 Date: Fri, 23 Apr 2010 12:05:32 +0200 From: Jens Axboe To: =?iso-8859-1?Q?J=F6rn?= Engel Subject: Re: [Patch] Catch filesystems lacking s_bdi Message-ID: <20100423100532.GN27497@kernel.dk> References: <20100417184016.GA17345@logfs.org> <20100419073843.GN27497@kernel.dk> <20100419101559.GA4145@logfs.org> <20100419102056.GS27497@kernel.dk> <20100422055448.GA27309@logfs.org> <20100422062631.GC27309@logfs.org> <20100422162709.GJ27497@kernel.dk> <20100422203358.GB30749@logfs.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20100422203358.GB30749@logfs.org> Cc: Christoph Hellwig , David Woodhouse , Linus Torvalds , linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Thu, Apr 22 2010, Jörn Engel wrote: > On Thu, 22 April 2010 18:27:10 +0200, Jens Axboe wrote: > > > > > Jens - please help fix this up. > > > > Of course, I already posted a series of patches to fix this up. I want > > to test them a bit, and I'll send them in tomorrow. > > How about something like this to catch future cases? It compiles and > survived a test boot, so it does seem to work for the common cases like > tmpfs, procfs, etc. > > Jens, you know the bdi code 10x better than me, would this work? Looks sane, it's a good start. I think we should augment that with a check to ensure that we don't ever add dirty inodes to this bdi, since it's not going to be flushed. Something like a: WARN_ON(bdi == &noop_backing_dev_info); to __mark_inode_dirty(). Looking at the code it should already trigger a warning, since it'll check for BDI_CAP_NO_WRITEBACK (which isn't set for noop_backing_dev_info) and the fact that noop-bdi isn't registered to begin with. So it's probably safe and good enough as-is, I'll add it. Thanks! -- Jens Axboe