The patch titled dm: add uevent change event on resume has been removed from the -mm tree. Its filename is dm-add-uevent-change-event-on-resume.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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: Greg Kroah-Hartman <gregkh@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/dm.c | 2 ++ 1 file 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 origin.patch drivers-scsi-aic7xxx-aic79xx_corec-make-ahd_match_scb-static.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