aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/md.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 50ab4a936e30..d11135604403 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -3200,6 +3200,7 @@ static int do_md_run(mddev_t * mddev)
3200 3200
3201 mddev->changed = 1; 3201 mddev->changed = 1;
3202 md_new_event(mddev); 3202 md_new_event(mddev);
3203 kobject_uevent(&mddev->gendisk->kobj, KOBJ_ONLINE);
3203 return 0; 3204 return 0;
3204} 3205}
3205 3206
@@ -3313,6 +3314,7 @@ static int do_md_stop(mddev_t * mddev, int mode)
3313 3314
3314 module_put(mddev->pers->owner); 3315 module_put(mddev->pers->owner);
3315 mddev->pers = NULL; 3316 mddev->pers = NULL;
3317 kobject_uevent(&mddev->gendisk->kobj, KOBJ_OFFLINE);
3316 if (mddev->ro) 3318 if (mddev->ro)
3317 mddev->ro = 0; 3319 mddev->ro = 0;
3318 } 3320 }