* [PATCH] lvm2: sync error handling on secondary mirror in dmeventd
@ 2009-11-30 19:56 Takahiro Yasui
0 siblings, 0 replies; only message in thread
From: Takahiro Yasui @ 2009-11-30 19:56 UTC (permalink / raw)
To: lvm-devel
Set the ME_FAILURE flag if the error is related to sync on the secondary
mirror. A sync error on the secondary mirror occurs by a write I/O and
the error can be treated as the regular write error on mirror legs.
Signed-off-by: Takahiro Yasui <tyasui@redhat.com>
---
daemons/dmeventd/plugins/mirror/dmeventd_mirror.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
Index: LVM2.02.57-20091125/daemons/dmeventd/plugins/mirror/dmeventd_mirror.c
===================================================================
--- LVM2.02.57-20091125.orig/daemons/dmeventd/plugins/mirror/dmeventd_mirror.c
+++ LVM2.02.57-20091125/daemons/dmeventd/plugins/mirror/dmeventd_mirror.c
@@ -68,10 +68,12 @@ static int _process_status_code(const ch
syslog(LOG_ERR, "%s device %s flush failed.\n",
dev_type, dev_name);
r = ME_FAILURE;
- } else if (status_code == 'S')
+ } else if (status_code == 'S') {
syslog(LOG_ERR, "%s device %s sync failed.\n",
dev_type, dev_name);
- else if (status_code == 'R')
+ if (!strcmp(dev_type, "Secondary mirror"))
+ r = ME_FAILURE;
+ } else if (status_code == 'R')
syslog(LOG_ERR, "%s device %s read failed.\n",
dev_type, dev_name);
else if (status_code != 'A') {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-30 19:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-30 19:56 [PATCH] lvm2: sync error handling on secondary mirror in dmeventd Takahiro Yasui
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.