On Mon, Sep 15, 2008 at 01:22:22PM +1000, Lachlan McIlroy wrote:
Dave Chinner wrote:
So we keep dirty pages around that we can't write back?
Yes.
If we are in a low memory situation and the block device
has gone bad, that will prevent memory reclaim from making
progress.
How do you differentiate "gone bad" from temporarily unavailable?
The only "temporary" error you can get in writeback is a path
failure. IIRC, XVM will give an ENODEV on a path failure, but
I don't think that dm-multipath does. Other than that, a write
failure is unrecoverable. Any other error is permanent....
i.e. if we have a bad disk, a user can now take down the system
by running it out of clean memory....
I'm sure there's many ways a malicious user could already do that.
That's no excuse for introducing a new way of taking down the
system when a disk fails. Error handling in linux is bad enough
without intentionally preventing the system from recovering from
I/O errors...
Would you rather have data corruption?
Data corruption as a result of an I/O error? What else can we
be expected to do? Log the error and continue onwards....
Face it - if the drive is dead then we can't write the data
anywhere, so keeping it around and potentially killing the system
completely makes even less sense. At some point we *have to give
up* on data we can't write back....
We've allowed the write() to succeed. We've accepted the data.
We have an obligation to write it do disk. Either we keep trying
in the face of errors or we take down the filesystem.
It's write-behind buffering. We give best effort, not guaranteed
writeback. If the system crashes, that data is lost. If we get an
I/O error, that data is lost. If the application cares, it uses
fsync and it gets the error and can handle it.
.....
The EAGAIN case can be exceptioned. The error we are getting here
is ENOSPC because xfs_trans_reserve() is failing.
<sigh>
Please - put that detail in the patch description. I'm getting a
little tired of having to draw out the reasons for your patches
one little bit at a time.