Re: Device loses barrier support (was: Fixed patch for simplebarriers.)

From: Mikulas Patocka
Date: Thu Dec 04 2008 - 18:08:49 EST


On Thu, 4 Dec 2008, Andi Kleen wrote:

> > If you are pushing what you are pushing --- barriers allowing to return
> > EOPNOTSUPP anytime --- then asynchronous barrier submits can no longer be
> > used, because by the time EOPNOTSUPP is detected, the filesystem is
> > already corrupted.
>
> Chris Mason pointed out that this can actually already happen. From
> a quick review this can happen in MD raid1 at least (their barriers_work
> flag is pretty similar to the DM implementation I did). So everyone
> has to handle this already anyways.

So: remove barriers completely and use only blkdev_issue_flush to flush
disk cache. Because none of the major filesystems learned to use
barrier-optimized commits and this
"barriers-randomly-fail-with-EOPNOTSUPP" fact makes it impossible to use
them in an optimized way anyway.

There is another point:
"what is the main performance advantage of barriers?" - "that the user can
turn on hardware write cache with hdparm -W 1 command".

And if barriers fail at random points, the user can't turn on disk cache
anyway (he would get data corruption if barrier write failed and hardware
write cache was enabled). So barriers make no sense here.

> > I'm wondering, where in fsync() does Linux wait for hardware disk cache to
> > be flushed? Isn't there a bug that fsync() will return before the cache is
> > flushed? I couldn't really find it. The last thing do_fsync calls is
> > filemap_fdatawait and it doesn't do cache flush (blkdev_issue_flush).
>
> At least in fsync() on journaling fs the metadata update should push it.
>
> -Andi

And what about fdatasync()?

Mikulas
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/