add header!

 brassow

This patch adds the ability detect read failures during
recovery and flag the device as failed.

We add a call to fail_mirror() when 'read_err' is set
upon recovery completion.  This sets the error_count
on the device.  It maintains backwards compatibility
(does nothing) if the DM_RAID1_HANDLE_ERRORS flag is
not set during mirror device creation.

Using the same code put in place to handle write failures,
it ensures that the region is marked as 'not-in-sync'
and that this is reflected in the log.

Signed-off-by: Jonathan Brassow <jbrassow@redhat.com>

---
 drivers/md/dm-raid1.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)

Index: linux-2.6.24-rc5/drivers/md/dm-raid1.c
===================================================================
--- linux-2.6.24-rc5.orig/drivers/md/dm-raid1.c	2007-12-12 15:44:02.000000000 +0000
+++ linux-2.6.24-rc5/drivers/md/dm-raid1.c	2007-12-12 15:44:03.000000000 +0000
@@ -732,8 +732,10 @@ static void recovery_complete(int read_e
 	unsigned m;
 	int bit = 0;
 
-	if (read_err)
+	if (read_err) {
 		DMERR_LIMIT("Unable to read primary mirror during recovery");
+		fail_mirror(get_default_mirror(ms));
+	}
 
 	if (!write_err)
 		goto out;