[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100305120355.6b161572@lxorguk.ukuu.org.uk>
Date: Fri, 5 Mar 2010 12:03:55 +0000
From: Alan Cox <alan@...rguk.ukuu.org.uk>
To: s ponnusa <foosaa@...il.com>
Cc: Robert Hancock <hancockrwd@...il.com>,
Mark Lord <kernel@...savvy.com>,
Greg Freemyer <greg.freemyer@...il.com>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-kernel@...r.kernel.org, linux-ide@...r.kernel.org,
Jens Axboe <jens.axboe@...cle.com>, linux-mm@...ck.org
Subject: Re: Linux kernel - Libata bad block error handling to user mode
program
> cannot be read back by any other means. And the program which wrote
> the data is unaware of the error that has happened at the lower level.
> But the error log clearly has the issue caught but is trying to handle
> differently.
This is standard behaviour on pretty much every OS. If each write was
back verified by the OS you wouldn't get any work done due fact it took
so long to do any I/O and all I/O was synchronoous.
Where it matters you can mount some file systems synchronous, you can do
synchronous I/O (O_SYNC) or you can use and check fsync/fdatasync results
which should give you pretty good coverage providing barriers are enabled.
It still won't catch a lot of cases because you sometimes see
- sectors being corrupted/dying that were not written by near to it
- writes that the drive thinks were successful and reports that way but
turn out not to be readable
Alan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists