[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH 7/8] raid1 barriers
- From: Mikulas Patocka <mpatocka redhat com>
- To: dm-devel redhat com
- Cc: Heinz Mauelshagen <heinzm redhat com>, Alasdair G Kergon <agk redhat com>
- Subject: [dm-devel] [PATCH 7/8] raid1 barriers
- Date: Mon, 27 Apr 2009 07:51:23 -0400 (EDT)
Call the flush callback from the log.
If flush failed, we need to mark the whole log as dirty. Also, set variable
flush_failed, which prevents any bits ever being marked as free.
Signed-off-by: Mikulas Patocka <mpatocka redhat com>
---
drivers/md/dm-log.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
Index: linux-2.6.30-rc2-devel/drivers/md/dm-log.c
===================================================================
--- linux-2.6.30-rc2-devel.orig/drivers/md/dm-log.c 2009-04-27 12:48:34.000000000 +0200
+++ linux-2.6.30-rc2-devel/drivers/md/dm-log.c 2009-04-27 12:49:00.000000000 +0200
@@ -679,6 +679,20 @@ static int disk_flush(struct dm_dirty_lo
if (!lc->touched_cleaned && !lc->touched_dirtied)
return 0;
+ if (lc->touched_cleaned && flush) {
+ if (flush(cookie)) {
+ /*
+ * At this point it is impossible to determine which
+ * regions are clean and which are dirty. So mark all
+ * of them dirty.
+ */
+ int i;
+ lc->flush_failed = 1;
+ for (i = 0; i < lc->region_count; i++)
+ log_clear_bit(lc, lc->clean_bits, i);
+ }
+ }
+
r = rw_header(lc, WRITE);
if (r)
fail_log_device(lc);
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]