The patch titled dm: add uevent change event on resume has been added to the -mm tree. Its filename is dm-add-uevent-change-event-on-resume.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: dm: add uevent change event on resume From: Hannes Reinecke <hare@xxxxxxx> 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 <hare@xxxxxxx> Signed-off-by: Kay Sievers <kay.sievers@xxxxxxxx> Signed-off-by: Alasdair G Kergon <agk@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/dm.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN drivers/md/dm.c~dm-add-uevent-change-event-on-resume drivers/md/dm.c --- a/drivers/md/dm.c~dm-add-uevent-change-event-on-resume +++ a/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: _ Patches currently in -mm which might be from hare@xxxxxxx are git-libata-all.patch git-scsi-misc.patch drivers-scsi-aic7xxx-aic79xx_corec-make-ahd_match_scb-static.patch dm-add-uevent-change-event-on-resume.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html