From 8560ed6fa8d43537af558514fa48f670b3349f08 Mon Sep 17 00:00:00 2001 From: Hannes Reinecke Date: Tue, 3 Oct 2006 01:15:35 -0700 Subject: [PATCH] dm: add uevent change event on resume Device-mapper devices are not accessible until a 'resume' ioctl has been issued. For userspace to find out when this happens we need to generate an uevent for udev to take appropriate action. As discussed at OLS we should send 'change' events for 'resume'. We can think of no useful purpose served by also having 'suspend' events. Signed-off-by: Hannes Reinecke Signed-off-by: Kay Sievers Signed-off-by: Alasdair G Kergon Signed-off-by: Greg Kroah-Hartman Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- drivers/md/dm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 81717e27332739..883860c3565bb4 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c @@ -1378,6 +1378,8 @@ int dm_resume(struct mapped_device *md) dm_table_unplug_all(map); + kobject_uevent(&md->disk->kobj, KOBJ_CHANGE); + r = 0; out: -- cgit 1.2.3-korg