forked from pool/mdadm
35f025d42c
Multiple bugfixes and various enhancements including IMSM support for bad blocks and 4K block devices. (FATE#321941) - 0001-Generic-support-for-consistency-policy-and-PPL.patch - 0002-Detail-show-consistency-policy.patch - 0003-imsm-PPL-support.patch - 0004-super1-PPL-support.patch - 0005-Add-ppl-and-no-ppl-options-for-update.patch - 0006-Grow-support-consistency-policy-change.patch Add support for Partial Parity Logs (FATE#321941) - 0007-udev-md-raid-assembly.rules-Skip-non-ready-devices.patch (bsc#956236) - 0008-Retry-HOT_REMOVE_DISK-a-few-times.patch (bsc#808647) - 0009-Introduce-sys_hot_remove_disk.patch (bsc#974154) - 0010-Add-force-flag-to-hot_remove_disk.patch (bsc#808647) - 0011-Detail-handle-non-existent-arrays-better.patch (bsc#966773) OBS-URL: https://build.opensuse.org/package/show/Base:System/mdadm?expand=0&rev=147
65 lines
1.9 KiB
Diff
65 lines
1.9 KiB
Diff
From 201c9389dd0560544a46d21d1300f174d94a7e60 Mon Sep 17 00:00:00 2001
|
|
From: NeilBrown <neilb@suse.com>
|
|
Date: Mon, 27 Mar 2017 13:59:41 +1100
|
|
Subject: [PATCH] Introduce sys_hot_remove_disk()
|
|
|
|
The new hot_remove_disk() will retry HOT_REMOVE_DISK
|
|
several times in the face of EBUSY.
|
|
However we sometimes remove a device by writing "remove" to the
|
|
"state" attributed. This should be retried as well.
|
|
So introduce sys_hot_remove_disk() to repeat this action a few times.
|
|
|
|
Signed-off-by: NeilBrown <neilb@suse.com>
|
|
---
|
|
Manage.c | 6 +-----
|
|
mdadm.h | 1 +
|
|
util.c | 12 ++++++++++++
|
|
3 files changed, 14 insertions(+), 5 deletions(-)
|
|
|
|
--- a/Manage.c
|
|
+++ b/Manage.c
|
|
@@ -1177,11 +1177,7 @@ int Manage_remove(struct supertype *tst,
|
|
/* device has been removed and we don't know
|
|
* the major:minor number
|
|
*/
|
|
- int n = write(sysfd, "remove", 6);
|
|
- if (n != 6)
|
|
- err = -1;
|
|
- else
|
|
- err = 0;
|
|
+ err = sys_hot_remove_disk(sysfd);
|
|
} else {
|
|
err = hot_remove_disk(fd, rdev);
|
|
if (err && errno == ENODEV) {
|
|
--- a/mdadm.h
|
|
+++ b/mdadm.h
|
|
@@ -1501,6 +1501,7 @@ extern int add_disk(int mdfd, struct sup
|
|
extern int remove_disk(int mdfd, struct supertype *st,
|
|
struct mdinfo *sra, struct mdinfo *info);
|
|
extern int hot_remove_disk(int mdfd, unsigned long dev);
|
|
+extern int sys_hot_remove_disk(int statefd);
|
|
extern int set_array_info(int mdfd, struct supertype *st, struct mdinfo *info);
|
|
unsigned long long min_recovery_start(struct mdinfo *array);
|
|
|
|
--- a/util.c
|
|
+++ b/util.c
|
|
@@ -1813,6 +1813,18 @@ int hot_remove_disk(int mdfd, unsigned l
|
|
return ret;
|
|
}
|
|
|
|
+int sys_hot_remove_disk(int statefd)
|
|
+{
|
|
+ int cnt = 5;
|
|
+ int ret;
|
|
+
|
|
+ while ((ret = write(statefd, "remove", 6)) == -1 &&
|
|
+ errno == EBUSY &&
|
|
+ cnt-- > 0)
|
|
+ usleep(10000);
|
|
+ return ret == 6 ? 0 : -1;
|
|
+}
|
|
+
|
|
int set_array_info(int mdfd, struct supertype *st, struct mdinfo *info)
|
|
{
|
|
/* Initialise kernel's knowledge of array.
|